aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2017-10-22 12:12:48 -0400
committerGitHub <noreply@github.com>2017-10-22 12:12:48 -0400
commit6525e7fb2e534a6564438008f9c02cf29eb37483 (patch)
tree2d646461d1327b7f0436309a7c3955473e4f4f7a
parent1ca6710e9215aa440a79946629e90ac0135ab662 (diff)
parent75597f064a21ba6682678edf10ae18c33653662d (diff)
downloadrails-6525e7fb2e534a6564438008f9c02cf29eb37483.tar.gz
rails-6525e7fb2e534a6564438008f9c02cf29eb37483.tar.bz2
rails-6525e7fb2e534a6564438008f9c02cf29eb37483.zip
Merge pull request #30949 from bogdanvlviv/add-30850-to-changelog
Add changelog entry about new `allow_other_host` option for `redirect_back` method
-rw-r--r--actionpack/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 9a001cef9b..e5c814cc79 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Add `:allow_other_host` option to `redirect_back` method.
+ When `allow_other_host` is set to `false`, the `redirect_back`
+ will not allow a redirecting from a different host.
+ `allow_other_host` is `true` by default.
+
+ *Tim Masliuchenko*
+
* Add headless chrome support to System Tests.
*Yuji Yaginuma*