aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-02-22 21:09:35 +0100
committerXavier Noria <fxn@hashref.com>2012-02-22 21:09:57 +0100
commit5497432d71b88ae4b99c6c59199eba95d81f28f6 (patch)
tree3a486e17876ac27d3e22e1163ea7041e370bf189 /railties/CHANGELOG.md
parenta328f2ffd2d7764c92c87505d0b43f9e3a8c8f28 (diff)
downloadrails-5497432d71b88ae4b99c6c59199eba95d81f28f6.tar.gz
rails-5497432d71b88ae4b99c6c59199eba95d81f28f6.tar.bz2
rails-5497432d71b88ae4b99c6c59199eba95d81f28f6.zip
updates CHANGELOGs to register changes in 002713c
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index a5f32d1a2c..e7978dc1bd 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* New configuration option `config.default_method_for_update` tells Rails which
+ HTTP verb to use for update actions. Values can be `:patch` and `:put`.
+ Default is `:put` for backwards compatibility, but you are encouraged to
+ use `:patch` for proper HTTP semantics with partial updates.
+
* Allow to set class that will be used to run as a console, other than IRB, with `Rails.application.config.console=`. It's best to add it to `console` block. *Piotr Sarnacki*
Example: