aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-01-16 21:35:21 +0000
committerJon Leighton <j@jonathanleighton.com>2012-01-16 21:35:21 +0000
commit8c0c0838cf4675a13964fd944210d66e25014545 (patch)
treedb32619d49a8571a6ba398dca6d6aad69aa712cd /activerecord/CHANGELOG.md
parenta2dab46cae35a06fd5c5500037177492a047c252 (diff)
downloadrails-8c0c0838cf4675a13964fd944210d66e25014545.tar.gz
rails-8c0c0838cf4675a13964fd944210d66e25014545.tar.bz2
rails-8c0c0838cf4675a13964fd944210d66e25014545.zip
Make it more explicit that the feature is deprecated, not removed.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 7173f44df6..f7de341fbe 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -10,8 +10,10 @@
flawed idea unless we write an SQL parser, which we do not wish to
do.
- Therefore, you must explicitly state which tables you reference,
- when using SQL snippets:
+ Therefore, it is now deprecated.
+
+ To avoid deprecation warnings and for future compatibility, you must
+ explicitly state which tables you reference, when using SQL snippets:
Post.includes(:comments)
.where("comments.name = 'foo'")