aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorNicolas Cavigneaux <nico@bounga.org>2014-10-09 15:06:26 +0200
committerNicolas Cavigneaux <nico@bounga.org>2014-10-14 16:42:50 +0200
commit3041bb2a942711d7e4919795c9aff0d5d568568b (patch)
treeaeee85e344150e9faeb9be2e6f33447c22f0b6ea /actionpack/CHANGELOG.md
parent5a5073301c66b7999ad25c18a22d44922002c689 (diff)
downloadrails-3041bb2a942711d7e4919795c9aff0d5d568568b.tar.gz
rails-3041bb2a942711d7e4919795c9aff0d5d568568b.tar.bz2
rails-3041bb2a942711d7e4919795c9aff0d5d568568b.zip
Improve Journey compliance to RFC 3986
The scanner in Journey fails to recognize routes that use literals from the sub-delims section of RFC 3986. This commit enhance the compatibility of Journey with the RFC by adding support of authorized delimiters to the scanner. Fix #17212
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index de9722c392..64105934cd 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,13 @@
+* Improve Journey compliance to RFC 3986
+
+ The scanner in Journey failed to recognize routes that use literals
+ from the sub-delims section of RFC 3986. It's now able to parse those
+ authorized delimiters and route as expected.
+
+ Fixes #17212
+
+ *Nicolas Cavigneaux*
+
* Deprecate implicit Array conversion for Response objects. It was added
(using `#to_ary`) so we could conveniently use implicit splatting: