aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md20
1 files changed, 13 insertions, 7 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 944bf18113..75deba4a4f 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,6 +1,12 @@
-* Allow an absolute controller path inside a module scope
+* Allow an absolute controller path inside a module scope. Fixes #12777.
+
+ Example:
+
+ namespace :foo do
+ # will route to BarController without the namespace.
+ get '/special', to: '/bar#index'
+ end
- Fixes #12777
* Unique the segment keys array for non-optimized url helpers
@@ -10,7 +16,7 @@
This means to benefit from optimized url generation the arg needs to be
specified as many times as it appears in the path.
- Fixes #12808
+ Fixes #12808.
*Andrew White*
@@ -20,7 +26,7 @@
in the error message. Previously it would only show the contraints that were
required as part of the path.
- Fixes #13592
+ Fixes #13592.
*Andrew White*
@@ -44,7 +50,7 @@
absolute. Similarly for option redirects, if the options hash returned
contains a `:host` or `:domain` key then the path is treated as absolute.
- Fixes #7977
+ Fixes #7977.
*Andrew White*
@@ -59,7 +65,7 @@
it has been unescaped. If it is not valid then we can return early since it will
not match any file anyway.
- Fixes #13518
+ Fixes #13518.
*Andrew White*
@@ -69,7 +75,7 @@
* Converts hashes in arrays of unfiltered params to unpermitted params.
- Fixes #13382
+ Fixes #13382.
*Xavier Noria*