aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 11:23:57 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-04 11:58:44 -0300
commit07d3d402341e81ada0214f2cb2be1da69eadfe72 (patch)
tree8f75557a4144e685daa1befe8797511e2d80eb5d /activerecord/CHANGELOG.md
parent3a59dd212315ebb9bae8338b98af259ac00bbef3 (diff)
downloadrails-07d3d402341e81ada0214f2cb2be1da69eadfe72.tar.gz
rails-07d3d402341e81ada0214f2cb2be1da69eadfe72.tar.bz2
rails-07d3d402341e81ada0214f2cb2be1da69eadfe72.zip
Change transaction callbacks to not swallowing errors.
Before this change any error raised inside a transaction callback are rescued and printed in the logs. Now these errors are not rescue anymore and just bubble up, as the other callbacks.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 521d5fdb39..3a05a9b020 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,16 @@
+* Deprecate `ActiveRecord::Base.errors_in_transactional_callbacks=`.
+
+ *Rafael Mendonça França*
+
+* Change transaction callbacks to not swallowing errors.
+
+ Before this change any error raised inside a transaction callback are
+ rescued and printed in the logs.
+
+ Now these errors are not rescue anymore and just bubble up, as the other callbacks.
+
+ *Rafael Mendonça França*
+
* Remove deprecated `sanitize_sql_hash_for_conditions`.
*Rafael Mendonça França*