container_config 0.1.2 → 0.1.3

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: c622cd684d6ce2c80ea6dbdd4ebe009ed9c792d2ad23d83904ce792e8f90689d
4
- data.tar.gz: 7c5586f3488722cc3f464de78b6212daff438e3d167553215d0d99459ac03fd4
3
+ metadata.gz: 487f60c6b0500aa7abf9be5de88e436e644d8832a27e1196c3c4bd9a6388fe24
4
+ data.tar.gz: 0e271f9cf5de4fcdc80cdb9cce6961ab61cd3e6c288c2b8b6d718f29355074ff
5
5
  SHA512:
6
- metadata.gz: 843ae1c478cda27bb699b0d5f43e0df5faadf9905b0511b67e3aed8269bf0941530801d064394ed2d4a4237c4c1537cc84ce3a3793d14eebb2e8b8ece9c5c2e6
7
- data.tar.gz: a97e1bf3a8bdabd8fbfaa1cd3ebead466775094f897f9ccfa60ad5113b8d81b531b0abcafab378fa7afb419c856ae423a584801650ba98c879eef7254cbabf78
6
+ metadata.gz: bb062a89ec5a80de5293feab518f3723db0bd395f0c4092a6e502c9ec3df6cf1ff81cc40d8326b92b83aa328352b68be084cb4211b2adfc2b18a145436c0c886
7
+ data.tar.gz: 82c25ad23ac76f8ba039f6746b775454ba877fa8dbc1b208b7a3a03a537c7b4e273890dfd2ef70d0c2d160cdb75dddf21f718dba79787cccb0aad2f1e4a221c4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.3] - 2021-06-18
4
+
5
+ - Demoted `Could not find value for key` log message to debug level
6
+
3
7
  ## [0.1.2] - 2021-05-01
4
8
 
5
9
  - Resolve rexml vulnerability CVE-2021-28965
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- container_config (0.1.2)
4
+ container_config (0.1.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,7 +9,7 @@ GEM
9
9
  ast (2.4.2)
10
10
  diff-lcs (1.4.4)
11
11
  parallel (1.20.1)
12
- parser (3.0.1.0)
12
+ parser (3.0.1.1)
13
13
  ast (~> 2.4.1)
14
14
  rainbow (3.0.0)
15
15
  rake (13.0.3)
@@ -28,20 +28,20 @@ GEM
28
28
  diff-lcs (>= 1.2.0, < 2.0)
29
29
  rspec-support (~> 3.10.0)
30
30
  rspec-support (3.10.2)
31
- rubocop (1.13.0)
31
+ rubocop (1.17.0)
32
32
  parallel (~> 1.10)
33
33
  parser (>= 3.0.0.0)
34
34
  rainbow (>= 2.2.2, < 4.0)
35
35
  regexp_parser (>= 1.8, < 3.0)
36
36
  rexml
37
- rubocop-ast (>= 1.2.0, < 2.0)
37
+ rubocop-ast (>= 1.7.0, < 2.0)
38
38
  ruby-progressbar (~> 1.7)
39
39
  unicode-display_width (>= 1.4.0, < 3.0)
40
- rubocop-ast (1.4.1)
41
- parser (>= 2.7.1.5)
40
+ rubocop-ast (1.7.0)
41
+ parser (>= 3.0.1.1)
42
42
  rubocop-rake (0.5.1)
43
43
  rubocop
44
- rubocop-rspec (2.3.0)
44
+ rubocop-rspec (2.4.0)
45
45
  rubocop (~> 1.0)
46
46
  rubocop-ast (>= 1.1.0)
47
47
  ruby-progressbar (1.11.0)
@@ -61,4 +61,4 @@ DEPENDENCIES
61
61
  yard (~> 0.9)
62
62
 
63
63
  BUNDLED WITH
64
- 2.2.14
64
+ 2.2.16
@@ -154,7 +154,7 @@ module ContainerConfig
154
154
  def handle_empty_value(config_value, key, **options)
155
155
  if config_value.nil? || config_value.to_s.empty?
156
156
  provider_list = providers.map(&:name).join(", ")
157
- logger.warn { "Could not find value for #{key} in providers: #{provider_list}" }
157
+ logger.debug { "Could not find value for #{key} in providers: #{provider_list}" }
158
158
  raise MissingRequiredValue, "Could not find value for #{key} in providers: #{provider_list}!" if options[:required]
159
159
  else
160
160
  logger.debug { "Configuration value for #{key} loaded" }
@@ -2,5 +2,5 @@
2
2
 
3
3
  module ContainerConfig
4
4
  # ContainerConfig version
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.3"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: container_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Newell
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-01 00:00:00.000000000 Z
11
+ date: 2021-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake