aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-05-05 02:53:32 +0900
committerGitHub <noreply@github.com>2018-05-05 02:53:32 +0900
commit5eaec23b89a83763b59bd017d872d35feea70af1 (patch)
treed65c119951299ccb02902a7b813402c88c307a52 /activerecord/CHANGELOG.md
parent99e4bb735d955318a7503c404d83c3314350ba20 (diff)
parenta779b1a08bb73be2b50d42ae69b3946de98e5af4 (diff)
downloadrails-5eaec23b89a83763b59bd017d872d35feea70af1.tar.gz
rails-5eaec23b89a83763b59bd017d872d35feea70af1.tar.bz2
rails-5eaec23b89a83763b59bd017d872d35feea70af1.zip
Merge pull request #32807 from bdurand/fix_committed_disable_callbacks
Fix logic on disabling afer_commit callbacks
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 36a3d59784..dda7d19915 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Fix logic on disabling commit callbacks so they are not called unexpectedly when errors occur.
+
+ *Brian Durand*
+
* Ensure `Associations::CollectionAssociation#size` and `Associations::CollectionAssociation#empty?`
use loaded association ids if present.