hako 2.11.0 → 2.11.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: 001e7a2b3dccc96340e80481753f1090728f9f2cca4f27e94f7fca284e6a65f1
4
- data.tar.gz: 544f03662039b57ef3e428d0de4b98a5a85dada6e41486ea8ce02777f4d305e2
3
+ metadata.gz: 9a98d5923ebdf748ea9b2520a31b8e9081907a5e786866e0a108e8fb75cb12f6
4
+ data.tar.gz: ba1ed9526beb23c582b45da2e3d4da5b6fbfd1cb503bd98543bc5cfd3356855b
5
5
  SHA512:
6
- metadata.gz: 2c20a94341bc32ea7f1ec3e02057b09aa4e4805c1fde173e136a7ad62a10b01395c16295afdc76c925a606d884fe55528c57cdbbff71b0210a5e503c34fe216e
7
- data.tar.gz: ff1994cf309def51247e541876a6af52abb36b5ec12799cdad783de84791e0bcadb6fbc00f463c0308711db5191cce0a08804d69009207f3c5dba2cc696d6547
6
+ metadata.gz: e78054720c6d8c06c5158e188f8d496972396b3d289546f2fb592462f7df28fbfec76746e8ab5d6a7e137729f7c2bd0bc2c73c311052c9ca56ba20593cd88864
7
+ data.tar.gz: a769ebb32b9ea79fecfbe34f8c25264781ce81efa5ab0dd9949f0305a84875aca65956b009eaf76816b64d178256f719e056a2b2dcc4f04950cf42e1b152ef13
@@ -1,3 +1,7 @@
1
+ # 2.11.1 (2019-05-17)
2
+ ## Bug fixes
3
+ - Fix comparison of `system_controls` parameter
4
+
1
5
  # 2.11.0 (2019-05-17)
2
6
  ## New features
3
7
  - Support `system_controls` parameter in container definition
@@ -173,6 +173,10 @@ module Hako
173
173
  end
174
174
 
175
175
  def system_controls_schema
176
+ Schema::UnorderedArray.new(system_control_schema)
177
+ end
178
+
179
+ def system_control_schema
176
180
  Schema::Structure.new.tap do |struct|
177
181
  struct.member(:namespace, Schema::String.new)
178
182
  struct.member(:value, Schema::String.new)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Hako
4
- VERSION = '2.11.0'
4
+ VERSION = '2.11.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hako
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.0
4
+ version: 2.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kohei Suzuki