aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-01-14 09:19:37 +0100
committerYves Senn <yves.senn@gmail.com>2014-01-14 09:19:37 +0100
commit66f3d5bd5a0b6cda11a8fe8aa2ebcfc25cb8f53d (patch)
treee1851cd2529ff6cb5bb9e403af09fce53e7895e9 /activerecord/CHANGELOG.md
parentf6ca00bd43a497ef46aa630469e95eda4e43f018 (diff)
downloadrails-66f3d5bd5a0b6cda11a8fe8aa2ebcfc25cb8f53d.tar.gz
rails-66f3d5bd5a0b6cda11a8fe8aa2ebcfc25cb8f53d.tar.bz2
rails-66f3d5bd5a0b6cda11a8fe8aa2ebcfc25cb8f53d.zip
quick pass through Active Record CHANGELOG. [ci skip]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md16
1 files changed, 9 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 7db700a27a..ada5a57f3b 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,4 +1,4 @@
-* Set NameError#name with class name when failed to load the class for association.
+* Set `NameError#name` when STI-class-lookup fails.
*Chulki Lee*
@@ -65,7 +65,7 @@
class: `ActiveRecord::ConnectionHandling::MergeAndResolveDefaultUrlConfig`.
To understand the exact behavior of this class, it is best to review the
- behavior in `activerecord/test/cases/connection_adapters/connection_handler_test.rb`
+ behavior in `activerecord/test/cases/connection_adapters/connection_handler_test.rb`.
*Richard Schneeman*
@@ -411,7 +411,7 @@
*kostya*, *Lauro Caetano*
* `type_to_sql` returns a `String` for unmapped columns. This fixes an error
- when using unmapped array types in PG
+ when using unmapped PostgreSQL array types.
Example:
@@ -450,7 +450,7 @@
* Update counter cache on a `has_many` relationship regardless of default scope.
- Fix #12952.
+ Fixes #12952.
*Uku Taht*
@@ -461,9 +461,10 @@
*Cody Cutrer*, *Yves Senn*
-* Raise `ActiveRecord::RecordNotDestroyed` when a replaced child marked with `dependent: destroy` fails to be destroyed.
+* Raise `ActiveRecord::RecordNotDestroyed` when a replaced child
+ marked with `dependent: destroy` fails to be destroyed.
- Fix #12812
+ Fixex #12812.
*Brian Thomas Storti*
@@ -1369,6 +1370,7 @@
*Yves Senn*
* Fix the `:primary_key` option for `has_many` associations.
+
Fixes #10693.
*Yves Senn*
@@ -1493,7 +1495,7 @@
* Trigger a save on `has_one association=(associate)` when the associate contents have changed.
- Fix #8856.
+ Fixes #8856.
*Chris Thompson*