aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-06-15 09:33:27 +0200
committerYves Senn <yves.senn@gmail.com>2015-06-15 09:33:27 +0200
commit863fcfa79ae625b891bbd4fbc86a7a1f9553dddd (patch)
treea5a7f35a6ed3bf3d5ac65c4729dea986fb4bb32c /actionpack/CHANGELOG.md
parentc199c6ca91480dc1a664b161204032538c05e1a0 (diff)
downloadrails-863fcfa79ae625b891bbd4fbc86a7a1f9553dddd.tar.gz
rails-863fcfa79ae625b891bbd4fbc86a7a1f9553dddd.tar.bz2
rails-863fcfa79ae625b891bbd4fbc86a7a1f9553dddd.zip
quick pass over changelogs. [ci skip]
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 78ae506389..05cbe472e0 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -218,13 +218,13 @@
* Preserve default url options when generating URLs.
- Fixes an issue that would cause default_url_options to be lost when
+ Fixes an issue that would cause `default_url_options` to be lost when
generating URLs with fewer positional arguments than parameters in the
route definition.
*Tekin Suleyman*
-* Deprecate *_via_redirect integration test methods.
+* Deprecate `*_via_redirect` integration test methods.
Use `follow_redirect!` manually after the request call for the same behavior.
@@ -247,11 +247,11 @@
*Jonas Baumann*
-* Deprecate all *_filter callbacks in favor of *_action callbacks.
+* Deprecate all `*_filter` callbacks in favor of `*_action` callbacks.
*Rafael Mendonça França*
-* Allow you to pass `prepend: false` to protect_from_forgery to have the
+* 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.