diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-03-17 08:44:56 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-03-17 08:44:56 +0100 |
commit | a0c1c18e4d85e2d95241a1924683b396bd3ae4e5 (patch) | |
tree | 0d495bf8b925fab45c9859c13c69abc528307777 | |
parent | 1330274657dc59296c556e840a8870dd14bb84ae (diff) | |
download | rails-a0c1c18e4d85e2d95241a1924683b396bd3ae4e5.tar.gz rails-a0c1c18e4d85e2d95241a1924683b396bd3ae4e5.tar.bz2 rails-a0c1c18e4d85e2d95241a1924683b396bd3ae4e5.zip |
format ActiveRecord 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 98f883fdb8..4018b3fd84 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,4 +1,5 @@ -* Extend Fixture $LABEL replacement to allow string interpolation +* Extend fixture `$LABEL` replacement to allow string interpolation. + Example: martin: @@ -7,24 +8,24 @@ users(:martin).email # => martin@email.com *Eric Steele* - + * Add support for `Relation` be passed as parameter on `QueryCache#select_all`. Fixes #14361. *arthurnn* -* Passing an Active Record object to `find` is now deprecated. Call `.id` - on the object first. +* Passing an Active Record object to `find` is now deprecated. Call `.id` + on the object first. -* Passing an Active Record object to `exists?` is now deprecated. Call `.id` - on the object first. +* Passing an Active Record object to `find` or `exists?` is now deprecated. + Call `.id` on the object first. -* Only use BINARY for mysql case sensitive uniqueness check when column has a case insensitive collation. +* Only use BINARY for MySQL case sensitive uniqueness check when column has a case insensitive collation. *Ryuta Kamizono* -* Support for Mysql 5.6 Fractional Seconds. +* Support for MySQL 5.6 fractional seconds. *arthurnn*, *Tatsuhiko Miyagawa* |