anyway_config 2.0.4 → 2.0.5

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: b904056fa9aacdea82b6f1637842533d7def209c93f567b0367f286ea80f9d03
4
- data.tar.gz: 711e2db3dbf53098621d145c260967a529a0a384c4431f26f361b6a32f064730
3
+ metadata.gz: f02fb138555d439b5a745b894f2b617db2614cd7955b41f477297b7c03182e02
4
+ data.tar.gz: 5aa678eda25139e77e8ac6714a046ff3fa19510ec6110e6f0c25e2caa63c2bfa
5
5
  SHA512:
6
- metadata.gz: 77df85ae073e7b919e0f54b4bbb8626cef280745302f22f5771f7b14033404b8414ddc8b91e2ddc5fba7a6f1a01e8a0b380a112aa5d4ef7129521c5cdf218888
7
- data.tar.gz: 2c101d67759f17b04cba5fbadfffb224ce54cb39a96d369784d291b9c6991801a2dc5a4cd422a52dfd4a1e9c46d219629588e744c527846f720089250cb8c5a7
6
+ metadata.gz: f03c321ea4f77e1c2fac334fe38efed8aa6555f56c6c38971d554a70c1b5f8d82d75293782f4a06c7818901a4094050bb7edc8cd5d70f7f506ba15a84ebb4375
7
+ data.tar.gz: aaf7d26cc3ab82e903a1302ee6cddc2d15f0f9db0e3453421e95c0d3067a81b0e039f6d783e45c78549caa2785c989dd8cc424373316a408778bcba50d0b00d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change log
2
2
 
3
+ ## 2.0.5 (2020-05-15)
4
+
5
+ - Use `YAML.load` instead of `YAML.safe_laad`. ([@palkan][])
6
+
3
7
  ## 2.0.4 (2020-05-15)
4
8
 
5
9
  - Fix regression with adding `ruby-next` as a runtime dependency even for RubyGems release. ([@palkan][])
@@ -26,7 +26,7 @@ module Anyway
26
26
  return {} unless File.file?(path)
27
27
  require "yaml" unless defined?(::YAML)
28
28
  if defined?(ERB)
29
- ::YAML.safe_load(ERB.new(File.read(path)).result, [], [], true)
29
+ ::YAML.load(ERB.new(File.read(path)).result) # rubocop:disable Security/YAMLLoad
30
30
  else
31
31
  ::YAML.load_file(path)
32
32
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Anyway # :nodoc:
4
- VERSION = "2.0.4"
4
+ VERSION = "2.0.5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anyway_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Dementyev