diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-04-16 12:15:17 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2019-04-16 12:16:07 +0900 |
commit | 20b94af9eb9305d19a343f72f0afb18eb49e2de7 (patch) | |
tree | 3ef5143f1f9459363066742371f2881a58db894d /activerecord | |
parent | 530294270227e4046033609dffd1df08e19ebb24 (diff) | |
download | rails-20b94af9eb9305d19a343f72f0afb18eb49e2de7.tar.gz rails-20b94af9eb9305d19a343f72f0afb18eb49e2de7.tar.bz2 rails-20b94af9eb9305d19a343f72f0afb18eb49e2de7.zip |
Add CHANGELOG entry for d1107f4d1e2573948d4941ac44511a0af6241f80
[ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 7ae6326fc3..8daa6c0ce5 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,9 +1,15 @@ +* Fix dirty tracking for `touch` to track saved changes. + + Fixes #33429. + + *Ryuta Kamzono* + * `change_column_comment` and `change_table_comment` are invertible only if `to` and `from` options are specified. *Yoshiyuki Kinjo* -* Don't call commit/rollback callbacks despite a record isn't saved. +* Don't call commit/rollback callbacks when a record isn't saved. Fixes #29747. |