aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-01-05 10:08:06 +0100
committerYves Senn <yves.senn@gmail.com>2015-01-05 10:08:56 +0100
commit3ae98181433dda1b5e19910e107494762512a86c (patch)
tree6c23a60344040edc6e55f02323dd3e7a33c4c44c /activerecord/CHANGELOG.md
parent65520c29f7e9fbd654446624a5c267bdc6285341 (diff)
downloadrails-3ae98181433dda1b5e19910e107494762512a86c.tar.gz
rails-3ae98181433dda1b5e19910e107494762512a86c.tar.bz2
rails-3ae98181433dda1b5e19910e107494762512a86c.zip
remove deprecation warning when modifying a Relation with cached arel.
This adresses https://github.com/rails/rails/commit/1b7aa62b184c4410c99208f71b59bbac5c5f03be#commitcomment-9147803
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3e9c8a4011..7cd991f26b 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Remove deprecation when modifying a relation with cached arel.
+ This raises an `ImmutableRelation` error instead.
+
+ *Yves Senn*
+
* Added `ActiveRecord::SecureToken` in order to encapsulate generation of
unique tokens for attributes in a model using `SecureRandom`.