aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorEdouard CHIN <edouard.chin@shopify.com>2018-10-01 18:00:18 -0400
committerEdouard CHIN <edouard.chin@shopify.com>2018-10-02 12:59:04 -0400
commit783f86822b49aa39d122f9c86939a17dac869cad (patch)
tree2278ea2002e443b53103a10c3baeea50eacab580 /activesupport/CHANGELOG.md
parentcf608ee34dd833b0357ef4eefa692db33242d2aa (diff)
downloadrails-783f86822b49aa39d122f9c86939a17dac869cad.tar.gz
rails-783f86822b49aa39d122f9c86939a17dac869cad.tar.bz2
rails-783f86822b49aa39d122f9c86939a17dac869cad.zip
Deprecate the `LoggerSilence` constant:
- I found this weird that the LoggerSilence wasn't using the `ActiveSupport` namespace (AFAIK all other classes have it). This PR deprecate the use of `LoggerSilence` for `ActiveSupport::LoggerSilence` instead.
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index fd96c46814..f36d740d81 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Deprecate the use of `LoggerSilence` in favor of `ActiveSupport::LoggerSilence`
+
+ *Edouard Chin*
+
* Deprecate using negative limits in `String#first` and `String#last`.
*Gannon McGibbon*, *Eric Turner*