diff options
author | Xavier Noria <fxn@hashref.com> | 2012-02-22 21:09:35 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-02-22 21:09:57 +0100 |
commit | 5497432d71b88ae4b99c6c59199eba95d81f28f6 (patch) | |
tree | 3a486e17876ac27d3e22e1163ea7041e370bf189 /actionpack | |
parent | a328f2ffd2d7764c92c87505d0b43f9e3a8c8f28 (diff) | |
download | rails-5497432d71b88ae4b99c6c59199eba95d81f28f6.tar.gz rails-5497432d71b88ae4b99c6c59199eba95d81f28f6.tar.bz2 rails-5497432d71b88ae4b99c6c59199eba95d81f28f6.zip |
updates CHANGELOGs to register changes in 002713c
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index cf662500a4..afd47c858c 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,5 +1,16 @@ ## Rails 4.0.0 (unreleased) ## +* Adds support for the PATCH verb: + * Request objects respond to `patch?`. + * Routes have a new `patch` method, and understand `:patch` in the + existing places where a verb is configured, like `:via`. + * New method `patch` available in functional tests. + * If `:patch` is the default verb for updates, edits are + tunneled as PATCH rather than as PUT, and routing acts accordingly. + * New method `patch_via_redirect` available in integration tests. + + *dlee* + * Integration tests support the `OPTIONS` method. *Jeremy Kemper* * `expires_in` accepts a `must_revalidate` flag. If true, "must-revalidate" |