From c1beeb406816736aa76036bb26ad895322876a90 Mon Sep 17 00:00:00 2001 From: wycats Date: Tue, 29 Jun 2010 12:25:13 -0700 Subject: [PATCH] Add CHANGELOG for new deprecation style --- activesupport/CHANGELOG | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 59ad57ede8b..60586cf99a0 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,5 +1,11 @@ *Rails 3.0.0 [Release Candidate] (unreleased)* +* Deprecation behavior is no longer hardcoded to the name of the environment. + Instead, it is set via config.active_support.deprecation and can be one + of :log, :stderr or :notify. :notify is a new style that sends the warning + via ActiveSupport::Notifications, and is the new default for production + [Yehuda Katz] + * Renamed ActiveSupport::Dependecies.load_(once_)paths to autoload_(once_)paths. [fxn] * Added ActiveSupport::FileUpdateChecker to execute a block only if a set of files changed, used by Router and I18n locale files. [José Valim]