test-kitchen 1.11.0 → 1.11.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18c07230017975d3394e829c8325bce98a9d29e7
4
- data.tar.gz: 7beebf652866a5046898dcb9b0b21ac5b82d4e8e
3
+ metadata.gz: 22f760d057e0cf90d483e03c622c08ea54a17064
4
+ data.tar.gz: b2a22c93d0be6c6cb8c623ae61fdf395a48b83a1
5
5
  SHA512:
6
- metadata.gz: 197303853148d6c9f2ca5add5d67c6683089bc4dd26cefb7e5b22b3b6f612adb68b82146027acaee6fdba7091bb5b49371429f0ecc1b92f8cb42c2895762b04e
7
- data.tar.gz: 03bd9a05645d7e5860cf72a99569dd6b57fd7fdd795c90cc004b247eeccce3be31c9ae3b1b94aa6b5102bdaad494bb096cb667d6619f46afa362f83f6a833c4a
6
+ metadata.gz: f323c65e242a8de0fdeef2626ed5a6b397f116fed2587e35f7add1902c7c1a9ca601a2b781b0abe55e4bc69c0f452c158976c9d025db5320425d76478e87cbc5
7
+ data.tar.gz: 279c722139b269f198c2a4abd6e17520ec342809d2c1300e9fb787700f0e2b04adfb2c912733b0a4733ac76dd416503fc6d1915956df6ea254b971e1c86caaee
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.11.1](https://github.com/test-kitchen/test-kitchen/tree/v1.11.1) (2016-08-13)
4
+ [Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.11.0...v1.11.1)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - Check the actual value, because `password: nil` shouldn't disable sending the key [\#1098](https://github.com/test-kitchen/test-kitchen/pull/1098) ([coderanger](https://github.com/coderanger))
9
+
3
10
  ## [v1.11.0](https://github.com/test-kitchen/test-kitchen/tree/v1.11.0) (2016-08-11)
4
11
  [Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.10.2...v1.11.0)
5
12
 
@@ -416,7 +416,7 @@ module Kitchen
416
416
  :ssh_gateway_username => data[:ssh_gateway_username]
417
417
  }
418
418
 
419
- if data[:ssh_key] && !data.key?(:password)
419
+ if data[:ssh_key] && !data[:password]
420
420
  opts[:keys_only] = true
421
421
  opts[:keys] = Array(data[:ssh_key])
422
422
  opts[:auth_methods] = ["publickey"]
@@ -17,5 +17,5 @@
17
17
  # limitations under the License.
18
18
 
19
19
  module Kitchen
20
- VERSION = "1.11.0"
20
+ VERSION = "1.11.1"
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-kitchen
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fletcher Nichol
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-12 00:00:00.000000000 Z
11
+ date: 2016-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout