aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-30 12:52:49 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-30 12:52:49 -0300
commit0b0b76f34bcfdeea9ea767544cf2756e266873dd (patch)
tree9c31885050a6f686be8aa05fb5ae84db65f100d5 /actionpack/CHANGELOG.md
parent0c070ae568767a2c8e9bdec49ab3a1a24f113382 (diff)
parent75757c5c3bb7f743eab11ee1ed5ca457810e0391 (diff)
downloadrails-0b0b76f34bcfdeea9ea767544cf2756e266873dd.tar.gz
rails-0b0b76f34bcfdeea9ea767544cf2756e266873dd.tar.bz2
rails-0b0b76f34bcfdeea9ea767544cf2756e266873dd.zip
Merge pull request #18255 from prathamesh-sonpatki/fix-single-space-for-head
Remove single space response body for head request
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 839cbc76e7..b5380a46e8 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,15 @@
+* Using `head` method returns empty response_body instead
+ of returning a single space " ".
+
+ The old behavior was added as a workaround for a bug in an early
+ version of Safari, where the HTTP headers are not returned correctly
+ if the response body has a 0-length. This is been fixed since and
+ the workaround is no longer necessary.
+
+ Fixes #18253.
+
+ *Prathamesh Sonpatki*
+
* Fix how polymorphic routes works with objects that implement `to_model`.
*Travis Grathwell*