aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2012-08-25 13:50:45 +0200
committerPiotr Sarnacki <drogus@gmail.com>2012-08-28 11:19:37 +0200
commitdaa0ed3af2e6443e26d658282b8ed654b5a32926 (patch)
treed8361811cbf1f5b3947c57cbe1be1016c2835b2d /actionpack
parente1ffd82e7658195543cff9cd99c4ee79827880b7 (diff)
downloadrails-daa0ed3af2e6443e26d658282b8ed654b5a32926.tar.gz
rails-daa0ed3af2e6443e26d658282b8ed654b5a32926.tar.bz2
rails-daa0ed3af2e6443e26d658282b8ed654b5a32926.zip
Update AP's CHANGELOG with user facing changes
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 3c8a0f48ab..2752c95520 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,19 @@
## Rails 4.0.0 (unreleased) ##
+* Deprecate availbility of ActionView::RecordIdentifier in controllers by default.
+ It's view specific and can be easily included in controller manually if someone
+ really needs it. RecordIdentifier will be removed from ActionController::Base
+ in Rails 4.1 *Piotr Sarnacki*
+
+* Fix ActionView::RecordIdentifier to work as a singleton *Piotr Sarnacki*
+
+* Deprecate Template#mime_type, it will be removed in Rails 4.1 in favor of #type.
+ *Piotr Sarnacki*
+
+* Move vendored html-scanner from action_controller to action_view directory. If you
+ require it directly, please use 'action_view/vendor/html-scanner', reference to
+ 'action_controller/vendor/html-scanner' will be removed in Rails 4.1 *Piot Sarnacki*
+
* Fix handling of date selects when using both disabled and discard options.
Fixes #7431.