aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorNicholas Firth-McCoy <nicholas@2suggestions.com.au>2016-06-18 18:46:44 +1000
committerNicholas Firth-McCoy <nicholas@2suggestions.com.au>2016-06-20 21:49:12 +1000
commit9d513e0a19f2b9333cd752b2747db4f350fcddc4 (patch)
tree551ad637aa116ba0944cf0d436f3981d7aa574f1 /railties/CHANGELOG.md
parent0c998a14c45430afe85188f8ad13a696b077ffd9 (diff)
downloadrails-9d513e0a19f2b9333cd752b2747db4f350fcddc4.tar.gz
rails-9d513e0a19f2b9333cd752b2747db4f350fcddc4.tar.bz2
rails-9d513e0a19f2b9333cd752b2747db4f350fcddc4.zip
Fix rails/info routes for apps with globbing route
The /rails/info routes were inaccessible in apps with a catch-all globbing route, as they were being appended after the globbing route and would never be matched. See also ccc3ddb7762bae0df7e2f8d643b19b6a4769d5be.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index b8f1cda329..982385438b 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Ensure `/rails/info` routes match in development for apps with a catch-all globbing route.
+
+ *Nicholas Firth-McCoy*
+
* Added a shared section to `config/secrets.yml` that will be loaded for all environments.
*DHH*