aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-07-20 17:59:27 +0100
committerJon Leighton <j@jonathanleighton.com>2012-08-01 19:46:31 +0100
commit4efebdedf8d8b8e2be711fafb560daddb15e48ad (patch)
tree0be236a7be4e0d1685be80641c9bd9e35d24aa35 /activerecord/CHANGELOG.md
parent7f3b475608d7c0b7faadd7c1430797e91b644a35 (diff)
downloadrails-4efebdedf8d8b8e2be711fafb560daddb15e48ad.tar.gz
rails-4efebdedf8d8b8e2be711fafb560daddb15e48ad.tar.bz2
rails-4efebdedf8d8b8e2be711fafb560daddb15e48ad.zip
Deprecate :finder_sql, :counter_sql, :insert_sql, :delete_sql.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 037131d610..a58e761bd4 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,16 @@
## Rails 4.0.0 (unreleased) ##
+* `:finder_sql` and `:counter_sql` options on collection associations
+ are deprecated. Please transition to using scopes.
+
+ *Jon Leighton*
+
+* `:insert_sql` and `:delete_sql` options on `has_and_belongs_to_many`
+ associations are deprecated. Please transition to using `has_many
+ :through`
+
+ *Jon Leighton*
+
* The migration generator now creates a join table with (commented) indexes every time
the migration name contains the word `join_table`: