aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-02-25 21:31:03 +0100
committerXavier Noria <fxn@hashref.com>2013-02-25 21:31:03 +0100
commit3d303f5af8af66c58ca9d7aa5cc4e7ad143aacdd (patch)
treed03b77ae92e9ab0228b4e8dda813044372242b9f /activerecord/CHANGELOG.md
parente75ce25f3931360f3900a26938f0ad8996671f58 (diff)
downloadrails-3d303f5af8af66c58ca9d7aa5cc4e7ad143aacdd.tar.gz
rails-3d303f5af8af66c58ca9d7aa5cc4e7ad143aacdd.tar.bz2
rails-3d303f5af8af66c58ca9d7aa5cc4e7ad143aacdd.zip
AR loads activerecord-deprecated_finders, no need to add it to the Gemfile
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 195b427449..ee7805c4ba 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1256,12 +1256,11 @@
* `:conditions` becomes `:where`.
* `:include` becomes `:includes`.
- The code to implement the deprecated features has been moved out to
- the `activerecord-deprecated_finders` gem. This gem is a dependency
- of Active Record in Rails 4.0. It will no longer be a dependency
- from Rails 4.1, but if your app relies on the deprecated features
- then you can add it to your own Gemfile. It will be maintained by
- the Rails core team until Rails 5.0 is released.
+ The code to implement the deprecated features has been moved out to the
+ `activerecord-deprecated_finders` gem. This gem is a dependencyof Active
+ Record in Rails 4.0, so the interface works out of the box. It will no
+ longer be a dependency from Rails 4.1 (you'll need to add it to the
+ `Gemfile` in 4.1), and will be maintained until Rails 5.0.
*Jon Leighton*