aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
Commit message (Expand)AuthorAgeFilesLines
...
* | | Merge tag 'v6.0.0.beta3'eileencodes2019-03-131-0/+5
|\ \ \
| * | | Prep releaseeileencodes2019-03-111-0/+5
* | | | Merge pull request #35320 from kamille-gz/fix_query_method_when_given_Date_da...Ryuta Kamizono2019-03-111-0/+14
|\ \ \ \
| * | | | Fix query attribute method on user-defined attribute to be aware of typecaste...kamille-3212019-03-111-0/+14
|/ / / /
* | | | Quote empty ranges like other empty enumerablesPatrick Rebsch2019-03-071-0/+4
* | | | Add insert_all to ActiveRecord models (#35077)Bob Lail2019-03-051-0/+10
* | | | Allow `truncate` for SQLite3 adapter and add `rails db:seed:replant` (#34779)Bogdan2019-03-041-0/+9
* | | | Fix typo in CHANGELOG.md [ci skip]Sharang Dashputre2019-03-041-1/+1
* | | | Deprecate mismatched collation comparison for uniquness validatorRyuta Kamizono2019-03-041-0/+8
* | | | Move changelog entry about `reselect` method to the section of the next releasebogdanvlviv2019-03-041-9/+9
* | | | Merge pull request #33611 from willianveiga/feature/reselect-methodAndrew White2019-03-011-0/+6
|\ \ \ \
| * \ \ \ Merge branch 'master' into feature/reselect-methodWillian Gustavo Veiga2018-10-171-1/+9
| |\ \ \ \
| * \ \ \ \ Merge branch 'master' into feature/reselect-methodWillian Gustavo Veiga2018-10-111-0/+64
| |\ \ \ \ \
| * | | | | | Add changelog entryWillian Gustavo Veiga2018-10-021-0/+4
* | | | | | | Add negative scopes for all enum values (#35381)David Heinemeier Hansson2019-02-261-0/+14
* | | | | | | Merge pull request #35361 from jvillarejo/fix_wrong_size_query_with_distinct_...Ryuta Kamizono2019-02-271-0/+7
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | |
| * | | | | | fixes different `count` calculation when using `size` manual `select` with DI...jvillarejo2019-02-261-0/+6
|/ / / / / /
* | | | | | Preparing for 6.0.0.beta2 releaseRafael Mendonça França2019-02-251-0/+2
* | | | | | Fix prepared statements caching to be enabled even when query caching is enabledRyuta Kamizono2019-02-261-0/+4
* | | | | | Ensure `update_all` series cares about optimistic lockingRyuta Kamizono2019-02-251-0/+4
* | | | | | Don't allow `where` with non numeric string matches to 0 valuesRyuta Kamizono2019-02-201-0/+4
* | | | | | Merge pull request #35316 from abhaynikam/35304-add-delete_by_and_destroy_byRyuta Kamizono2019-02-191-0/+26
|\ \ \ \ \ \
| * | | | | | Introduce delete_by and destroy_by methods to ActiveRecord::RelationAbhay Nikam2019-02-191-0/+26
|/ / / / / /
* | | | | | Don't allow `where` with invalid value matches to nil valuesRyuta Kamizono2019-02-181-0/+6
* | | | | | Add changelog entry for #35212Ryuta Kamizono2019-02-161-0/+4
* | | | | | Deprecate using class level querying methods if the receiver scope regarded a...Ryuta Kamizono2019-02-151-0/+5
* | | | | | Revert "Merge pull request #35186 from kamipo/fix_leaking_scope_on_relation_c...Ryuta Kamizono2019-02-151-6/+0
* | | | | | Minor changes to deprecation warning message after 35242Abhay Nikam2019-02-151-2/+2
* | | | | | Revert "Chaining named scope is no longer leaking to class level querying met...Ryuta Kamizono2019-02-141-6/+0
| |_|_|_|/ |/| | | |
* | | | | Update CHANGELOG for database_resolver_contextJohn Hawthorn2019-02-071-2/+2
* | | | | Fix `relation.create` to avoid leaking scope to initialization block and call...Ryuta Kamizono2019-02-071-0/+6
* | | | | Chaining named scope is no longer leaking to class level querying methodsRyuta Kamizono2019-02-061-0/+6
* | | | | Adds basic automatic database switching to RailsEileen Uchitelle2019-01-301-0/+33
* | | | | Allow changing text and blob size without giving the `limit` optionRyuta Kamizono2019-01-291-0/+4
* | | | | Make `t.timestamps` with precision by defaultRyuta Kamizono2019-01-261-0/+5
* | | | | Preparing for 6.0.0.beta1 releaseRafael Mendonça França2019-01-181-0/+2
* | | | | Merge pull request #34966 from bogdanvlviv/ensure-ar-relation-exists-allows-p...Rafael Mendonça França2019-01-171-1/+1
|\ \ \ \ \
| * | | | | Ensure that AR::Relation#exists? allows only permitted paramsbogdanvlviv2019-01-171-4/+4
* | | | | | Remove deprecated `#set_state` from the transaction objectRafael Mendonça França2019-01-171-0/+4
* | | | | | Remove deprecated `#supports_statement_cache?` from the database adaptersRafael Mendonça França2019-01-171-0/+4
* | | | | | Remove deprecated `#insert_fixtures` from the database adaptersRafael Mendonça França2019-01-171-0/+4
* | | | | | Remove deprecated `ActiveRecord::ConnectionAdapters::SQLite3Adapter#valid_alt...Rafael Mendonça França2019-01-171-0/+4
* | | | | | Do not allow passing the column name to `sum` when a block is passedRafael Mendonça França2019-01-171-0/+4
* | | | | | Do not allow passing the column name to `count` when a block is passedRafael Mendonça França2019-01-171-0/+4
* | | | | | Remove delegation of missing methods in a relation to arelRafael Mendonça França2019-01-171-0/+4
* | | | | | Remove delegation of missing methods in a relation to private methods of the ...Rafael Mendonça França2019-01-171-0/+4
* | | | | | Change `SQLite3Adapter` to always represent boolean values as integersRafael Mendonça França2019-01-171-0/+8
* | | | | | Remove ability to specify a timestamp name for `#cache_key`Rafael Mendonça França2019-01-171-0/+4
* | | | | | Remove deprecated `ActiveRecord::Migrator.migrations_path=`Rafael Mendonça França2019-01-171-0/+4
* | | | | | Remove deprecated `expand_hash_conditions_for_aggregates`Rafael Mendonça França2019-01-171-3/+7
|/ / / / /