Commit 9fa3971
Keep using URI RFC2396 parser
The default parser in URI 1.0.0 / Ruby 3.4 has been changed to RFC3986
[[1]]. This causes test failures such as:
~~~
... snip ...
Failure:
GlobalIDTest#test_invalid_app_name [test/cases/global_id_test.rb:13]:
ArgumentError expected but nothing was raised.
rails test test/cases/global_id_test.rb:8
F
... snip ...
~~~
where underscores / ampersands are now allowed in host. Keep using URI
RFC2396 parser for compatibility.
Fixes rails#190
[1]: ruby/uri#1071 parent f4e129d commit 9fa3971
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
| 65 | + | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| |||
0 commit comments