diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-04-24 20:32:52 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-04-24 20:32:52 -0300 |
commit | e691272628ea1bc5b860fbfb5ffc76f1997a5364 (patch) | |
tree | a8a2fda79e1fa83bcf591929b5350241b3cd2ff7 /activerecord | |
parent | 6f405df2c0ba22b30b6d52028e467aa5bee59429 (diff) | |
download | rails-e691272628ea1bc5b860fbfb5ffc76f1997a5364.tar.gz rails-e691272628ea1bc5b860fbfb5ffc76f1997a5364.tar.bz2 rails-e691272628ea1bc5b860fbfb5ffc76f1997a5364.zip |
Minor AR changelog review [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index b9acf6847c..5ba7a6fa75 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,13 +1,15 @@ ## Rails 4.0.0 (unreleased) ## -* Fix a SystemStackError problem when using time zone aware or serialized attributes. - In current implementation, we re-use `column_types` argument when initiating an instance. - If an instance have serialized or timezone aware attributes, - column_types is wrapped multiple times in `decorate_columns` method. Thus the above error occurs. +* Allow to use databases.rake tasks without having `Rails.application`. - *Dan Erikson & kennyj* + *Piotr Sarnacki* + +* Fix a `SystemStackError` problem when using time zone aware or serialized attributes. + In current implementation, we reuse `column_types` argument when initiating an instance. + If an instance has serialized or time zone aware attributes, `column_types` is + wrapped multiple times in `decorate_columns` method. Thus the above error occurs. -* Allow to use databases.rake tasks without having Rails.application *Piotr Sarnacki* + *Dan Erikson & kennyj* * Fix for a regression bug in which counter cache columns were not being updated when record was pushed into a has_many association. For example: |