You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This triggers the obsolescence warning since the DEFAULT_PARSER has switched to RFC3986_PARSER which just delegates make_regexp back to the RFC2396_PARSER.
I'm doing a bit of warn-housekeeping on Hanami which uses the following (without passing a schema) to match URIs in the asset handling:
This triggers the obsolescence warning since the DEFAULT_PARSER has switched to RFC3986_PARSER which just delegates
make_regexp
back to the RFC2396_PARSER.Is there a recommended path forward?
URI::DEFAULT_PARSER.make_regexp
--replace-with-->URI::RFC2396_PARSER.make_regexp
URI::DEFAULT_PARSER.make_regexp
--replace-with-->URI::RFC3986_Parser::RFC3986_URI
The warning suggest 1, but RFC2396 is obsolete, so rather 2? Or is there a third way? Thanks a lot for any hints!
(Update: Capybara uses the same
URI::DEFAULT_PARSER.make_regexp
as well, so the same question arises there.)The text was updated successfully, but these errors were encountered: