diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2012-09-10 12:03:32 -0700 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2012-09-10 12:03:32 -0700 |
commit | 416884c36d1eb2f0a607ba9a54dbe39773a92f6e (patch) | |
tree | 21c94781a91eaa1fa40bb37de94ee6852a0f74e5 /activesupport | |
parent | 43d312a725dc981700eb931b933fa49b4670a178 (diff) | |
parent | f11fc7308ac38c1a0d37a29c8a3f252f14b1d8b5 (diff) | |
download | rails-416884c36d1eb2f0a607ba9a54dbe39773a92f6e.tar.gz rails-416884c36d1eb2f0a607ba9a54dbe39773a92f6e.tar.bz2 rails-416884c36d1eb2f0a607ba9a54dbe39773a92f6e.zip |
Merge pull request #7592 from bogdan/callbacks-changelog
Revert "Changelog entry for PR #7560"
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 203fb1bd86..3914f4dc4c 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,24 +1,5 @@ ## Rails 4.0.0 (unreleased) ## -* Deprecate on the fly monkey patch of objects in AS::Callbacks. - This one is probably related to before_filters: - - before_filter MyFilter.new - - class MyFilter - def filter(controller) - end - end - - is now deprecated. Use: - - before_filter MyFilter.new - - class MyFilter - def before(controller) - end - end - * `ERB::Util.html_escape` encodes single quote as `#39`. Decimal form has better support in old browsers. *Kalys Osmonov* * `ActiveSupport::Callbacks`: deprecate monkey patch of object callbacks. |