diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-06-18 16:48:12 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-06-18 16:48:12 -0300 |
commit | 7fe0f27e2b97a2f175b31b97d14f92473688f66a (patch) | |
tree | 65e006a3b96c2dae1d5f4577b0a5d16d476eb877 /activerecord | |
parent | 051747449e7afc817c599e4135bc629d4de064eb (diff) | |
download | rails-7fe0f27e2b97a2f175b31b97d14f92473688f66a.tar.gz rails-7fe0f27e2b97a2f175b31b97d14f92473688f66a.tar.bz2 rails-7fe0f27e2b97a2f175b31b97d14f92473688f66a.zip |
Add CHANGELOG entry to composed_of removal
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 727dfbd30b..a617cef6a1 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,5 +1,11 @@ ## Rails 4.0.0 (unreleased) ## +* `composed_of` has removed. You'll have to write your own accessor + and mutator methods if you'd like to use value objects to represent some + portion of your models. + + *Steve Klabnik* + * PostgreSQL default log level is now 'warning', to bypass the noisy notice messages. You can change the log level using the `min_messages` option available in your config/database.yml. |