aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-01-31 11:54:00 +0100
committerYves Senn <yves.senn@gmail.com>2015-01-31 11:54:00 +0100
commitafe402dac7da9e2e9d0f3e29582a502d8596d0e0 (patch)
treeec800db9350b3d8ac75d1e15178691e15cc17e01 /actionpack
parent33030ea7cbfa026b0f9f95a2c5d2dd363a7fe6aa (diff)
downloadrails-afe402dac7da9e2e9d0f3e29582a502d8596d0e0.tar.gz
rails-afe402dac7da9e2e9d0f3e29582a502d8596d0e0.tar.bz2
rails-afe402dac7da9e2e9d0f3e29582a502d8596d0e0.zip
unify CHANGELOG format. [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index aeb961decc..5e0c64900f 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,7 +1,7 @@
* Migrating to keyword arguments syntax in `ActionController::TestCase` and
- `ActionDispatch::Integration` HTTP request methods
+ `ActionDispatch::Integration` HTTP request methods.
- New syntax example:
+ Example:
post :create, params: { y: x }, session: { a: 'b' }
get :view, params: { id: 1 }
@@ -9,7 +9,7 @@
*Kir Shatrov*
-* Preserve default url options when generating URLs
+* Preserve default url options when generating URLs.
Fixes an issue that would cause default_url_options to be lost when
generating URLs with fewer positional arguments than parameters in the
@@ -47,6 +47,7 @@
* Allow you to pass `prepend: false` to protect_from_forgery to have the
verification callback appended instead of prepended to the chain.
This allows you to let the verification step depend on prior callbacks.
+
Example:
class ApplicationController < ActionController::Base
@@ -143,7 +144,7 @@
*Travis Grathwell*
-* Stop converting empty arrays in `params` to `nil`
+* Stop converting empty arrays in `params` to `nil`.
This behaviour was introduced in response to CVE-2012-2660, CVE-2012-2694
and CVE-2013-0155