aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorTobias Lütke <tobias.luetke@gmail.com>2006-11-24 16:35:00 +0000
committerTobias Lütke <tobias.luetke@gmail.com>2006-11-24 16:35:00 +0000
commitad62d461e835fefd4c251c402b4e815de03e229d (patch)
treefb40e27e98010279b6a8663d4838d39651ffbb97 /actionpack/CHANGELOG
parent7c7d58937b614350d2cd474c45ff188864f67505 (diff)
downloadrails-ad62d461e835fefd4c251c402b4e815de03e229d.tar.gz
rails-ad62d461e835fefd4c251c402b4e815de03e229d.tar.bz2
rails-ad62d461e835fefd4c251c402b4e815de03e229d.zip
Added CSV to Mime::SET so that respond_to csv will work
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5623 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 3025519ab2..d5e347ad6c 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added CSV to Mime::SET so that respond_to csv will work [Cody Fauser]
+
* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [DHH]
* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [DHH]