aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md21
1 files changed, 14 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a85fa321cd..a8bed82e19 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,4 +1,11 @@
-* Add `stat` method to `ActiveRecord::ConnectionAdapters::ConnectionPool`
+* Allow `ActionController::Parameters`-like objects to be passed as
+ values for Postgres HStore columns.
+
+ Fixes #26904.
+
+ *Jon Moss*
+
+* Added `stat` method to `ActiveRecord::ConnectionAdapters::ConnectionPool`
Example:
@@ -11,18 +18,18 @@
and `exists?`.
If `limit_value` is presented, records fetching order is very important
- for performance. Should not unscope the order in the case.
+ for performance. We should not unscope the order in the case.
*Ryuta Kamizono*
-* Fix an Active Record DateTime field NoMethodError caused by incomplete
+* Fix an Active Record `DateTime` field `NoMethodError` caused by incomplete
datetime.
Fixes #24195.
*Sen Zhang*
-* Allow `slice` to take an array of methods (without need for splatting).
+* Allow `slice` to take an array of methods(without the need for splatting).
*Cohen Carlisle*
@@ -38,12 +45,12 @@
*Prathamesh Sonpatki*
-* Optimistic locking: Added ability update locking_column value.
- Ignore optimistic locking if update with new locking_column value.
+* Optimistic locking: Added ability to update `locking_column` value.
+ Ignore optimistic locking if trying to update with new `locking_column` value.
*bogdanvlviv*
-* Fixed: Optimistic locking does not work well with null in the database.
+* Fixed: Optimistic locking does not work well with `null` in the database.
Fixes #26024