aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-11-18 23:25:13 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-11-18 23:25:13 -0200
commit0cc9c1255d8bc5a2f7d4abb8553e9eefabf3deac (patch)
tree5283bc0dd4515dc35646ae691adf6c9733756b9a /activerecord/CHANGELOG.md
parentf460835dd5ebcede6f02e0459a7e6f8271b9047c (diff)
parent70fa756ddb83684a05c840ff16e6b57cff5c5048 (diff)
downloadrails-0cc9c1255d8bc5a2f7d4abb8553e9eefabf3deac.tar.gz
rails-0cc9c1255d8bc5a2f7d4abb8553e9eefabf3deac.tar.bz2
rails-0cc9c1255d8bc5a2f7d4abb8553e9eefabf3deac.zip
Merge pull request #3023 from Tho85/preserve_sti_type
AR::Base.becomes should not change the STI type Conflicts: activerecord/CHANGELOG.md
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 82e90e665b..082e3d1089 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,12 @@
## Rails 4.0.0 (unreleased) ##
+* Don't change STI type when calling `ActiveRecord::Base#becomes`.
+ Add `ActiveRecord::Base#becomes!` with the previous behavior.
+
+ See #3023 for more information.
+
+ *Thomas Hollstegge*
+
* `rename_index` can be used inside a `change_table` block.
change_table :accounts do |t|