aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-01-18 19:57:10 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2016-01-18 19:57:10 +0100
commit426b3127dd60e874a463ea022c85bc3eaf6ea4b3 (patch)
tree5b5c727cb31ca133b9b024c3646d943ff6fad5aa /activerecord/CHANGELOG.md
parentb505d45a5cd2343eb5b662cda5f48b4a63b397f1 (diff)
parentda26934313a31ae530b7537aba8a7662152f4dfe (diff)
downloadrails-426b3127dd60e874a463ea022c85bc3eaf6ea4b3.tar.gz
rails-426b3127dd60e874a463ea022c85bc3eaf6ea4b3.tar.bz2
rails-426b3127dd60e874a463ea022c85bc3eaf6ea4b3.zip
Merge pull request #23099 from vipulnsward/change_start_at_end_at
Changed options for find_each and variants to have options start/finish
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index e14a9a972c..3d251f95cc 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -634,7 +634,7 @@
* Add `ActiveRecord::Relation#in_batches` to work with records and relations
in batches.
- Available options are `of` (batch size), `load`, `begin_at`, and `end_at`.
+ Available options are `of` (batch size), `load`, `start`, and `finish`.
Examples:
@@ -1282,7 +1282,7 @@
*Yves Senn*
-* `find_in_batches` now accepts an `:end_at` parameter that complements the `:start`
+* `find_in_batches` now accepts an `:finish` parameter that complements the `:start`
parameter to specify where to stop batch processing.
*Vipul A M*