aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 12d9a15e63..fd9f2553ff 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,6 +1,4 @@
-* Fix not expanded problem when passing an Array object as argument to the where method using composed_of column.
-
- Fixes #31723
+* Fix not expanded problem when passing an Array object as argument to the where method using `composed_of` column.
```
david_balance = customers(:david).balance
@@ -9,7 +7,9 @@
# Before: WHERE `customers`.`balance` = NULL
# After : WHERE `customers`.`balance` = 50
```
-
+
+ Fixes #31723.
+
*Yutaro Kanagawa*
* Fix `count(:all)` with eager loading and having an order other than the driving table.