From 74119703989b74d5c84da0dc3ef443649734428b Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Fri, 16 Nov 2012 21:37:02 -0200 Subject: [PATCH] Fix some AR changelog entries [ci skip] --- activerecord/CHANGELOG.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 580a580ba5..4fa2dcb847 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,13 +1,12 @@ ## Rails 4.0.0 (unreleased) ## -* `#pluck` can be used on a relation with `select` clause - Fix #7551 +* `#pluck` can be used on a relation with `select` clause. Fix #7551 - Example: + Example: Topic.select([:approved, :id]).order(:id).pluck(:id) - *Yves Senn* + *Yves Senn* * Do not create useless database transaction when building `has_one` association. @@ -18,7 +17,7 @@ *Bogdan Gusiev* -* :counter_cache option for `has_many` associations to support custom named counter caches. +* `:counter_cache` option for `has_many` associations to support custom named counter caches. Fix #7993 *Yves Senn* @@ -42,7 +41,7 @@ *Nikita Afanasenko* -* Use query cache/uncache when using DATABASE_URL. +* Use query cache/uncache when using `DATABASE_URL`. Fix #6951. *kennyj*