aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index e2731d0ee5..050ec5e649 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,25 @@
+* Allow `config.action_dispatch.trusted_proxies` to accept an IPAddr object.
+
+ Example:
+ # config/environments/production.rb
+ config.action_dispatch.trusted_proxies = IPAddr.new('4.8.15.0/16')
+
+ *Sam Aarons*
+
+* Avoid duplicating routes for HEAD requests.
+
+ Instead of duplicating the routes, we will first match the HEAD request to
+ HEAD routes. If no match is found, we will then map the HEAD request to
+ GET routes.
+
+ *Guo Xiang Tan*, *Andrew White*
+
+* Requests that hit `ActionDispatch::Static` can now take advantage
+ of gzipped assets on disk. By default a gzip asset will be served if
+ the client supports gzip and a compressed file is on disk.
+
+ *Richard Schneeman*
+
* `ActionController::Parameters` will stop inheriting from `Hash` and
`HashWithIndifferentAccess` in the next major release. If you use any method
that is not available on `ActionController::Parameters` you should consider