aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2013-06-20 22:30:35 -0700
committerPiotr Sarnacki <drogus@gmail.com>2013-06-20 22:30:35 -0700
commit3c0ef057f1af4d39379ba572139aa104c3673779 (patch)
tree7684d512ceef40146cdde0ec6b95adf924aff828 /activesupport/CHANGELOG.md
parenta29f746398e7b0647885343e7f26d977dd251999 (diff)
parenta3678e45ecf8e17527722889d5347325083ad560 (diff)
downloadrails-3c0ef057f1af4d39379ba572139aa104c3673779.tar.gz
rails-3c0ef057f1af4d39379ba572139aa104c3673779.tar.bz2
rails-3c0ef057f1af4d39379ba572139aa104c3673779.zip
Merge pull request #11030 from mjtko/fix/backtrace-silencer-noise-with-multiple-silencers
Fix BacktraceSilencer#noise when multiple silencers are configured
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index b69333851f..45f71daa08 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Fix return value from `BacktraceCleaner#noise` when the cleaner is configured
+ with multiple silencers.
+
+ Fixes #11030
+
+ *Mark J. Titorenko*
+
* `HashWithIndifferentAccess#select` now returns a `HashWithIndifferentAccess`
instance instead of a `Hash` instance.