diff options
author | Andrew White <pixeltrix@users.noreply.github.com> | 2016-11-13 14:09:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-13 14:09:52 +0000 |
commit | df63abe6d31cdbe426ff6dda9bdd878acc602728 (patch) | |
tree | e9b1522cdee6f53699160689ec041aee35be027b /activerecord | |
parent | 0ef5b6c1630847c56a7a7ffe96045b72b23cd376 (diff) | |
parent | 7e7d6ccf344d3cb42b836e22e1381269f55b67d2 (diff) | |
download | rails-df63abe6d31cdbe426ff6dda9bdd878acc602728.tar.gz rails-df63abe6d31cdbe426ff6dda9bdd878acc602728.tar.bz2 rails-df63abe6d31cdbe426ff6dda9bdd878acc602728.zip |
Merge pull request #27024 from vipulnsward/changelog-edits
Changelog edits
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index dd2a1b4b19..8efefe9b2e 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,4 +1,4 @@ -* Add `stat` method to `ActiveRecord::ConnectionAdapters::ConnectionPool` +* Added `stat` method to `ActiveRecord::ConnectionAdapters::ConnectionPool` Example: @@ -10,18 +10,18 @@ * Avoid `unscope(:order)` when `limit_value` is presented for `count`. 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* @@ -37,12 +37,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 |