route_translator 8.2.0 → 8.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a22c81c0b6e1cba0291cc7a2ff1f576d5d00a418c920633e1aa8ef715a7c09c
4
- data.tar.gz: b6d1d0ccf414ef08abb513136d25d4004915e05dec690992b1ccb6f3f814b2a1
3
+ metadata.gz: 2dee48b403034cdfafb803907c15c3f68ecefd282ae3d58eef7b813259088443
4
+ data.tar.gz: 374a81216e935e29a9cdedc3441bd12bf3480025e169e72f6124a30ebe4dc59b
5
5
  SHA512:
6
- metadata.gz: 954551495bcde48e69af19e26b0d9062fcaabf4677fc171bb23e7adf87cfd2549a7be64bc495b382c650e1fb1068be7ce889460f54464c9fa4ef3eaf97c0bf9a
7
- data.tar.gz: df05ec4b6ee86528b7d39d49277ba9cb9c7dddf731329ab0ad5ad92c84571951d9b15a188a10bb9a058340955dc75e5379b88920ee132cc3c3409d616b24aa5b
6
+ metadata.gz: 1d9215d8faeeda69a1ce08c3847e00e640b74a586d1e5d81aac27b191d8230273a35c4b8d9283767ec2a0d15c6f43ba987f49a5e15a18574c8a55fa5bfd661cb
7
+ data.tar.gz: a13a8a4646af8176ce64ef728c41b44559e6f1d12f87ed5a1fd8750ea5ad28fc30d4fcfdbb35bc2d563b06b6e527519612789a0b2d9106bf113f98edadb69355
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 8.2.1 / 2020-11-03
4
+
5
+ * [ENHANCEMENT] Fix deprecation with URI.parser ([#234](https://github.com/enriclluelles/route_translator/pull/234))
6
+
3
7
  ## 8.2.0 / 2020-11-03
4
8
 
5
9
  * [FEATURE] Add Rails 6.1 compatibility
@@ -34,7 +34,7 @@ module ActionDispatch
34
34
  name_for_action(options.delete(:as), action)
35
35
  end
36
36
 
37
- path = Mapping.normalize_path URI.parser.escape(path), formatted
37
+ path = Mapping.normalize_path URI::DEFAULT_PARSER.escape(path), formatted
38
38
  ast = Journey::Parser.parse path
39
39
 
40
40
  mapping = Mapping.build(@scope, @set, ast, controller, default_action, to, via, formatted, options_constraints, anchor, options)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RouteTranslator
4
- VERSION = '8.2.0'
4
+ VERSION = '8.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: route_translator
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.2.0
4
+ version: 8.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geremia Taglialatela