aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md31
1 files changed, 24 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 5588b24851..3c4f06ccf8 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,22 @@
-* Added ActiveRecord::SecureToken in order to encapsulate generation of
- unique tokens for attributes in a model using SecureRandom
+* Fix accessing of fixtures having non-string labels like Fixnum.
+
+ *Prathamesh Sonpatki*
+
+* Remove deprecated support to preload instance-dependent associations.
+
+ *Yves Senn*
+
+* Remove deprecated support for PostgreSQL ranges with exclusive lower bounds.
+
+ *Yves Senn*
+
+* Remove deprecation when modifying a relation with cached arel.
+ This raises an `ImmutableRelation` error instead.
+
+ *Yves Senn*
+
+* Added `ActiveRecord::SecureToken` in order to encapsulate generation of
+ unique tokens for attributes in a model using `SecureRandom`.
*Roberto Miranda*
@@ -16,12 +33,12 @@
*Rafael Mendonça França*
-* Change transaction callbacks to not swallowing errors.
+* Change transaction callbacks to not swallow errors.
- Before this change any error raised inside a transaction callback are
- rescued and printed in the logs.
+ Before this change any errors raised inside a transaction callback
+ were getting rescued and printed in the logs.
- Now these errors are not rescue anymore and just bubble up, as the other callbacks.
+ Now these errors are not rescued anymore and just bubble up, as the other callbacks.
*Rafael Mendonça França*
@@ -41,7 +58,7 @@
*Rafael Mendonça França*
-* Remove deprecated access to connection specification using a string acessor.
+* Remove deprecated access to connection specification using a string accessor.
Now all strings will be handled as a URL.