aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorrobertomiranda <rjmaltamar@gmail.com>2013-02-04 18:00:18 -0500
committerrobertomiranda <rjmaltamar@gmail.com>2013-02-04 18:02:52 -0500
commitebcb53c1cfaec15609c42c7bc41e72f8662f49ad (patch)
treea26f761554f01dc98aaf6337ad9b29499990e16c /guides
parentcb48bbeb005f3b8d68465604287e9df2f4572f89 (diff)
downloadrails-ebcb53c1cfaec15609c42c7bc41e72f8662f49ad.tar.gz
rails-ebcb53c1cfaec15609c42c7bc41e72f8662f49ad.tar.bz2
rails-ebcb53c1cfaec15609c42c7bc41e72f8662f49ad.zip
Update upgrading guide with ActionDispatch::BestStandardsSupport removal
Diffstat (limited to 'guides')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index b4a59fe3da..59e21e9be2 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -82,6 +82,8 @@ becomes
get 'こんにちは', controller: 'welcome', action: 'index'
```
+* Rails 4.0 has removed ActionDispatch::BestStandardsSupport middleware, !DOCTYPE html already triggers standards mode per http://msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx and ChromeFrame header has been moved to `config.action_dispatch.default_headers`
+
### Active Support
Rails 4.0 removes the `j` alias for `ERB::Util#json_escape` since `j` is already used for `ActionView::Helpers::JavaScriptHelper#escape_javascript`.