aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-10-24 23:48:39 -0700
committerYves Senn <yves.senn@gmail.com>2013-10-24 23:48:39 -0700
commitabeff5e64553ad5491a1663d124bfe9582a5f61e (patch)
tree06677dc32ad6034e837bf22f26a1ec1642290ca6 /activerecord/CHANGELOG.md
parent7160ffbe59ef99f01f530ad6e8377f8a91218396 (diff)
parent0492ea6d39e48c5bdb1d15eb4afdd54b00ece091 (diff)
downloadrails-abeff5e64553ad5491a1663d124bfe9582a5f61e.tar.gz
rails-abeff5e64553ad5491a1663d124bfe9582a5f61e.tar.bz2
rails-abeff5e64553ad5491a1663d124bfe9582a5f61e.zip
Merge pull request #12490 from senny/store_accessor_hstore_bug
ActiveRecord Store works with PG `hstore` columns
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 25b905891f..7062d59a3d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,14 @@
+* `ActiveRecord::Store` works together with PG `hstore` columns.
+ Fixes #12452.
+
+ *Yves Senn*
+
+* Fix bug where `ActiveRecord::Store` used a global `Hash` to keep track of
+ all registered `stored_attributes`. Now every subclass of
+ `ActiveRecord::Base` has it's own `Hash`.
+
+ *Yves Senn*
+
* Save `has_one` association when primary key is manually set.
Fixes #12302.