aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md60
1 files changed, 56 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index e987a0e279..b543a76639 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,10 +1,62 @@
-* Set polymorphic type column to NULL on `dependent: :nullify` strategy.
-
+* Remove deprecated `#set_state` from the transaction object.
+
+ *Rafael Mendonça França*
+
+* Remove deprecated `#supports_statement_cache?` from the database adapters.
+
+ *Rafael Mendonça França*
+
+* Remove deprecated `#insert_fixtures` from the database adapters.
+
+ *Rafael Mendonça França*
+
+* Remove deprecated `ActiveRecord::ConnectionAdapters::SQLite3Adapter#valid_alter_table_type?`.
+
+ *Rafael Mendonça França*
+
+* Do not allow passing the column name to `sum` when a block is passed.
+
+ *Rafael Mendonça França*
+
+* Do not allow passing the column name to `count` when a block is passed.
+
+ *Rafael Mendonça França*
+
+* Remove delegation of missing methods in a relation to arel.
+
+ *Rafael Mendonça França*
+
+* Remove delegation of missing methods in a relation to private methods of the class.
+
+ *Rafael Mendonça França*
+
+* Deprecate `config.activerecord.sqlite3.represent_boolean_as_integer`.
+
+ *Rafael Mendonça França*
+
+* Change `SQLite3Adapter` to always represent boolean values as integers.
+
+ *Rafael Mendonça França*
+
+* Remove ability to specify a timestamp name for `#cache_key`.
+
+ *Rafael Mendonça França*
+
+* Remove deprecated `ActiveRecord::Migrator.migrations_path=`.
+
+ *Rafael Mendonça França*
+
+* Remove deprecated `expand_hash_conditions_for_aggregates`.
+
+ *Rafael Mendonça França*
+
+* Set polymorphic type column to NULL on `dependent: :nullify` strategy.
+
On polymorphic associations both the foreign key and the foreign type columns will be set to NULL.
-
+
*Laerti Papa*
-* Allow `ActionController::Params` as argument of `ActiveRecord::Base#exists?`.
+* Allow permitted instance of `ActionController::Parameters` as argument of `ActiveRecord::Relation#exists?`.
*Gannon McGibbon*