diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-01-27 11:23:10 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-01-27 11:23:10 +0100 |
commit | abe648452f04be52ee3f95031f0ea01f98fdcf40 (patch) | |
tree | 4162d12f237b39eb82a5a7025a283c4ad2112f13 /guides/source | |
parent | 50d971710150533562240bef660f14237b70d939 (diff) | |
download | rails-abe648452f04be52ee3f95031f0ea01f98fdcf40.tar.gz rails-abe648452f04be52ee3f95031f0ea01f98fdcf40.tar.bz2 rails-abe648452f04be52ee3f95031f0ea01f98fdcf40.zip |
mention #13314 in 4.1 release notes. refs #12140. [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/4_1_release_notes.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guides/source/4_1_release_notes.md b/guides/source/4_1_release_notes.md index 8894011580..2426046335 100644 --- a/guides/source/4_1_release_notes.md +++ b/guides/source/4_1_release_notes.md @@ -502,6 +502,9 @@ for detailed changes. * Don't create or drop the test database if RAILS_ENV is specified explicitly. +* `Relation` no longer has mutator methods like `#map!` and `#delete_if`. Convert + to an `Array` by calling `#to_a` before using these methods. ([Pull Request](https://github.com/rails/rails/pull/13314)) + Active Model ------------ |