aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-02-17 13:42:42 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2014-02-17 13:42:42 -0800
commit23ce2f61b5a7699af8213bf1b5d581da194ab8f4 (patch)
treeb2adcb398f6b5171e15fd681fd23d5c94ca1cdcf /activerecord/CHANGELOG.md
parentfe42effb11a97cf19777d7b0dba7e1e2dfd3316c (diff)
parentc18e7ab44706735d9b1274760bdc62ad5bef7757 (diff)
downloadrails-23ce2f61b5a7699af8213bf1b5d581da194ab8f4.tar.gz
rails-23ce2f61b5a7699af8213bf1b5d581da194ab8f4.tar.bz2
rails-23ce2f61b5a7699af8213bf1b5d581da194ab8f4.zip
Merge branch 'master' into adequaterecord
* master: Revert "Merge pull request #13344 from ccutrer/fix-from-default-select" No need to use symbols Don't skip tests if they are not broken. Just don't define they Fix typo [ci skip] Resolve encoding issues with arrays of hstore (bug 11135). Fix coffeescript sample [ci skip]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md24
1 files changed, 7 insertions, 17 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index f1f9cf1ffd..458b9d77c2 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Perform necessary deeper encoding when hstore is inside an array.
+
+ Fixes #11135.
+
+ *Josh Goodall*, *Genadi Samokovarov*
+
* Properly detect if a connection is still active before using it
in multi-threaded environments.
@@ -527,22 +533,6 @@
*Damien Mathieu*
-* Improve the default select when `from` is used.
-
- Previously, if you did something like Topic.from(:temp_topics), it
- would generate SQL like:
-
- SELECT topics.* FROM temp_topics;
-
- Which is will cause an error since there's not a topics table to select
- from.
-
- Now the default if you use from is just `*`:
-
- SELECT * FROM temp_topics;
-
- *Cody Cutrer*
-
* Fix `PostgreSQL` insert to properly extract table name from multiline string SQL.
Previously, executing an insert SQL in `PostgreSQL` with a command like this:
@@ -757,7 +747,7 @@
* Raise `ActiveRecord::RecordNotDestroyed` when a replaced child
marked with `dependent: destroy` fails to be destroyed.
- Fixex #12812.
+ Fixes #12812.
*Brian Thomas Storti*