aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2015-10-06 11:30:02 -0700
committerJeremy Daer <jeremydaer@gmail.com>2015-10-06 11:30:02 -0700
commit71317e6406dba9a552760ec035b67b3c16162528 (patch)
tree78cc5fc25b114c26e14d855370e16139dbd4b679 /actionpack/CHANGELOG.md
parent5b69e30622de27e8010fd8cb32a97b5f0fe194e2 (diff)
parent565094a8b5cdfa158fef6ae75252fd98a4ba8fe4 (diff)
downloadrails-71317e6406dba9a552760ec035b67b3c16162528.tar.gz
rails-71317e6406dba9a552760ec035b67b3c16162528.tar.bz2
rails-71317e6406dba9a552760ec035b67b3c16162528.zip
Merge pull request #21869 from jeremy/mime-constant-deprecation
Use `Mime[:foo]` instead of `Mime::Type[:FOO]` for back compat
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index bb15edee63..a0a12f1b0e 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -10,12 +10,16 @@
To this:
- Mime::Type[:HTML]
+ Mime[:html]
This change is so that Rails will not manage a list of constants, and fixes
an issue where if a type isn't registered you could possibly get the wrong
object.
+ `Mime[:html]` is available in older versions of Rails, too, so you can
+ safely change libraries and plugins and maintain compatibility with
+ multiple versions of Rails.
+
* `url_for` does not modify its arguments when generating polymorphic URLs.
*Bernerd Schaefer*