aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-10-09 11:49:12 +0200
committerYves Senn <yves.senn@gmail.com>2013-10-09 11:49:12 +0200
commit2b21bddc9eedb89da887983b261b924e9551ce63 (patch)
treeaebd5b8ce1aef25dab1dac096908d1bc984d87d7 /actionpack/CHANGELOG.md
parent29e704d98bec8783d45f58b639972973f18be016 (diff)
downloadrails-2b21bddc9eedb89da887983b261b924e9551ce63.tar.gz
rails-2b21bddc9eedb89da887983b261b924e9551ce63.tar.bz2
rails-2b21bddc9eedb89da887983b261b924e9551ce63.zip
add dots after `Fixes #YYYYY` in actionpack CHANGELOG. [ci skip]
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index a2864102cb..7af9165605 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -3,20 +3,20 @@
options hash, so that if a user relied on it after calling respond_with,
the hash wouldn't be the same.
- Fixes #12029
+ Fixes #12029.
*bluehotdog*
* Fix `ActionDispatch::RemoteIp::GetIp#calculate_ip` to only check for spoofing
attacks if both `HTTP_CLIENT_IP` and `HTTP_X_FORWARDED_FOR` are set.
- Fixes #10844
+ Fixes #10844.
*Tamir Duberstein*
* Strong parameters should permit nested number as key.
- Fixes #12293
+ Fixes #12293.
*kennyj*
@@ -32,14 +32,14 @@
* Fix an issue where router can't recognize downcased url encoding path.
- Fixes #12269
+ Fixes #12269.
*kennyj*
* Fix custom flash type definition. Misusage of the `_flash_types` class variable
caused an error when reloading controllers with custom flash types.
- Fixes #12057
+ Fixes #12057.
*Ricardo de Cillo*
@@ -60,21 +60,21 @@
* Fix an issue where :if and :unless controller action procs were being run
before checking for the correct action in the :only and :unless options.
- Fixes #11799
+ Fixes #11799.
*Nicholas Jakobsen*
* Fix an issue where `assert_dom_equal` and `assert_dom_not_equal` were
ignoring the passed failure message argument.
- Fixes #11751
+ Fixes #11751.
*Ryan McGeary*
* Allow REMOTE_ADDR, HTTP_HOST and HTTP_USER_AGENT to be overridden from
the environment passed into `ActionDispatch::TestRequest.new`.
- Fixes #11590
+ Fixes #11590.
*Andrew White*
@@ -89,7 +89,7 @@
* Skip routes pointing to a redirect or mounted application when generating urls
using an options hash as they aren't relevant and generate incorrect urls.
- Fixes #8018
+ Fixes #8018.
*Andrew White*
@@ -107,7 +107,7 @@
* Fix `ActionDispatch::ParamsParser#parse_formatted_parameters` to rewind body input stream on
parsing json params.
- Fixes #11345
+ Fixes #11345.
*Yuri Bol*, *Paul Nikitochkin*
@@ -140,7 +140,7 @@
was setting `request.formats` with an array containing a `nil` value, which
raised an error when setting the controller formats.
- Fixes #10965
+ Fixes #10965.
*Becker*
@@ -149,7 +149,7 @@
no `:to` present in the options hash so should only affect routes using the
shorthand syntax (i.e. endpoint is inferred from the path).
- Fixes #9856
+ Fixes #9856.
*Yves Senn*, *Andrew White*