diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-09-08 09:39:42 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-09-08 09:39:42 -0700 |
commit | c242f6bb3b3267ef9dc53ce8d6c886fa4fdd3468 (patch) | |
tree | ae769ce28ad95a241c65ba30145e2b9d59b929a3 | |
parent | 7b31a430858c40238dec0a7530937a4b7ee95c7b (diff) | |
parent | 65ce6fb0a75d830034969eaea325f6319ccaa5c1 (diff) | |
download | rails-c242f6bb3b3267ef9dc53ce8d6c886fa4fdd3468.tar.gz rails-c242f6bb3b3267ef9dc53ce8d6c886fa4fdd3468.tar.bz2 rails-c242f6bb3b3267ef9dc53ce8d6c886fa4fdd3468.zip |
Merge pull request #7574 from frodsan/chlog_ar
improve AR CHANGELOG [ci skip]
-rw-r--r-- | activerecord/CHANGELOG.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 4bcdf3a536..b4a04e32d7 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -29,7 +29,7 @@ *Ian Lesperance* -* Allow JSON columns to be created in PostgreSQL and properly encoded/decoded +* Allow JSON columns to be created in PostgreSQL and properly encoded/decoded. to/from database. *Dickson S. Guedes* @@ -38,7 +38,7 @@ *Adam Meehan* -* Allow to pass Symbol or Proc into :limit option of #accepts_nested_attributes_for +* Allow to pass Symbol or Proc into :limit option of #accepts_nested_attributes_for. *Mikhail Dieterle* @@ -79,10 +79,11 @@ *Dave Yeu* -* Fixed table name prefix that is generated in engines for namespaced models +* Fixed table name prefix that is generated in engines for namespaced models. + *Wojciech Wnętrzak* -* Make sure `:environment` task is executed before `db:schema:load` or `db:structure:load` +* Make sure `:environment` task is executed before `db:schema:load` or `db:structure:load`. Fixes #4772. *Seamus Abshere* @@ -107,7 +108,7 @@ *Jon Leighton* -* Add CollectionProxy#scope +* Add CollectionProxy#scope. This can be used to get a Relation from an association. @@ -125,7 +126,7 @@ *Jon Leighton* -* Add `Relation#load` +* Add `Relation#load`. This method explicitly loads the records and then returns `self`. @@ -141,7 +142,7 @@ *Jon Leighton* * `Model.all` now returns an `ActiveRecord::Relation`, rather than an - array of records. Use ``Relation#to_a` if you really want an array. + array of records. Use `Relation#to_a` if you really want an array. In some specific cases, this may cause breakage when upgrading. However in most cases the `ActiveRecord::Relation` will just act as a @@ -165,7 +166,7 @@ * `:insert_sql` and `:delete_sql` options on `has_and_belongs_to_many` associations are deprecated. Please transition to using `has_many - :through` + :through`. *Jon Leighton* |