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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/kitchen/transport/ssh.rb +1 -1
- data/lib/kitchen/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22f760d057e0cf90d483e03c622c08ea54a17064
|
4
|
+
data.tar.gz: b2a22c93d0be6c6cb8c623ae61fdf395a48b83a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f323c65e242a8de0fdeef2626ed5a6b397f116fed2587e35f7add1902c7c1a9ca601a2b781b0abe55e4bc69c0f452c158976c9d025db5320425d76478e87cbc5
|
7
|
+
data.tar.gz: 279c722139b269f198c2a4abd6e17520ec342809d2c1300e9fb787700f0e2b04adfb2c912733b0a4733ac76dd416503fc6d1915956df6ea254b971e1c86caaee
|
data/CHANGELOG.md
CHANGED
@@ -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
|
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"]
|
data/lib/kitchen/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2016-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-shellout
|