test-kitchen 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.cane +8 -7
- data/.github/ISSUE_TEMPLATE.md +56 -0
- data/.gitignore +28 -27
- data/.kitchen.ci.yml +23 -0
- data/.kitchen.proxy.yml +27 -0
- data/.rubocop.yml +3 -3
- data/.travis.yml +70 -53
- data/.yardopts +3 -3
- data/Berksfile +3 -0
- data/CHANGELOG.md +1083 -1051
- data/CONTRIBUTING.md +14 -14
- data/Gemfile +19 -14
- data/Gemfile.proxy_tests +4 -5
- data/Guardfile +42 -42
- data/LICENSE +15 -15
- data/MAINTAINERS.md +23 -24
- data/README.md +135 -135
- data/Rakefile +61 -76
- data/appveyor.yml +44 -34
- data/features/kitchen_action_commands.feature +164 -164
- data/features/kitchen_command.feature +16 -16
- data/features/kitchen_console_command.feature +34 -34
- data/features/kitchen_defaults.feature +38 -38
- data/features/kitchen_diagnose_command.feature +96 -96
- data/features/kitchen_driver_create_command.feature +64 -64
- data/features/kitchen_driver_discover_command.feature +25 -25
- data/features/kitchen_help_command.feature +16 -16
- data/features/kitchen_init_command.feature +274 -274
- data/features/kitchen_list_command.feature +104 -104
- data/features/kitchen_login_command.feature +62 -62
- data/features/kitchen_sink_command.feature +30 -30
- data/features/kitchen_test_command.feature +88 -88
- data/features/step_definitions/gem_steps.rb +36 -36
- data/features/step_definitions/git_steps.rb +5 -5
- data/features/step_definitions/output_steps.rb +5 -5
- data/features/support/env.rb +75 -75
- data/lib/kitchen.rb +150 -150
- data/lib/kitchen/base64_stream.rb +55 -55
- data/lib/kitchen/cli.rb +419 -419
- data/lib/kitchen/collection.rb +55 -55
- data/lib/kitchen/color.rb +65 -65
- data/lib/kitchen/command.rb +185 -185
- data/lib/kitchen/command/action.rb +45 -45
- data/lib/kitchen/command/console.rb +58 -58
- data/lib/kitchen/command/diagnose.rb +92 -92
- data/lib/kitchen/command/driver_discover.rb +105 -105
- data/lib/kitchen/command/exec.rb +41 -41
- data/lib/kitchen/command/list.rb +119 -119
- data/lib/kitchen/command/login.rb +43 -43
- data/lib/kitchen/command/sink.rb +54 -54
- data/lib/kitchen/command/test.rb +51 -51
- data/lib/kitchen/config.rb +322 -322
- data/lib/kitchen/configurable.rb +529 -529
- data/lib/kitchen/data_munger.rb +959 -960
- data/lib/kitchen/diagnostic.rb +141 -141
- data/lib/kitchen/driver.rb +56 -56
- data/lib/kitchen/driver/base.rb +134 -134
- data/lib/kitchen/driver/dummy.rb +108 -108
- data/lib/kitchen/driver/proxy.rb +72 -72
- data/lib/kitchen/driver/ssh_base.rb +357 -357
- data/lib/kitchen/errors.rb +229 -229
- data/lib/kitchen/generator/driver_create.rb +177 -177
- data/lib/kitchen/generator/init.rb +296 -296
- data/lib/kitchen/instance.rb +662 -662
- data/lib/kitchen/lazy_hash.rb +142 -142
- data/lib/kitchen/loader/yaml.rb +349 -349
- data/lib/kitchen/logger.rb +423 -423
- data/lib/kitchen/logging.rb +56 -56
- data/lib/kitchen/login_command.rb +52 -52
- data/lib/kitchen/metadata_chopper.rb +52 -52
- data/lib/kitchen/platform.rb +67 -67
- data/lib/kitchen/provisioner.rb +54 -54
- data/lib/kitchen/provisioner/base.rb +236 -236
- data/lib/kitchen/provisioner/chef/berkshelf.rb +114 -114
- data/lib/kitchen/provisioner/chef/common_sandbox.rb +322 -322
- data/lib/kitchen/provisioner/chef/librarian.rb +112 -112
- data/lib/kitchen/provisioner/chef_apply.rb +124 -125
- data/lib/kitchen/provisioner/chef_base.rb +341 -294
- data/lib/kitchen/provisioner/chef_solo.rb +88 -89
- data/lib/kitchen/provisioner/chef_zero.rb +245 -245
- data/lib/kitchen/provisioner/dummy.rb +79 -79
- data/lib/kitchen/provisioner/shell.rb +138 -138
- data/lib/kitchen/rake_tasks.rb +63 -63
- data/lib/kitchen/shell_out.rb +93 -93
- data/lib/kitchen/ssh.rb +276 -276
- data/lib/kitchen/state_file.rb +120 -120
- data/lib/kitchen/suite.rb +51 -51
- data/lib/kitchen/thor_tasks.rb +66 -66
- data/lib/kitchen/transport.rb +54 -54
- data/lib/kitchen/transport/base.rb +176 -176
- data/lib/kitchen/transport/dummy.rb +79 -79
- data/lib/kitchen/transport/ssh.rb +364 -364
- data/lib/kitchen/transport/winrm.rb +486 -486
- data/lib/kitchen/util.rb +147 -147
- data/lib/kitchen/verifier.rb +55 -55
- data/lib/kitchen/verifier/base.rb +235 -235
- data/lib/kitchen/verifier/busser.rb +277 -277
- data/lib/kitchen/verifier/dummy.rb +79 -79
- data/lib/kitchen/verifier/shell.rb +101 -101
- data/lib/kitchen/version.rb +21 -21
- data/lib/vendor/hash_recursive_merge.rb +82 -82
- data/spec/kitchen/base64_stream_spec.rb +77 -77
- data/spec/kitchen/cli_spec.rb +56 -56
- data/spec/kitchen/collection_spec.rb +80 -80
- data/spec/kitchen/color_spec.rb +54 -54
- data/spec/kitchen/config_spec.rb +408 -408
- data/spec/kitchen/configurable_spec.rb +1095 -1062
- data/spec/kitchen/data_munger_spec.rb +2694 -2383
- data/spec/kitchen/diagnostic_spec.rb +129 -129
- data/spec/kitchen/driver/base_spec.rb +121 -121
- data/spec/kitchen/driver/dummy_spec.rb +199 -199
- data/spec/kitchen/driver/proxy_spec.rb +138 -138
- data/spec/kitchen/driver/ssh_base_spec.rb +1115 -1115
- data/spec/kitchen/driver_spec.rb +112 -112
- data/spec/kitchen/errors_spec.rb +309 -309
- data/spec/kitchen/instance_spec.rb +1419 -1419
- data/spec/kitchen/lazy_hash_spec.rb +117 -117
- data/spec/kitchen/loader/yaml_spec.rb +774 -774
- data/spec/kitchen/logger_spec.rb +429 -429
- data/spec/kitchen/logging_spec.rb +59 -59
- data/spec/kitchen/login_command_spec.rb +68 -68
- data/spec/kitchen/metadata_chopper_spec.rb +82 -82
- data/spec/kitchen/platform_spec.rb +89 -89
- data/spec/kitchen/provisioner/base_spec.rb +386 -386
- data/spec/kitchen/provisioner/chef_apply_spec.rb +136 -136
- data/spec/kitchen/provisioner/chef_base_spec.rb +1161 -1067
- data/spec/kitchen/provisioner/chef_solo_spec.rb +557 -557
- data/spec/kitchen/provisioner/chef_zero_spec.rb +1001 -1001
- data/spec/kitchen/provisioner/dummy_spec.rb +99 -99
- data/spec/kitchen/provisioner/shell_spec.rb +566 -566
- data/spec/kitchen/provisioner_spec.rb +107 -107
- data/spec/kitchen/shell_out_spec.rb +150 -150
- data/spec/kitchen/ssh_spec.rb +693 -693
- data/spec/kitchen/state_file_spec.rb +129 -129
- data/spec/kitchen/suite_spec.rb +62 -62
- data/spec/kitchen/transport/base_spec.rb +89 -89
- data/spec/kitchen/transport/ssh_spec.rb +1255 -1255
- data/spec/kitchen/transport/winrm_spec.rb +1143 -1143
- data/spec/kitchen/transport_spec.rb +112 -112
- data/spec/kitchen/util_spec.rb +165 -165
- data/spec/kitchen/verifier/base_spec.rb +362 -362
- data/spec/kitchen/verifier/busser_spec.rb +610 -610
- data/spec/kitchen/verifier/dummy_spec.rb +99 -99
- data/spec/kitchen/verifier/shell_spec.rb +160 -158
- data/spec/kitchen/verifier_spec.rb +120 -120
- data/spec/kitchen_spec.rb +114 -114
- data/spec/spec_helper.rb +85 -85
- data/spec/support/powershell_max_size_spec.rb +40 -40
- data/support/busser_install_command.ps1 +14 -14
- data/support/busser_install_command.sh +14 -14
- data/support/chef-client-zero.rb +77 -77
- data/support/chef_base_init_command.ps1 +18 -18
- data/support/chef_base_init_command.sh +2 -2
- data/support/chef_base_install_command.ps1 +85 -85
- data/support/chef_base_install_command.sh +229 -229
- data/support/chef_zero_prepare_command_legacy.ps1 +9 -9
- data/support/chef_zero_prepare_command_legacy.sh +10 -10
- data/support/download_helpers.sh +109 -109
- data/support/dummy-validation.pem +27 -27
- data/templates/driver/CHANGELOG.md.erb +3 -3
- data/templates/driver/Gemfile.erb +3 -3
- data/templates/driver/README.md.erb +64 -64
- data/templates/driver/Rakefile.erb +21 -21
- data/templates/driver/driver.rb.erb +23 -23
- data/templates/driver/gemspec.erb +29 -29
- data/templates/driver/gitignore.erb +17 -17
- data/templates/driver/license_apachev2.erb +15 -15
- data/templates/driver/license_lgplv3.erb +16 -16
- data/templates/driver/license_mit.erb +22 -22
- data/templates/driver/license_reserved.erb +5 -5
- data/templates/driver/tailor.erb +4 -4
- data/templates/driver/travis.yml.erb +11 -11
- data/templates/driver/version.rb.erb +12 -12
- data/templates/init/chefignore.erb +1 -1
- data/templates/init/kitchen.yml.erb +18 -18
- data/test-kitchen.gemspec +62 -62
- data/test/integration/default/default_spec.rb +3 -0
- data/testing_windows.md +37 -37
- metadata +23 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b364440963828eb10c497134ea64cd8f78df5c3b
|
4
|
+
data.tar.gz: cebc3254cee83cb44ef733d14a64e5dbcacc588c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ab91ac150832f3cac567ac4041080c75541c181d7e3dbf7b3dff71b9cc9de4d2c082361458517096f2ae8b513e31be2ece0a3766733469d7e373cae7fa5d1e9
|
7
|
+
data.tar.gz: 70a0dec7a91b3d0f9ddbde7ca8dc19271b5ad8750019b2c570d9166e8c91a01012243654adafd0939762c87756cac4a78b7fcb389264bbbd10c41e811cb2047d
|
data/.cane
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
--abc-max 20
|
2
|
-
--style-measure 100
|
3
|
-
--abc-exclude Kitchen::ThorTasks#define
|
4
|
-
--abc-exclude Kitchen::Driver::SSHBase#converge
|
5
|
-
--abc-exclude Kitchen::Driver::SSHBase#verify
|
6
|
-
--
|
7
|
-
--
|
1
|
+
--abc-max 20
|
2
|
+
--style-measure 100
|
3
|
+
--abc-exclude Kitchen::ThorTasks#define
|
4
|
+
--abc-exclude Kitchen::Driver::SSHBase#converge
|
5
|
+
--abc-exclude Kitchen::Driver::SSHBase#verify
|
6
|
+
--abc-exclude Kitchen::Configurable#wrap_shell_code
|
7
|
+
--style-exclude lib/vendor/**/*.rb
|
8
|
+
--doc-exclude lib/vendor/**/.rb
|
@@ -0,0 +1,56 @@
|
|
1
|
+
## Description
|
2
|
+
|
3
|
+
Briefly describe the issue
|
4
|
+
|
5
|
+
## Kitchen Version
|
6
|
+
|
7
|
+
Tell us which version of test-kitchen you are using (`kitchen --version`).
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
# Copy-paste your results here
|
11
|
+
```
|
12
|
+
|
13
|
+
## ChefDK Version
|
14
|
+
|
15
|
+
If you are running test-kitchen via ChefDK, `chef --version` will provide additional relevent version details.
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
# Copy-paste your results here
|
19
|
+
```
|
20
|
+
|
21
|
+
## Ruby Version
|
22
|
+
|
23
|
+
If you are not using test-kitchen via ChefDK, please provide the output of ruby --version.
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
# Copy-paste your results here
|
27
|
+
```
|
28
|
+
|
29
|
+
## Platform Version
|
30
|
+
|
31
|
+
Tell us which Operating System distribution and version test-kitchen is running on.
|
32
|
+
|
33
|
+
## Replication Case
|
34
|
+
|
35
|
+
Tell us what steps to take to replicate your problem. See [How to create a Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve)
|
36
|
+
for information on how to create a good replication case.
|
37
|
+
|
38
|
+
## Kitchen Output
|
39
|
+
|
40
|
+
The relevant output of the test-kitchen run or a link to a gist of the entire run, if there is one.
|
41
|
+
|
42
|
+
The debug output (kitchen -l debug) may be useful, but please link to a gist, or truncate it.
|
43
|
+
|
44
|
+
Please do not paste the full run out put here. If the full output would be useful, link to it in a gist.
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
# Copy-paste your results here
|
48
|
+
```
|
49
|
+
|
50
|
+
## Kitchen Diagnose
|
51
|
+
|
52
|
+
Please include the output of `kitchen diagnose --all` or `kitchen diagnose --loader` (if the first failed). This can be helpful in troubleshooting, so please include it in a gist.
|
53
|
+
|
54
|
+
## NOTE:
|
55
|
+
|
56
|
+
This repository is for core issues with the Test-Kitchen framework, so if the issue is with a plugin you may be referred to file the issue with the appropriate plugin.
|
data/.gitignore
CHANGED
@@ -1,27 +1,28 @@
|
|
1
|
-
*.gem
|
2
|
-
*.rbc
|
3
|
-
.bundle
|
4
|
-
.config
|
5
|
-
.yardoc
|
6
|
-
bin
|
7
|
-
!bin/kitchen
|
8
|
-
Gemfile*.lock
|
9
|
-
InstalledFiles
|
10
|
-
_yardoc
|
11
|
-
coverage
|
12
|
-
doc/
|
13
|
-
lib/bundler/man
|
14
|
-
pkg
|
15
|
-
rdoc
|
16
|
-
spec/reports
|
17
|
-
test/tmp
|
18
|
-
test/version_tmp
|
19
|
-
tmp
|
20
|
-
.rvmrc
|
21
|
-
.rbenv-version
|
22
|
-
.ruby-version
|
23
|
-
.project
|
24
|
-
.DS_Store
|
25
|
-
.kitchen/
|
26
|
-
.kitchen.yml
|
27
|
-
.kitchen.local.yml
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
bin
|
7
|
+
!bin/kitchen
|
8
|
+
Gemfile*.lock
|
9
|
+
InstalledFiles
|
10
|
+
_yardoc
|
11
|
+
coverage
|
12
|
+
doc/
|
13
|
+
lib/bundler/man
|
14
|
+
pkg
|
15
|
+
rdoc
|
16
|
+
spec/reports
|
17
|
+
test/tmp
|
18
|
+
test/version_tmp
|
19
|
+
tmp
|
20
|
+
.rvmrc
|
21
|
+
.rbenv-version
|
22
|
+
.ruby-version
|
23
|
+
.project
|
24
|
+
.DS_Store
|
25
|
+
.kitchen/
|
26
|
+
.kitchen.yml
|
27
|
+
.kitchen.local.yml
|
28
|
+
Berksfile.lock
|
data/.kitchen.ci.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
driver:
|
3
|
+
name: proxy
|
4
|
+
host: localhost
|
5
|
+
reset_command: "exit 0"
|
6
|
+
port: <%= ENV["machine_port"] %>
|
7
|
+
username: <%= ENV["machine_user"] %>
|
8
|
+
password: <%= ENV["machine_pass"] %>
|
9
|
+
|
10
|
+
provisioner:
|
11
|
+
name: chef_zero
|
12
|
+
|
13
|
+
platforms:
|
14
|
+
- name: ubuntu-14.04
|
15
|
+
- name: windows-2012R2
|
16
|
+
|
17
|
+
verifier:
|
18
|
+
name: inspec
|
19
|
+
|
20
|
+
suites:
|
21
|
+
- name: default
|
22
|
+
run_list:
|
23
|
+
- recipe[mercurial]
|
data/.kitchen.proxy.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
driver:
|
3
|
+
name: proxy
|
4
|
+
host: localhost
|
5
|
+
reset_command: "echo hello"
|
6
|
+
port: <%= ENV["machine_port"] %>
|
7
|
+
username: <%= ENV["machine_user"] %>
|
8
|
+
password: <%= ENV["machine_pass"] %>
|
9
|
+
|
10
|
+
provisioner:
|
11
|
+
name: chef_zero
|
12
|
+
|
13
|
+
platforms:
|
14
|
+
- name: ubuntu-14.04
|
15
|
+
|
16
|
+
verifier:
|
17
|
+
name: busser
|
18
|
+
|
19
|
+
suites:
|
20
|
+
# We run a different test based upon the configuration - basically each TK
|
21
|
+
# test asserts that the expected configuration is transfered to the target
|
22
|
+
# machine
|
23
|
+
- name: default
|
24
|
+
run_list:
|
25
|
+
- recipe[test::tk_<%= ENV['TK_SUITE_NAME'] %>_test]
|
26
|
+
# TODO a machine which doesn't setup squid and doesn't copy across
|
27
|
+
# proxy settings
|
data/.rubocop.yml
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
Style/FileName:
|
2
|
-
Exclude:
|
3
|
-
- 'support/**/*'
|
1
|
+
Style/FileName:
|
2
|
+
Exclude:
|
3
|
+
- 'support/**/*'
|
data/.travis.yml
CHANGED
@@ -1,53 +1,70 @@
|
|
1
|
-
language: ruby
|
2
|
-
|
3
|
-
rvm:
|
4
|
-
- 2.2.4
|
5
|
-
- 2.1.8
|
6
|
-
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
-
|
42
|
-
- sudo
|
43
|
-
- sudo
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
rvm:
|
4
|
+
- 2.2.4
|
5
|
+
- 2.1.8
|
6
|
+
- ruby-head
|
7
|
+
|
8
|
+
env:
|
9
|
+
- global:
|
10
|
+
- machine_user=travis
|
11
|
+
- machine_pass=travis
|
12
|
+
- machine_port=22
|
13
|
+
|
14
|
+
dist: trusty
|
15
|
+
sudo: required
|
16
|
+
|
17
|
+
before_install:
|
18
|
+
- sudo usermod -p `openssl passwd -1 'travis'` travis
|
19
|
+
- gem --version
|
20
|
+
|
21
|
+
bundler_args: --without guard integration
|
22
|
+
|
23
|
+
script:
|
24
|
+
- bundle exec rake
|
25
|
+
- bundle install --with integration
|
26
|
+
- export KITCHEN_YAML=.kitchen.ci.yml
|
27
|
+
- bundle exec kitchen verify ubuntu
|
28
|
+
|
29
|
+
branches:
|
30
|
+
only:
|
31
|
+
- master
|
32
|
+
|
33
|
+
matrix:
|
34
|
+
include:
|
35
|
+
- rvm: 2.2.4
|
36
|
+
# To run the proxy tests we need additional gems than what Test Kitchen normally uses
|
37
|
+
# for testing
|
38
|
+
gemfile: Gemfile.proxy_tests
|
39
|
+
before_install:
|
40
|
+
- sudo usermod -p `openssl passwd -1 'travis'` travis
|
41
|
+
- gem install bundler
|
42
|
+
- sudo apt-get update
|
43
|
+
- sudo apt-get -y install squid3 git curl
|
44
|
+
env:
|
45
|
+
- global:
|
46
|
+
- machine_user=travis
|
47
|
+
- machine_pass=travis
|
48
|
+
- machine_port=22
|
49
|
+
- PROXY_TESTS_DIR=proxy_tests/files/default/scripts
|
50
|
+
- PROXY_TESTS_REPO=$PROXY_TESTS_DIR/repo
|
51
|
+
- KITCHEN_YAML=/home/travis/build/test-kitchen/test-kitchen/.kitchen.proxy.yml
|
52
|
+
|
53
|
+
script:
|
54
|
+
- bundle exec kitchen --version
|
55
|
+
- git clone https://github.com/chef/proxy_tests.git
|
56
|
+
- rvmsudo -E bundle exec bash $PROXY_TESTS_DIR/run_tests.sh kitchen \* \* /tmp/out.txt
|
57
|
+
after_script:
|
58
|
+
- cat /tmp/out.txt
|
59
|
+
- sudo cat /var/log/squid3/cache.log
|
60
|
+
- sudo cat /var/log/squid3/access.log
|
61
|
+
allow_failures:
|
62
|
+
- rvm: ruby-head
|
63
|
+
|
64
|
+
notifications:
|
65
|
+
irc: "chat.freenode.net#kitchenci"
|
66
|
+
|
67
|
+
addons:
|
68
|
+
code_climate:
|
69
|
+
repo_token:
|
70
|
+
secure: "lcqi3hbalLTinxwsl+um1aN1dgijBrODSMseGEJMJGkofz3VZ+Ofuuwp9x9VjvewuiUFHsiPD5SQ6hx8N+L3wXB6qA+HTmIrXecL7VjehbImEyOuu4/++vcTdpTINAd2Qt/KuJ1eY0okSwVmvtX1VD8gYD8yrlMKdj6uexf8Bgs="
|
data/.yardopts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
--readme README.md
|
2
|
-
--markup markdown
|
3
|
-
--markup-provider maruku
|
1
|
+
--readme README.md
|
2
|
+
--markup markdown
|
3
|
+
--markup-provider maruku
|
data/Berksfile
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,1052 +1,1084 @@
|
|
1
|
-
# Change Log
|
2
|
-
|
3
|
-
## [1.
|
4
|
-
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.
|
5
|
-
|
6
|
-
**Implemented enhancements:**
|
7
|
-
|
8
|
-
-
|
9
|
-
-
|
10
|
-
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
-
|
17
|
-
-
|
18
|
-
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
-
|
27
|
-
-
|
28
|
-
-
|
29
|
-
-
|
30
|
-
-
|
31
|
-
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
-
|
36
|
-
-
|
37
|
-
-
|
38
|
-
-
|
39
|
-
-
|
40
|
-
-
|
41
|
-
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
-
|
46
|
-
-
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
-
|
51
|
-
-
|
52
|
-
-
|
53
|
-
-
|
54
|
-
-
|
55
|
-
-
|
56
|
-
-
|
57
|
-
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
-
|
62
|
-
-
|
63
|
-
-
|
64
|
-
|
65
|
-
|
66
|
-
[
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
-
|
71
|
-
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
-
|
76
|
-
-
|
77
|
-
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
**
|
89
|
-
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
-
|
133
|
-
-
|
134
|
-
-
|
135
|
-
-
|
136
|
-
-
|
137
|
-
-
|
138
|
-
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
-
|
146
|
-
-
|
147
|
-
-
|
148
|
-
-
|
149
|
-
-
|
150
|
-
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
-
|
155
|
-
-
|
156
|
-
-
|
157
|
-
-
|
158
|
-
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
-
|
168
|
-
-
|
169
|
-
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
-
|
174
|
-
|
175
|
-
**
|
176
|
-
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
|
187
|
-
|
188
|
-
[
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
-
|
193
|
-
-
|
194
|
-
-
|
195
|
-
-
|
196
|
-
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
-
|
201
|
-
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
-
|
206
|
-
-
|
207
|
-
-
|
208
|
-
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
-
|
216
|
-
-
|
217
|
-
-
|
218
|
-
-
|
219
|
-
|
220
|
-
**
|
221
|
-
|
222
|
-
-
|
223
|
-
|
224
|
-
|
225
|
-
[
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
-
|
232
|
-
-
|
233
|
-
-
|
234
|
-
-
|
235
|
-
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
-
|
240
|
-
-
|
241
|
-
-
|
242
|
-
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
-
|
249
|
-
|
250
|
-
## [
|
251
|
-
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.9.
|
252
|
-
|
253
|
-
**
|
254
|
-
|
255
|
-
- kitchen
|
256
|
-
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
-
|
264
|
-
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
-
|
271
|
-
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
-
|
303
|
-
-
|
304
|
-
|
305
|
-
|
306
|
-
[
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
**
|
317
|
-
|
318
|
-
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
-
|
329
|
-
- \
|
330
|
-
-
|
331
|
-
-
|
332
|
-
-
|
333
|
-
-
|
334
|
-
-
|
335
|
-
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
-
|
346
|
-
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
-
|
354
|
-
-
|
355
|
-
-
|
356
|
-
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
-
|
361
|
-
-
|
362
|
-
-
|
363
|
-
-
|
364
|
-
-
|
365
|
-
-
|
366
|
-
-
|
367
|
-
-
|
368
|
-
-
|
369
|
-
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
-
|
378
|
-
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
-
|
386
|
-
-
|
387
|
-
-
|
388
|
-
|
389
|
-
|
390
|
-
[
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
-
|
395
|
-
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
-
|
400
|
-
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
-
|
412
|
-
-
|
413
|
-
-
|
414
|
-
-
|
415
|
-
-
|
416
|
-
-
|
417
|
-
-
|
418
|
-
-
|
419
|
-
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
-
|
427
|
-
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
-
|
432
|
-
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
-
|
444
|
-
-
|
445
|
-
-
|
446
|
-
-
|
447
|
-
-
|
448
|
-
-
|
449
|
-
-
|
450
|
-
-
|
451
|
-
- "
|
452
|
-
-
|
453
|
-
-
|
454
|
-
-
|
455
|
-
-
|
456
|
-
-
|
457
|
-
-
|
458
|
-
- kitchen-
|
459
|
-
-
|
460
|
-
-
|
461
|
-
-
|
462
|
-
-
|
463
|
-
- kitchen
|
464
|
-
-
|
465
|
-
-
|
466
|
-
-
|
467
|
-
-
|
468
|
-
-
|
469
|
-
-
|
470
|
-
-
|
471
|
-
-
|
472
|
-
-
|
473
|
-
-
|
474
|
-
-
|
475
|
-
-
|
476
|
-
-
|
477
|
-
-
|
478
|
-
-
|
479
|
-
-
|
480
|
-
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
-
|
485
|
-
-
|
486
|
-
-
|
487
|
-
-
|
488
|
-
-
|
489
|
-
-
|
490
|
-
-
|
491
|
-
-
|
492
|
-
-
|
493
|
-
-
|
494
|
-
-
|
495
|
-
-
|
496
|
-
-
|
497
|
-
-
|
498
|
-
-
|
499
|
-
-
|
500
|
-
-
|
501
|
-
-
|
502
|
-
-
|
503
|
-
-
|
504
|
-
-
|
505
|
-
-
|
506
|
-
-
|
507
|
-
-
|
508
|
-
-
|
509
|
-
-
|
510
|
-
|
511
|
-
|
512
|
-
[
|
513
|
-
|
514
|
-
**
|
515
|
-
|
516
|
-
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
-
|
521
|
-
|
522
|
-
|
523
|
-
[
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
-
|
532
|
-
|
533
|
-
|
534
|
-
[
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
-
|
539
|
-
-
|
540
|
-
-
|
541
|
-
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
-
|
571
|
-
-
|
572
|
-
-
|
573
|
-
-
|
574
|
-
-
|
575
|
-
|
576
|
-
**
|
577
|
-
|
578
|
-
-
|
579
|
-
-
|
580
|
-
-
|
581
|
-
-
|
582
|
-
-
|
583
|
-
-
|
584
|
-
-
|
585
|
-
-
|
586
|
-
-
|
587
|
-
-
|
588
|
-
-
|
589
|
-
-
|
590
|
-
-
|
591
|
-
-
|
592
|
-
|
593
|
-
|
594
|
-
[
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
-
|
614
|
-
-
|
615
|
-
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
-
|
620
|
-
|
621
|
-
|
622
|
-
[
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
[
|
631
|
-
|
632
|
-
**Closed issues:**
|
633
|
-
|
634
|
-
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
-
|
659
|
-
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
-
|
672
|
-
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
-
|
680
|
-
|
681
|
-
|
682
|
-
[
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
-
|
688
|
-
-
|
689
|
-
-
|
690
|
-
-
|
691
|
-
-
|
692
|
-
-
|
693
|
-
- kitchen
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
-
|
701
|
-
-
|
702
|
-
-
|
703
|
-
-
|
704
|
-
-
|
705
|
-
-
|
706
|
-
-
|
707
|
-
-
|
708
|
-
-
|
709
|
-
-
|
710
|
-
-
|
711
|
-
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
-
|
719
|
-
-
|
720
|
-
-
|
721
|
-
-
|
722
|
-
-
|
723
|
-
-
|
724
|
-
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
-
|
730
|
-
-
|
731
|
-
-
|
732
|
-
-
|
733
|
-
-
|
734
|
-
-
|
735
|
-
|
736
|
-
|
737
|
-
[
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
-
|
742
|
-
-
|
743
|
-
-
|
744
|
-
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
-
|
749
|
-
-
|
750
|
-
-
|
751
|
-
-
|
752
|
-
|
753
|
-
|
754
|
-
[
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
-
|
762
|
-
-
|
763
|
-
-
|
764
|
-
-
|
765
|
-
-
|
766
|
-
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
-
|
774
|
-
-
|
775
|
-
-
|
776
|
-
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
-
|
781
|
-
-
|
782
|
-
-
|
783
|
-
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
**
|
792
|
-
|
793
|
-
- \
|
794
|
-
-
|
795
|
-
-
|
796
|
-
-
|
797
|
-
-
|
798
|
-
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
-
|
803
|
-
-
|
804
|
-
-
|
805
|
-
-
|
806
|
-
-
|
807
|
-
-
|
808
|
-
-
|
809
|
-
|
810
|
-
|
811
|
-
[
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
-
|
816
|
-
|
817
|
-
|
818
|
-
[
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
-
|
826
|
-
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
-
|
831
|
-
-
|
832
|
-
-
|
833
|
-
-
|
834
|
-
-
|
835
|
-
-
|
836
|
-
-
|
837
|
-
-
|
838
|
-
-
|
839
|
-
-
|
840
|
-
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
[
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
-
|
865
|
-
-
|
866
|
-
-
|
867
|
-
|
868
|
-
|
869
|
-
[
|
870
|
-
|
871
|
-
|
872
|
-
[
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
[
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
[
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
-
|
909
|
-
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
-
|
923
|
-
-
|
924
|
-
-
|
925
|
-
|
926
|
-
|
927
|
-
[
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
[
|
940
|
-
|
941
|
-
|
942
|
-
[
|
943
|
-
|
944
|
-
|
945
|
-
[
|
946
|
-
|
947
|
-
|
948
|
-
[
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
[
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
[
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
## [v0.
|
1025
|
-
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.
|
1026
|
-
|
1027
|
-
## [v0.
|
1028
|
-
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
## [v0.
|
1037
|
-
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
[
|
1048
|
-
|
1049
|
-
## [0.
|
1050
|
-
|
1051
|
-
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## [1.7.0](https://github.com/test-kitchen/test-kitchen/tree/1.7.0) (2016-04-01)
|
4
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.6.0...1.7.0)
|
5
|
+
|
6
|
+
**Implemented enhancements:**
|
7
|
+
|
8
|
+
- Travis and Appveyor should do actual kitchen create/converge/verify against PRs [\#980](https://github.com/test-kitchen/test-kitchen/pull/980) ([mwrock](https://github.com/mwrock))
|
9
|
+
- Use latest mixlib-install 1.0.2 [\#976](https://github.com/test-kitchen/test-kitchen/pull/976) ([mwrock](https://github.com/mwrock))
|
10
|
+
- Nominate Seth Thomas as lieutenant of Test Kitchen [\#975](https://github.com/test-kitchen/test-kitchen/pull/975) ([tyler-ball](https://github.com/tyler-ball))
|
11
|
+
- Create template for github issues [\#963](https://github.com/test-kitchen/test-kitchen/pull/963) ([smurawski](https://github.com/smurawski))
|
12
|
+
- Stop log\_level being copied from base config into provisioner config [\#950](https://github.com/test-kitchen/test-kitchen/pull/950) ([drrk](https://github.com/drrk))
|
13
|
+
|
14
|
+
**Fixed bugs:**
|
15
|
+
|
16
|
+
- Fix encrypted data bag uploads on windows [\#981](https://github.com/test-kitchen/test-kitchen/pull/981) ([mwrock](https://github.com/mwrock))
|
17
|
+
- Shell verifier should ensure env vars are strings [\#973](https://github.com/test-kitchen/test-kitchen/pull/973) ([jsok](https://github.com/jsok))
|
18
|
+
- Support Empty Proxy Settings [\#936](https://github.com/test-kitchen/test-kitchen/pull/936) ([tacchino](https://github.com/tacchino))
|
19
|
+
|
20
|
+
## [v1.6.0](https://github.com/test-kitchen/test-kitchen/tree/v1.6.0) (2016-02-29)
|
21
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.5.0...v1.6.0)
|
22
|
+
|
23
|
+
**Implemented enhancements:**
|
24
|
+
|
25
|
+
- Publicly expose winrm session [\#670](https://github.com/test-kitchen/test-kitchen/issues/670)
|
26
|
+
- Support Chef-DK [\#443](https://github.com/test-kitchen/test-kitchen/issues/443)
|
27
|
+
- allow non-busser verifier to work with legacy drivers [\#944](https://github.com/test-kitchen/test-kitchen/pull/944) ([chris-rock](https://github.com/chris-rock))
|
28
|
+
- use winrm transport as alternative detection method [\#928](https://github.com/test-kitchen/test-kitchen/pull/928) ([chris-rock](https://github.com/chris-rock))
|
29
|
+
- Make chef-config an optional dependency. [\#924](https://github.com/test-kitchen/test-kitchen/pull/924) ([coderanger](https://github.com/coderanger))
|
30
|
+
- Deprecating winrm-tansport and winrm-s gems [\#902](https://github.com/test-kitchen/test-kitchen/pull/902) ([mwrock](https://github.com/mwrock))
|
31
|
+
- Add Provisioner chef\_apply [\#623](https://github.com/test-kitchen/test-kitchen/pull/623) ([sawanoboly](https://github.com/sawanoboly))
|
32
|
+
|
33
|
+
**Fixed bugs:**
|
34
|
+
|
35
|
+
- encrypted\_data\_bag\_secret\_key\_path does not fully work with Chef 12.x [\#751](https://github.com/test-kitchen/test-kitchen/issues/751)
|
36
|
+
- Permission denied for Busser [\#749](https://github.com/test-kitchen/test-kitchen/issues/749)
|
37
|
+
- --force-formatter is passed to a version of chef-client that does not support it. [\#593](https://github.com/test-kitchen/test-kitchen/issues/593)
|
38
|
+
- http\(s\)\_proxy in test [\#533](https://github.com/test-kitchen/test-kitchen/issues/533)
|
39
|
+
- make rubocop glücklich [\#956](https://github.com/test-kitchen/test-kitchen/pull/956) ([chris-rock](https://github.com/chris-rock))
|
40
|
+
- properly initialize attributes for new negotiate [\#937](https://github.com/test-kitchen/test-kitchen/pull/937) ([chris-rock](https://github.com/chris-rock))
|
41
|
+
- Fix sudo dependency [\#932](https://github.com/test-kitchen/test-kitchen/pull/932) ([alexpop](https://github.com/alexpop))
|
42
|
+
|
43
|
+
**Closed issues:**
|
44
|
+
|
45
|
+
- key not found: "src\_md5" on kitchen converge [\#954](https://github.com/test-kitchen/test-kitchen/issues/954)
|
46
|
+
- Kitchen Converge Argument Error [\#940](https://github.com/test-kitchen/test-kitchen/issues/940)
|
47
|
+
- Intermittent key not found: "src\_md5" failures on windows nodes [\#926](https://github.com/test-kitchen/test-kitchen/issues/926)
|
48
|
+
- Chef Omnibus Windows Issues \(mixlib-install \#22 related\) [\#847](https://github.com/test-kitchen/test-kitchen/issues/847)
|
49
|
+
- Invoking Rake tasks with concurrency? [\#799](https://github.com/test-kitchen/test-kitchen/issues/799)
|
50
|
+
- msiexec was not successful [\#742](https://github.com/test-kitchen/test-kitchen/issues/742)
|
51
|
+
- not able to force chef-client in local model even my .kitchen.yml said so. [\#739](https://github.com/test-kitchen/test-kitchen/issues/739)
|
52
|
+
- TK attempts to download install.sh every converge [\#714](https://github.com/test-kitchen/test-kitchen/issues/714)
|
53
|
+
- kitchen not detecting vagrant plugin `kitchen-vagrant` [\#622](https://github.com/test-kitchen/test-kitchen/issues/622)
|
54
|
+
- Not correct URL for opensuse-13.1 platform [\#599](https://github.com/test-kitchen/test-kitchen/issues/599)
|
55
|
+
- Error 404 if if chef-solo-search is anywhere in the dep-tree [\#591](https://github.com/test-kitchen/test-kitchen/issues/591)
|
56
|
+
- Difference in tty behaviour between verify and converge [\#563](https://github.com/test-kitchen/test-kitchen/issues/563)
|
57
|
+
- recipe idempotence checking [\#561](https://github.com/test-kitchen/test-kitchen/issues/561)
|
58
|
+
- chefzero integration test with several docker containers [\#560](https://github.com/test-kitchen/test-kitchen/issues/560)
|
59
|
+
- AWS is not a class \(TypeError\) [\#552](https://github.com/test-kitchen/test-kitchen/issues/552)
|
60
|
+
- Test Kitchen setup issue [\#546](https://github.com/test-kitchen/test-kitchen/issues/546)
|
61
|
+
- Run serverspec tests in 'ssh mode' instead of 'inside the machine' [\#539](https://github.com/test-kitchen/test-kitchen/issues/539)
|
62
|
+
- Auto creating nodes [\#528](https://github.com/test-kitchen/test-kitchen/issues/528)
|
63
|
+
- enable multi YAML configuration support [\#514](https://github.com/test-kitchen/test-kitchen/issues/514)
|
64
|
+
- Allow for site-cookbooks when using Librarian [\#511](https://github.com/test-kitchen/test-kitchen/issues/511)
|
65
|
+
- Support for running \*\_spec.rb according to the hostname or private ipaddress of a node [\#494](https://github.com/test-kitchen/test-kitchen/issues/494)
|
66
|
+
- Local platform exclusions [\#493](https://github.com/test-kitchen/test-kitchen/issues/493)
|
67
|
+
- Don't reset locale in Kitchen::Driver::Base run\_command\(\) [\#485](https://github.com/test-kitchen/test-kitchen/issues/485)
|
68
|
+
- Intermittent 'kitchen test' failures [\#449](https://github.com/test-kitchen/test-kitchen/issues/449)
|
69
|
+
- shell-provisioner: lots of trouble with a noexec /tmp, failing workaround. [\#444](https://github.com/test-kitchen/test-kitchen/issues/444)
|
70
|
+
- Message: Failed to complete \#converge action: \[Permission denied [\#441](https://github.com/test-kitchen/test-kitchen/issues/441)
|
71
|
+
- Idea: enable chef-zero to run on another server than the converged node. [\#437](https://github.com/test-kitchen/test-kitchen/issues/437)
|
72
|
+
- Test Artifact Fetch Feature [\#434](https://github.com/test-kitchen/test-kitchen/issues/434)
|
73
|
+
- Loading installed gem dependencies with busser plugins [\#406](https://github.com/test-kitchen/test-kitchen/issues/406)
|
74
|
+
- Wrap mkdir in sudo\(\) for init\_command of chef\_base provisioner? [\#382](https://github.com/test-kitchen/test-kitchen/issues/382)
|
75
|
+
- Unable to override `test\_base\_path` in test-kitchen v1.2.1 [\#377](https://github.com/test-kitchen/test-kitchen/issues/377)
|
76
|
+
- Busser depends on Ruby \(ChefDK\) being available on target VM [\#347](https://github.com/test-kitchen/test-kitchen/issues/347)
|
77
|
+
- Option to turn off ssh forwarding x11? [\#338](https://github.com/test-kitchen/test-kitchen/issues/338)
|
78
|
+
|
79
|
+
**Merged pull requests:**
|
80
|
+
|
81
|
+
- Update release process to use github changelog generator [\#952](https://github.com/test-kitchen/test-kitchen/pull/952) ([jkeiser](https://github.com/jkeiser))
|
82
|
+
- The Net::SSH::Extensions were overwriting IO.select agressively, so we scaled this down some [\#935](https://github.com/test-kitchen/test-kitchen/pull/935) ([tyler-ball](https://github.com/tyler-ball))
|
83
|
+
- bypass execution policy when running powershell script files [\#925](https://github.com/test-kitchen/test-kitchen/pull/925) ([mwrock](https://github.com/mwrock))
|
84
|
+
|
85
|
+
## [v1.5.0](https://github.com/test-kitchen/test-kitchen/tree/v1.5.0) (2016-01-21)
|
86
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.5.0.rc.1...v1.5.0)
|
87
|
+
|
88
|
+
**Implemented enhancements:**
|
89
|
+
|
90
|
+
- Cluster support with Kitchen [\#905](https://github.com/test-kitchen/test-kitchen/issues/905)
|
91
|
+
- toggling attributes in kitchen.yml [\#884](https://github.com/test-kitchen/test-kitchen/issues/884)
|
92
|
+
- Allow for "double-converges" on specific test suites [\#162](https://github.com/test-kitchen/test-kitchen/issues/162)
|
93
|
+
- Added try/catch around main and set error action to stop [\#872](https://github.com/test-kitchen/test-kitchen/pull/872) ([mcallb](https://github.com/mcallb))
|
94
|
+
- Add hooks for instance cleanup before exit. [\#825](https://github.com/test-kitchen/test-kitchen/pull/825) ([coderanger](https://github.com/coderanger))
|
95
|
+
- add tests for empty or missing files [\#753](https://github.com/test-kitchen/test-kitchen/pull/753) ([miketheman](https://github.com/miketheman))
|
96
|
+
|
97
|
+
**Fixed bugs:**
|
98
|
+
|
99
|
+
- kitchen init will modify Rakefile and cause RuboCop issues [\#915](https://github.com/test-kitchen/test-kitchen/issues/915)
|
100
|
+
- \(Win2012r2\) Chef-client version to install seems to be ignored [\#882](https://github.com/test-kitchen/test-kitchen/issues/882)
|
101
|
+
- No Proxy Settings in Setup Phase [\#821](https://github.com/test-kitchen/test-kitchen/issues/821)
|
102
|
+
- It seems dna.json is being repeated [\#606](https://github.com/test-kitchen/test-kitchen/issues/606)
|
103
|
+
- The netssh 3.0 update returns a different error on connection timeout than 2.9.2 did, adding it to the retry list [\#912](https://github.com/test-kitchen/test-kitchen/pull/912) ([tyler-ball](https://github.com/tyler-ball))
|
104
|
+
- Fix handling of chunked ssh output. [\#824](https://github.com/test-kitchen/test-kitchen/pull/824) ([kingpong](https://github.com/kingpong))
|
105
|
+
- Set default log level even if you forget to add it to command line arg [\#697](https://github.com/test-kitchen/test-kitchen/pull/697) ([scotthain](https://github.com/scotthain))
|
106
|
+
- Use single quotes in Rake/Thorfile templates [\#499](https://github.com/test-kitchen/test-kitchen/pull/499) ([chr4](https://github.com/chr4))
|
107
|
+
|
108
|
+
**Closed issues:**
|
109
|
+
|
110
|
+
- Kubernetes driver [\#920](https://github.com/test-kitchen/test-kitchen/issues/920)
|
111
|
+
- Latest build in chef-dk failing in travis [\#918](https://github.com/test-kitchen/test-kitchen/issues/918)
|
112
|
+
- Unable to test Chef11 due to net-ssh [\#914](https://github.com/test-kitchen/test-kitchen/issues/914)
|
113
|
+
- kitchen driver help message incorrect [\#903](https://github.com/test-kitchen/test-kitchen/issues/903)
|
114
|
+
- No arg for -v option \(install.sh missing version number\) [\#900](https://github.com/test-kitchen/test-kitchen/issues/900)
|
115
|
+
- n help converge [\#890](https://github.com/test-kitchen/test-kitchen/issues/890)
|
116
|
+
- Chef Zero should be the default provisioner with init [\#889](https://github.com/test-kitchen/test-kitchen/issues/889)
|
117
|
+
- Windows tests broken - mkdir -p [\#886](https://github.com/test-kitchen/test-kitchen/issues/886)
|
118
|
+
- Berkshelf not managing dependencies [\#869](https://github.com/test-kitchen/test-kitchen/issues/869)
|
119
|
+
- Errno::ETIMEDOUT needed in winrm transport [\#855](https://github.com/test-kitchen/test-kitchen/issues/855)
|
120
|
+
- Appears to freeze on second converge. [\#850](https://github.com/test-kitchen/test-kitchen/issues/850)
|
121
|
+
- How to specify RubyGem source in .kitchen.yml for serverspec gems? [\#844](https://github.com/test-kitchen/test-kitchen/issues/844)
|
122
|
+
- f using serch to find self node [\#842](https://github.com/test-kitchen/test-kitchen/issues/842)
|
123
|
+
- Kitchen : reconverge with another user [\#840](https://github.com/test-kitchen/test-kitchen/issues/840)
|
124
|
+
- Can't transfer cookbook to Windows node using Chef Kitchen [\#818](https://github.com/test-kitchen/test-kitchen/issues/818)
|
125
|
+
- ability to change location of test/integration/default/ [\#814](https://github.com/test-kitchen/test-kitchen/issues/814)
|
126
|
+
- Kitchen destroy fails if VM manually removed [\#796](https://github.com/test-kitchen/test-kitchen/issues/796)
|
127
|
+
- reconverge with test-kitchen [\#780](https://github.com/test-kitchen/test-kitchen/issues/780)
|
128
|
+
- ssh breaks if vm restarts [\#769](https://github.com/test-kitchen/test-kitchen/issues/769)
|
129
|
+
- Transfer files more efficiently. [\#657](https://github.com/test-kitchen/test-kitchen/issues/657)
|
130
|
+
- Possibility to lock down versions of gems [\#515](https://github.com/test-kitchen/test-kitchen/issues/515)
|
131
|
+
- Missing vagrant-wrapper gem, update test-kitchen gem dependencies? [\#488](https://github.com/test-kitchen/test-kitchen/issues/488)
|
132
|
+
- : Message: SSH exited \(1\) for command: \[sh -c 'BUSSER\_ROOT="/tmp/busser" GEM\_HOME="/tmp/busser/gems" GEM\_PATH="/tmp/busser/gems" GEM\_CACHE="/tmp/busser/gems/cache" ; export BUSSER\_ROOT GEM\_HOME GEM\_PATH GEM\_CACHE; sudo -E /tmp/busser/bin/busser test'\] [\#411](https://github.com/test-kitchen/test-kitchen/issues/411)
|
133
|
+
- TestKitchen isn't using VAGRANT\_HOME path [\#398](https://github.com/test-kitchen/test-kitchen/issues/398)
|
134
|
+
- deal with travis [\#369](https://github.com/test-kitchen/test-kitchen/issues/369)
|
135
|
+
- use a default path rubygems, ruby and busser [\#362](https://github.com/test-kitchen/test-kitchen/issues/362)
|
136
|
+
- Bats tests are being executed even missing specification [\#360](https://github.com/test-kitchen/test-kitchen/issues/360)
|
137
|
+
- shell provisioner: Add a KITCHEN\_DIR environment variable [\#349](https://github.com/test-kitchen/test-kitchen/issues/349)
|
138
|
+
- Don't use generic descriptions for create, converge, setup, verify, and destroy [\#344](https://github.com/test-kitchen/test-kitchen/issues/344)
|
139
|
+
- Exception Handler does not always print out anything to stdout [\#281](https://github.com/test-kitchen/test-kitchen/issues/281)
|
140
|
+
|
141
|
+
**Merged pull requests:**
|
142
|
+
|
143
|
+
- 150 release prep [\#921](https://github.com/test-kitchen/test-kitchen/pull/921) ([tyler-ball](https://github.com/tyler-ball))
|
144
|
+
- Because net/ssh is no longer including timeout.rb, we need to so that Ruby doesn't think Timeout belongs to the TK class [\#919](https://github.com/test-kitchen/test-kitchen/pull/919) ([tyler-ball](https://github.com/tyler-ball))
|
145
|
+
- Diet travis [\#911](https://github.com/test-kitchen/test-kitchen/pull/911) ([cheeseplus](https://github.com/cheeseplus))
|
146
|
+
- Revert "fix driver help output" [\#910](https://github.com/test-kitchen/test-kitchen/pull/910) ([cheeseplus](https://github.com/cheeseplus))
|
147
|
+
- Updating to the latest release of net-ssh to consume https://github.com/net-ssh/net-ssh/pull/280 [\#908](https://github.com/test-kitchen/test-kitchen/pull/908) ([tyler-ball](https://github.com/tyler-ball))
|
148
|
+
- Set version to 1.5.0 [\#907](https://github.com/test-kitchen/test-kitchen/pull/907) ([jkeiser](https://github.com/jkeiser))
|
149
|
+
- Adding Maintainers file [\#906](https://github.com/test-kitchen/test-kitchen/pull/906) ([cheeseplus](https://github.com/cheeseplus))
|
150
|
+
- fix driver help output [\#904](https://github.com/test-kitchen/test-kitchen/pull/904) ([akissa](https://github.com/akissa))
|
151
|
+
- Add support for --profile-ruby [\#901](https://github.com/test-kitchen/test-kitchen/pull/901) ([martinb3](https://github.com/martinb3))
|
152
|
+
- fix chef install on non-windows [\#899](https://github.com/test-kitchen/test-kitchen/pull/899) ([mwrock](https://github.com/mwrock))
|
153
|
+
- typo: on != no [\#897](https://github.com/test-kitchen/test-kitchen/pull/897) ([miketheman](https://github.com/miketheman))
|
154
|
+
- Fix Windows Omnibus Install \#811 [\#864](https://github.com/test-kitchen/test-kitchen/pull/864) ([dissonanz](https://github.com/dissonanz))
|
155
|
+
- add cli option to set the test path [\#857](https://github.com/test-kitchen/test-kitchen/pull/857) ([chris-rock](https://github.com/chris-rock))
|
156
|
+
- WinRM connect \(with retry\) is failing on Windows [\#835](https://github.com/test-kitchen/test-kitchen/pull/835) ([Stift](https://github.com/Stift))
|
157
|
+
- update omnibus url to chef.io [\#827](https://github.com/test-kitchen/test-kitchen/pull/827) ([andrewelizondo](https://github.com/andrewelizondo))
|
158
|
+
- Add more options for WinRM [\#776](https://github.com/test-kitchen/test-kitchen/pull/776) ([smurawski](https://github.com/smurawski))
|
159
|
+
|
160
|
+
## [v1.5.0.rc.1](https://github.com/test-kitchen/test-kitchen/tree/v1.5.0.rc.1) (2015-12-29)
|
161
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.4.2...v1.5.0.rc.1)
|
162
|
+
|
163
|
+
**Implemented enhancements:**
|
164
|
+
|
165
|
+
- Drop Ruby 1.9 support [\#806](https://github.com/test-kitchen/test-kitchen/issues/806)
|
166
|
+
- fixed SuSe OS busser install [\#816](https://github.com/test-kitchen/test-kitchen/pull/816) ([Peuserik](https://github.com/Peuserik))
|
167
|
+
- Honor proxy env vars. [\#813](https://github.com/test-kitchen/test-kitchen/pull/813) ([mcquin](https://github.com/mcquin))
|
168
|
+
- Drop Ruby 1.9.3 from TravisCI build matrix [\#804](https://github.com/test-kitchen/test-kitchen/pull/804) ([thommay](https://github.com/thommay))
|
169
|
+
- Use mixlib-install [\#782](https://github.com/test-kitchen/test-kitchen/pull/782) ([thommay](https://github.com/thommay))
|
170
|
+
|
171
|
+
**Fixed bugs:**
|
172
|
+
|
173
|
+
- Make lazyhash enumerable [\#752](https://github.com/test-kitchen/test-kitchen/pull/752) ([caboteria](https://github.com/caboteria))
|
174
|
+
|
175
|
+
**Closed issues:**
|
176
|
+
|
177
|
+
- WinrRM "The device is not ready" [\#891](https://github.com/test-kitchen/test-kitchen/issues/891)
|
178
|
+
- kitchen starts linux machine with run level 2 by default [\#881](https://github.com/test-kitchen/test-kitchen/issues/881)
|
179
|
+
- Failing to parse .kitchen.yml with ChefDK 0.9.0 on Windows 7 [\#877](https://github.com/test-kitchen/test-kitchen/issues/877)
|
180
|
+
- policyfile\_zero doesn't use attributes in .kitchen.yml [\#870](https://github.com/test-kitchen/test-kitchen/issues/870)
|
181
|
+
- http proxy for "Installing Chef Omnibus" part? [\#867](https://github.com/test-kitchen/test-kitchen/issues/867)
|
182
|
+
- data\_munger, NoMethodError [\#865](https://github.com/test-kitchen/test-kitchen/issues/865)
|
183
|
+
- Waiting for SSH service on 127.0.0.1:2222, retrying in 3 seconds [\#862](https://github.com/test-kitchen/test-kitchen/issues/862)
|
184
|
+
- test-kitchen winrm w/proxies "The command line is too long." [\#854](https://github.com/test-kitchen/test-kitchen/issues/854)
|
185
|
+
- kitchen converge error [\#853](https://github.com/test-kitchen/test-kitchen/issues/853)
|
186
|
+
- /opt/chef/version-manifest.txt doesn't have proper version on line one, causing extra installations via Omnibus [\#846](https://github.com/test-kitchen/test-kitchen/issues/846)
|
187
|
+
- SSL read error when attempting to download Ubuntu 12.04 box for simple converge [\#834](https://github.com/test-kitchen/test-kitchen/issues/834)
|
188
|
+
- chefdk install issues [\#830](https://github.com/test-kitchen/test-kitchen/issues/830)
|
189
|
+
- Test Kitchen does not detect ports listening to localhost on Windows [\#828](https://github.com/test-kitchen/test-kitchen/issues/828)
|
190
|
+
- serverspec tests fail on windows [\#823](https://github.com/test-kitchen/test-kitchen/issues/823)
|
191
|
+
- Error in test kitchen exits shell [\#822](https://github.com/test-kitchen/test-kitchen/issues/822)
|
192
|
+
- Cannot use an http/https url pointing to a vagrant metadata json file for box\_url [\#819](https://github.com/test-kitchen/test-kitchen/issues/819)
|
193
|
+
- kitchen converge does not execute sleep command [\#812](https://github.com/test-kitchen/test-kitchen/issues/812)
|
194
|
+
- Serverspec `command` does not seem to be working... [\#773](https://github.com/test-kitchen/test-kitchen/issues/773)
|
195
|
+
- Chef-Solo cache deleted by WinRM transport [\#680](https://github.com/test-kitchen/test-kitchen/issues/680)
|
196
|
+
- Feature: 'vagrant reload' for kitchen [\#678](https://github.com/test-kitchen/test-kitchen/issues/678)
|
197
|
+
|
198
|
+
**Merged pull requests:**
|
199
|
+
|
200
|
+
- Adding the CHANGELOG and version.rb update for 1.5.0.rc.1 [\#898](https://github.com/test-kitchen/test-kitchen/pull/898) ([tyler-ball](https://github.com/tyler-ball))
|
201
|
+
- Fixing garbled output for chef\_zero provisioner [\#896](https://github.com/test-kitchen/test-kitchen/pull/896) ([someara](https://github.com/someara))
|
202
|
+
- Adding in ChefConfig support to enable loading proxy config from chef config files [\#895](https://github.com/test-kitchen/test-kitchen/pull/895) ([tyler-ball](https://github.com/tyler-ball))
|
203
|
+
- Adding the Travis config necessary to run the proxy\_tests [\#894](https://github.com/test-kitchen/test-kitchen/pull/894) ([tyler-ball](https://github.com/tyler-ball))
|
204
|
+
- Adding proxy tests to the Travis.yml [\#892](https://github.com/test-kitchen/test-kitchen/pull/892) ([tyler-ball](https://github.com/tyler-ball))
|
205
|
+
- Test suite maintenance, a.k.a. "Just Dots And Only Dots" [\#887](https://github.com/test-kitchen/test-kitchen/pull/887) ([fnichol](https://github.com/fnichol))
|
206
|
+
- Running the chef\_base provisioner install\_command via sudo, and command\_prefix support [\#885](https://github.com/test-kitchen/test-kitchen/pull/885) ([adamleff](https://github.com/adamleff))
|
207
|
+
- write install\_command to file and invoke on the instance to avoid command too long on windows [\#878](https://github.com/test-kitchen/test-kitchen/pull/878) ([mwrock](https://github.com/mwrock))
|
208
|
+
- Updates the gem path to install everything in /tmp/verifier [\#833](https://github.com/test-kitchen/test-kitchen/pull/833) ([scotthain](https://github.com/scotthain))
|
209
|
+
|
210
|
+
## [v1.4.2](https://github.com/test-kitchen/test-kitchen/tree/v1.4.2) (2015-08-03)
|
211
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.4.1...v1.4.2)
|
212
|
+
|
213
|
+
**Implemented enhancements:**
|
214
|
+
|
215
|
+
- silence some aruba warnings [\#770](https://github.com/test-kitchen/test-kitchen/pull/770) ([thommay](https://github.com/thommay))
|
216
|
+
- Fix monkey patching of IO.read [\#768](https://github.com/test-kitchen/test-kitchen/pull/768) ([375gnu](https://github.com/375gnu))
|
217
|
+
- Style/Lint Updates \(finstyle 1.5.0\) [\#762](https://github.com/test-kitchen/test-kitchen/pull/762) ([fnichol](https://github.com/fnichol))
|
218
|
+
- Adding appveyor config [\#689](https://github.com/test-kitchen/test-kitchen/pull/689) ([tyler-ball](https://github.com/tyler-ball))
|
219
|
+
|
220
|
+
**Fixed bugs:**
|
221
|
+
|
222
|
+
- Appveyor CI not configured correctly [\#803](https://github.com/test-kitchen/test-kitchen/issues/803)
|
223
|
+
- uninitialized constant Kitchen::Transport::Ssh::Connection::Timeout with net-ssh 2.10 [\#800](https://github.com/test-kitchen/test-kitchen/issues/800)
|
224
|
+
- Possible bug in Getting Started Guide: 'could not settle on compression\_client algorithm' [\#729](https://github.com/test-kitchen/test-kitchen/issues/729)
|
225
|
+
- Pinning net-ssh to 2.9 [\#805](https://github.com/test-kitchen/test-kitchen/pull/805) ([tyler-ball](https://github.com/tyler-ball))
|
226
|
+
- Rescue Errno::ETIMEDOUT instead of Timeout::Error on Establish [\#802](https://github.com/test-kitchen/test-kitchen/pull/802) ([Annih](https://github.com/Annih))
|
227
|
+
- Fix for net-ssh 2.10.0. [\#801](https://github.com/test-kitchen/test-kitchen/pull/801) ([coderanger](https://github.com/coderanger))
|
228
|
+
|
229
|
+
**Closed issues:**
|
230
|
+
|
231
|
+
- kitchen exec -c "ipconfig" fails on winrm \(any other command too\) with Winrm authorization error. [\#795](https://github.com/test-kitchen/test-kitchen/issues/795)
|
232
|
+
- Specifying Config File on CLI [\#792](https://github.com/test-kitchen/test-kitchen/issues/792)
|
233
|
+
- Converge fails on "Configuring netowrk adapters within the VM..." [\#789](https://github.com/test-kitchen/test-kitchen/issues/789)
|
234
|
+
- Converge only works on second try [\#785](https://github.com/test-kitchen/test-kitchen/issues/785)
|
235
|
+
- is\_running shows failing upstart process on Redhat [\#784](https://github.com/test-kitchen/test-kitchen/issues/784)
|
236
|
+
- Uninitialized constant Kitchen::Transport::Ssh::Connection::Timeout [\#775](https://github.com/test-kitchen/test-kitchen/issues/775)
|
237
|
+
- attempting to copy file from /var/folders that does not exist [\#774](https://github.com/test-kitchen/test-kitchen/issues/774)
|
238
|
+
- Can we copy .kitchen.yml into vagrant box? [\#763](https://github.com/test-kitchen/test-kitchen/issues/763)
|
239
|
+
- Ruby regular expression doesn't work in z-shell [\#760](https://github.com/test-kitchen/test-kitchen/issues/760)
|
240
|
+
- how to use a puppet apply shell script with test kitchen [\#719](https://github.com/test-kitchen/test-kitchen/issues/719)
|
241
|
+
- server.rb:283:in `block in start\_background': undefined method `start' for nil:NilClass \(NoMethodError\) [\#710](https://github.com/test-kitchen/test-kitchen/issues/710)
|
242
|
+
- Windows guests cannot use Gemfile with serverspec tests [\#616](https://github.com/test-kitchen/test-kitchen/issues/616)
|
243
|
+
- ssl\_ca\_path cannot be set in kitchen client.rb [\#594](https://github.com/test-kitchen/test-kitchen/issues/594)
|
244
|
+
- Test kitchen setup fails during busser serverspec plugin post install [\#461](https://github.com/test-kitchen/test-kitchen/issues/461)
|
245
|
+
|
246
|
+
**Merged pull requests:**
|
247
|
+
|
248
|
+
- Support specifying exact nightly/build [\#788](https://github.com/test-kitchen/test-kitchen/pull/788) ([jaym](https://github.com/jaym))
|
249
|
+
|
250
|
+
## [v1.4.1](https://github.com/test-kitchen/test-kitchen/tree/v1.4.1) (2015-06-18)
|
251
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.9.1...v1.4.1)
|
252
|
+
|
253
|
+
**Implemented enhancements:**
|
254
|
+
|
255
|
+
- 'kitchen init' should create a chefignore file [\#732](https://github.com/test-kitchen/test-kitchen/issues/732)
|
256
|
+
- generate a chefignore during init, fixes \#732 [\#737](https://github.com/test-kitchen/test-kitchen/pull/737) ([metadave](https://github.com/metadave))
|
257
|
+
- Fixing issues to support windows in kitchen-ec2, fixes \#688, fixes \#733 [\#736](https://github.com/test-kitchen/test-kitchen/pull/736) ([tyler-ball](https://github.com/tyler-ball))
|
258
|
+
|
259
|
+
**Fixed bugs:**
|
260
|
+
|
261
|
+
- Discovering more than 50 drivers fails a Cucumber scenario [\#733](https://github.com/test-kitchen/test-kitchen/issues/733)
|
262
|
+
- Transport defaults windows username to ./administrator [\#688](https://github.com/test-kitchen/test-kitchen/issues/688)
|
263
|
+
- Fixing issues to support windows in kitchen-ec2, fixes \\#688, fixes \\#733 [\#736](https://github.com/test-kitchen/test-kitchen/pull/736) ([tyler-ball](https://github.com/tyler-ball))
|
264
|
+
- Fix failing feature in `kitchen drvier discover` due to too many gems. [\#734](https://github.com/test-kitchen/test-kitchen/pull/734) ([fnichol](https://github.com/fnichol))
|
265
|
+
|
266
|
+
**Closed issues:**
|
267
|
+
|
268
|
+
- SSH race condition with RHEL/CentOS instances in EC2 [\#735](https://github.com/test-kitchen/test-kitchen/issues/735)
|
269
|
+
- Nested upload folders [\#725](https://github.com/test-kitchen/test-kitchen/issues/725)
|
270
|
+
- Intermittent "No such file or directory" on Windows converge [\#699](https://github.com/test-kitchen/test-kitchen/issues/699)
|
271
|
+
- "kitchen verify" output on windows is getting butchered [\#486](https://github.com/test-kitchen/test-kitchen/issues/486)
|
272
|
+
|
273
|
+
**Merged pull requests:**
|
274
|
+
|
275
|
+
- Updating CHANGELOG and version for 1.4.1 release [\#748](https://github.com/test-kitchen/test-kitchen/pull/748) ([tyler-ball](https://github.com/tyler-ball))
|
276
|
+
- Revert "Use a relative name for the connection class." [\#731](https://github.com/test-kitchen/test-kitchen/pull/731) ([metadave](https://github.com/metadave))
|
277
|
+
- Use a relative name for the connection class. [\#726](https://github.com/test-kitchen/test-kitchen/pull/726) ([coderanger](https://github.com/coderanger))
|
278
|
+
|
279
|
+
## [v0.9.1](https://github.com/test-kitchen/test-kitchen/tree/v0.9.1) (2015-05-21)
|
280
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.9.0...v0.9.1)
|
281
|
+
|
282
|
+
**Closed issues:**
|
283
|
+
|
284
|
+
- kitchen exec fails to show text content without linebreak [\#717](https://github.com/test-kitchen/test-kitchen/issues/717)
|
285
|
+
- How to copy files from box to host machine? [\#716](https://github.com/test-kitchen/test-kitchen/issues/716)
|
286
|
+
|
287
|
+
## [v0.9.0](https://github.com/test-kitchen/test-kitchen/tree/v0.9.0) (2015-05-19)
|
288
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.4.0...v0.9.0)
|
289
|
+
|
290
|
+
**Implemented enhancements:**
|
291
|
+
|
292
|
+
- platform centos-6.4, centos-6.5 cannot be downloaded [\#663](https://github.com/test-kitchen/test-kitchen/issues/663)
|
293
|
+
- Update platform version defaults in `kitchen init` command. [\#711](https://github.com/test-kitchen/test-kitchen/pull/711) ([fnichol](https://github.com/fnichol))
|
294
|
+
- don't prompt for passwords when using public keys [\#704](https://github.com/test-kitchen/test-kitchen/pull/704) ([caboteria](https://github.com/caboteria))
|
295
|
+
|
296
|
+
**Fixed bugs:**
|
297
|
+
|
298
|
+
- default-centos-64 is not available [\#707](https://github.com/test-kitchen/test-kitchen/issues/707)
|
299
|
+
|
300
|
+
**Closed issues:**
|
301
|
+
|
302
|
+
- Exception on kitchen create: Windows Server 2012 R2 box [\#696](https://github.com/test-kitchen/test-kitchen/issues/696)
|
303
|
+
- Unable to run kitchen converge: Server 2012 R2 - WinRM [\#695](https://github.com/test-kitchen/test-kitchen/issues/695)
|
304
|
+
- Windows guest doesn't update serverspec files [\#693](https://github.com/test-kitchen/test-kitchen/issues/693)
|
305
|
+
- Busser sync is a bit slow [\#639](https://github.com/test-kitchen/test-kitchen/issues/639)
|
306
|
+
- client key is invalid or not found at: 'C:/chef/client.pem' [\#636](https://github.com/test-kitchen/test-kitchen/issues/636)
|
307
|
+
- Don't print extraneous equals signs to logs "================" [\#586](https://github.com/test-kitchen/test-kitchen/issues/586)
|
308
|
+
|
309
|
+
**Merged pull requests:**
|
310
|
+
|
311
|
+
- Bump to centos-6.6, fix \#663. [\#665](https://github.com/test-kitchen/test-kitchen/pull/665) ([lloydde](https://github.com/lloydde))
|
312
|
+
|
313
|
+
## [v1.4.0](https://github.com/test-kitchen/test-kitchen/tree/v1.4.0) (2015-04-28)
|
314
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.4.0.rc.1...v1.4.0)
|
315
|
+
|
316
|
+
**Implemented enhancements:**
|
317
|
+
|
318
|
+
- Add Multi-provisioner support [\#36](https://github.com/test-kitchen/test-kitchen/issues/36)
|
319
|
+
|
320
|
+
**Fixed bugs:**
|
321
|
+
|
322
|
+
- kitchen verify not updating tests on Windows guests [\#684](https://github.com/test-kitchen/test-kitchen/issues/684)
|
323
|
+
|
324
|
+
**Closed issues:**
|
325
|
+
|
326
|
+
- includes and excludes directives not working in 1.4.0.rc.1 [\#690](https://github.com/test-kitchen/test-kitchen/issues/690)
|
327
|
+
- avoid forwarding port 22 if a Windows guest? [\#676](https://github.com/test-kitchen/test-kitchen/issues/676)
|
328
|
+
- kitchen verify fails on opscode centos-6.6 vagrant box [\#664](https://github.com/test-kitchen/test-kitchen/issues/664)
|
329
|
+
- test-kitchen/lib/kitchen/provisioner/chef/powershell\_shell.rb expand\_version fails if behind proxy and http\_proxy is set [\#638](https://github.com/test-kitchen/test-kitchen/issues/638)
|
330
|
+
- kitchen hangs on converge [\#624](https://github.com/test-kitchen/test-kitchen/issues/624)
|
331
|
+
- help info for "kitchen driver incorrect" [\#613](https://github.com/test-kitchen/test-kitchen/issues/613)
|
332
|
+
- Detect and warn users about Powershell bug KB2842230 that causes Out of Memory Errors [\#604](https://github.com/test-kitchen/test-kitchen/issues/604)
|
333
|
+
- Need solution/best practice for installing gem in VM chef-client [\#495](https://github.com/test-kitchen/test-kitchen/issues/495)
|
334
|
+
- Multi-project chaining of shared CLI subcommands [\#47](https://github.com/test-kitchen/test-kitchen/issues/47)
|
335
|
+
- Create kitchen driver for Razor [\#45](https://github.com/test-kitchen/test-kitchen/issues/45)
|
336
|
+
|
337
|
+
## [v1.4.0.rc.1](https://github.com/test-kitchen/test-kitchen/tree/v1.4.0.rc.1) (2015-03-29)
|
338
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.4.0.beta.2...v1.4.0.rc.1)
|
339
|
+
|
340
|
+
**Fixed bugs:**
|
341
|
+
|
342
|
+
- Windows 7 fails with 'maximum number of 15 concurrent operations' on second converge [\#656](https://github.com/test-kitchen/test-kitchen/issues/656)
|
343
|
+
- second converge fails with encrypted data bags [\#611](https://github.com/test-kitchen/test-kitchen/issues/611)
|
344
|
+
- Support relative paths to SSH keys [\#389](https://github.com/test-kitchen/test-kitchen/issues/389)
|
345
|
+
- Use of sudo -E breaks compatibility with CentOS 5 [\#307](https://github.com/test-kitchen/test-kitchen/issues/307)
|
346
|
+
- re-adds PATH [\#666](https://github.com/test-kitchen/test-kitchen/pull/666) ([curiositycasualty](https://github.com/curiositycasualty))
|
347
|
+
|
348
|
+
**Closed issues:**
|
349
|
+
|
350
|
+
- Wrong permissions in /tmp/verifier/gems/\[bin/cache/gems\] \(?\) / broken caching with 1.4.0.beta.2 [\#671](https://github.com/test-kitchen/test-kitchen/issues/671)
|
351
|
+
- ChefZero,ChefSolo \#install\_command should bomb out when no downloaders are found [\#654](https://github.com/test-kitchen/test-kitchen/issues/654)
|
352
|
+
- Files not available in temp/kitchen - Windows Guest [\#642](https://github.com/test-kitchen/test-kitchen/issues/642)
|
353
|
+
- winrm: Use the rdp\_uri instead of trying to call specific application [\#595](https://github.com/test-kitchen/test-kitchen/issues/595)
|
354
|
+
- How to pass a symbol instead of string in .kitchen.yml [\#556](https://github.com/test-kitchen/test-kitchen/issues/556)
|
355
|
+
- Converge fails deleting non-cookbook files on Windows synced folder due to max path length [\#522](https://github.com/test-kitchen/test-kitchen/issues/522)
|
356
|
+
- Create kitchen driver for Solaris/illumos Zones [\#44](https://github.com/test-kitchen/test-kitchen/issues/44)
|
357
|
+
|
358
|
+
**Merged pull requests:**
|
359
|
+
|
360
|
+
- \[Transport::Ssh\] Add default :compression & :compression\_level attrs. [\#675](https://github.com/test-kitchen/test-kitchen/pull/675) ([fnichol](https://github.com/fnichol))
|
361
|
+
- \[Transport::SSH\] Expand path for `:ssh\_key` if provided in kitchen.yml. [\#674](https://github.com/test-kitchen/test-kitchen/pull/674) ([fnichol](https://github.com/fnichol))
|
362
|
+
- \[ChefSolo,ChefZero\] Ensure that secret key is deleted before converge. [\#673](https://github.com/test-kitchen/test-kitchen/pull/673) ([fnichol](https://github.com/fnichol))
|
363
|
+
- \[Transport::Winrm\] Extract dependant code to winrm-transport gem. [\#672](https://github.com/test-kitchen/test-kitchen/pull/672) ([fnichol](https://github.com/fnichol))
|
364
|
+
- \[CommandExecutor\] Move ObjectSpace finalizer logic into executor. [\#669](https://github.com/test-kitchen/test-kitchen/pull/669) ([fnichol](https://github.com/fnichol))
|
365
|
+
- Add `plugin\_version` support for all plugin types. [\#668](https://github.com/test-kitchen/test-kitchen/pull/668) ([fnichol](https://github.com/fnichol))
|
366
|
+
- Add plugin diagnostics, exposed via `kitchen diagnose`. [\#667](https://github.com/test-kitchen/test-kitchen/pull/667) ([fnichol](https://github.com/fnichol))
|
367
|
+
- Updated for sh compatibility based on install.sh code [\#658](https://github.com/test-kitchen/test-kitchen/pull/658) ([scotthain](https://github.com/scotthain))
|
368
|
+
- \[ChefZero\] Consider `:require\_chef\_omnibus = 11` to be modern version. [\#653](https://github.com/test-kitchen/test-kitchen/pull/653) ([fnichol](https://github.com/fnichol))
|
369
|
+
- \[ChefZero,ChefSolo\] Support symbol values in solo.rb & client.rb. [\#652](https://github.com/test-kitchen/test-kitchen/pull/652) ([fnichol](https://github.com/fnichol))
|
370
|
+
- Add :sudo\_command to Provisioners, Verifiers, & ShellOut. [\#651](https://github.com/test-kitchen/test-kitchen/pull/651) ([fnichol](https://github.com/fnichol))
|
371
|
+
|
372
|
+
## [v1.4.0.beta.2](https://github.com/test-kitchen/test-kitchen/tree/v1.4.0.beta.2) (2015-03-25)
|
373
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.4.0.beta.1...v1.4.0.beta.2)
|
374
|
+
|
375
|
+
**Merged pull requests:**
|
376
|
+
|
377
|
+
- \[Provisioner::Shell\] Add HTTP proxy support to commands. [\#649](https://github.com/test-kitchen/test-kitchen/pull/649) ([fnichol](https://github.com/fnichol))
|
378
|
+
- \[Transport::Winrm\] Truncate destination file for overwriting. [\#648](https://github.com/test-kitchen/test-kitchen/pull/648) ([fnichol](https://github.com/fnichol))
|
379
|
+
|
380
|
+
## [v1.4.0.beta.1](https://github.com/test-kitchen/test-kitchen/tree/v1.4.0.beta.1) (2015-03-24)
|
381
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.3.1...v1.4.0.beta.1)
|
382
|
+
|
383
|
+
**Closed issues:**
|
384
|
+
|
385
|
+
- RubyZip is corrupting zip files on windows hosts [\#643](https://github.com/test-kitchen/test-kitchen/issues/643)
|
386
|
+
- windows guest support broke recntly [\#641](https://github.com/test-kitchen/test-kitchen/issues/641)
|
387
|
+
- Unable to parse WinRM response, missing attribute quote [\#635](https://github.com/test-kitchen/test-kitchen/issues/635)
|
388
|
+
- Chef DownloadFile fails on Powershell 2.0/win 2003 [\#631](https://github.com/test-kitchen/test-kitchen/issues/631)
|
389
|
+
- how can i pull the data from chef server policy environment override attributes [\#630](https://github.com/test-kitchen/test-kitchen/issues/630)
|
390
|
+
- windows-guest-support branch does not download chef client rc version [\#626](https://github.com/test-kitchen/test-kitchen/issues/626)
|
391
|
+
- Zip Transport fails on Windows Server Core [\#625](https://github.com/test-kitchen/test-kitchen/issues/625)
|
392
|
+
- call capistrano deployment? [\#617](https://github.com/test-kitchen/test-kitchen/issues/617)
|
393
|
+
- PR\#589 Causes chef-client installations to report as failed when they have actually succeeded [\#601](https://github.com/test-kitchen/test-kitchen/issues/601)
|
394
|
+
- Kitchen converge on Windows guests takes two tries [\#596](https://github.com/test-kitchen/test-kitchen/issues/596)
|
395
|
+
- Need support for keepalive for ssh connections [\#585](https://github.com/test-kitchen/test-kitchen/issues/585)
|
396
|
+
- windows-guest-support: wrong path for chef-client [\#565](https://github.com/test-kitchen/test-kitchen/issues/565)
|
397
|
+
- How to setup hostname of vm with .kitchen.yml ? [\#465](https://github.com/test-kitchen/test-kitchen/issues/465)
|
398
|
+
- Can test-kitchen work with mingw32 [\#435](https://github.com/test-kitchen/test-kitchen/issues/435)
|
399
|
+
- Filtering non-cookbook files leave empty directories that are still scp-ed [\#429](https://github.com/test-kitchen/test-kitchen/issues/429)
|
400
|
+
- prepare\_chef\_home doesn't work on Windows guests [\#158](https://github.com/test-kitchen/test-kitchen/issues/158)
|
401
|
+
- Add an option to clean up log files generated [\#85](https://github.com/test-kitchen/test-kitchen/issues/85)
|
402
|
+
|
403
|
+
**Merged pull requests:**
|
404
|
+
|
405
|
+
- Further backwards compatibility effort [\#646](https://github.com/test-kitchen/test-kitchen/pull/646) ([fnichol](https://github.com/fnichol))
|
406
|
+
- open zip file in binary mode to avoid corrupting zip files on windows [\#644](https://github.com/test-kitchen/test-kitchen/pull/644) ([mwrock](https://github.com/mwrock))
|
407
|
+
- Test Kitchen 1.4 Refactoring \(SSH/WinRM Transports, Windows Support, etc\) [\#640](https://github.com/test-kitchen/test-kitchen/pull/640) ([fnichol](https://github.com/fnichol))
|
408
|
+
- \[WIP\] Test Kitchen 1.4 Refactoring \(SSH/WinRM Transports, Windows Support, etc\) [\#637](https://github.com/test-kitchen/test-kitchen/pull/637) ([fnichol](https://github.com/fnichol))
|
409
|
+
- Fixing bad default setting - if ENV is not set we are accidently setting log\_level to nil for whole run [\#633](https://github.com/test-kitchen/test-kitchen/pull/633) ([tyler-ball](https://github.com/tyler-ball))
|
410
|
+
- Fixes Chef Client installation on Windows Guests [\#615](https://github.com/test-kitchen/test-kitchen/pull/615) ([robcoward](https://github.com/robcoward))
|
411
|
+
- Pinning winrm to newer version to support latest httpclient [\#612](https://github.com/test-kitchen/test-kitchen/pull/612) ([tyler-ball](https://github.com/tyler-ball))
|
412
|
+
- Windows2003 guest fix [\#610](https://github.com/test-kitchen/test-kitchen/pull/610) ([GolubevV](https://github.com/GolubevV))
|
413
|
+
- Proxy Implementation for Windows Chef Omnibus [\#603](https://github.com/test-kitchen/test-kitchen/pull/603) ([afiune](https://github.com/afiune))
|
414
|
+
- Adding --log-overwrite CLI option [\#600](https://github.com/test-kitchen/test-kitchen/pull/600) ([tyler-ball](https://github.com/tyler-ball))
|
415
|
+
- Powershell no longer re-installs chef if version constraint is only major version [\#590](https://github.com/test-kitchen/test-kitchen/pull/590) ([tyler-ball](https://github.com/tyler-ball))
|
416
|
+
- Check the exit code of msiexec [\#589](https://github.com/test-kitchen/test-kitchen/pull/589) ([jaym](https://github.com/jaym))
|
417
|
+
- Change getchef.com chef.io in Powershell provisioner [\#588](https://github.com/test-kitchen/test-kitchen/pull/588) ([jaym](https://github.com/jaym))
|
418
|
+
- winrm transport should use a single \(or minimal\) shell when transferring files. transfer via a zip file to optimize round trips [\#562](https://github.com/test-kitchen/test-kitchen/pull/562) ([mwrock](https://github.com/mwrock))
|
419
|
+
- Stop uploading empty directories [\#530](https://github.com/test-kitchen/test-kitchen/pull/530) ([whiteley](https://github.com/whiteley))
|
420
|
+
|
421
|
+
## [v1.3.1](https://github.com/test-kitchen/test-kitchen/tree/v1.3.1) (2015-01-16)
|
422
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.3.0...v1.3.1)
|
423
|
+
|
424
|
+
**Closed issues:**
|
425
|
+
|
426
|
+
- chef\_omnibus\_install\_options not appended properly [\#580](https://github.com/test-kitchen/test-kitchen/issues/580)
|
427
|
+
- 1.3.0 contains a breaking change but the major version was not incremented [\#578](https://github.com/test-kitchen/test-kitchen/issues/578)
|
428
|
+
|
429
|
+
**Merged pull requests:**
|
430
|
+
|
431
|
+
- Fix omnibus install argument passing bug with missing space character. [\#581](https://github.com/test-kitchen/test-kitchen/pull/581) ([fnichol](https://github.com/fnichol))
|
432
|
+
- update README.md badges to use SVG [\#579](https://github.com/test-kitchen/test-kitchen/pull/579) ([miketheman](https://github.com/miketheman))
|
433
|
+
|
434
|
+
## [v1.3.0](https://github.com/test-kitchen/test-kitchen/tree/v1.3.0) (2015-01-15)
|
435
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.2.1...v1.3.0)
|
436
|
+
|
437
|
+
**Fixed bugs:**
|
438
|
+
|
439
|
+
- a way to override ~/.kitchen/config.yml [\#524](https://github.com/test-kitchen/test-kitchen/issues/524)
|
440
|
+
|
441
|
+
**Closed issues:**
|
442
|
+
|
443
|
+
- Bundler fails to install test-kitchen alongside chef 12.0.3 [\#577](https://github.com/test-kitchen/test-kitchen/issues/577)
|
444
|
+
- Conflicts with chef 12 [\#570](https://github.com/test-kitchen/test-kitchen/issues/570)
|
445
|
+
- Test Kitchen/Chef in non networked mode [\#569](https://github.com/test-kitchen/test-kitchen/issues/569)
|
446
|
+
- http://kitchen.ci is down [\#551](https://github.com/test-kitchen/test-kitchen/issues/551)
|
447
|
+
- chef-solo causes converge to fail after installation of rvm system wide [\#548](https://github.com/test-kitchen/test-kitchen/issues/548)
|
448
|
+
- Failed to complete \#converge action: \[Berkshelf::UnknownCompressionType\] [\#547](https://github.com/test-kitchen/test-kitchen/issues/547)
|
449
|
+
- busser not found [\#545](https://github.com/test-kitchen/test-kitchen/issues/545)
|
450
|
+
- DNS Lookups [\#542](https://github.com/test-kitchen/test-kitchen/issues/542)
|
451
|
+
- "ERROR: No such file or directory" on converge [\#537](https://github.com/test-kitchen/test-kitchen/issues/537)
|
452
|
+
- Kitchen fail if cookbook named certain way [\#536](https://github.com/test-kitchen/test-kitchen/issues/536)
|
453
|
+
- Integrate with Packer \(so passing 'builds' can be built into boxes, then saved\) [\#535](https://github.com/test-kitchen/test-kitchen/issues/535)
|
454
|
+
- kitchen command shows also the docker usage. [\#532](https://github.com/test-kitchen/test-kitchen/issues/532)
|
455
|
+
- Question: Chef install by default [\#523](https://github.com/test-kitchen/test-kitchen/issues/523)
|
456
|
+
- Test Kitchen not seeing cookbooks? [\#517](https://github.com/test-kitchen/test-kitchen/issues/517)
|
457
|
+
- Serverspec exit code 1 without error message [\#513](https://github.com/test-kitchen/test-kitchen/issues/513)
|
458
|
+
- kitchen-ssh : SSH EXITED error. [\#509](https://github.com/test-kitchen/test-kitchen/issues/509)
|
459
|
+
- difference between /tmp/kitchen/cache/cookbooks and /tmp/kitchen/cookbooks? [\#508](https://github.com/test-kitchen/test-kitchen/issues/508)
|
460
|
+
- Running two kitchen converges parallely? [\#506](https://github.com/test-kitchen/test-kitchen/issues/506)
|
461
|
+
- Failed to complete \#create action: \[undefined local variable or method `default\_port' for \#\<Kitchen::Driver::Vagrant [\#505](https://github.com/test-kitchen/test-kitchen/issues/505)
|
462
|
+
- Environment problems again [\#502](https://github.com/test-kitchen/test-kitchen/issues/502)
|
463
|
+
- Test-kitchen 1.2.1 and Berkshelf version [\#492](https://github.com/test-kitchen/test-kitchen/issues/492)
|
464
|
+
- Putting a / in platform.version in .kitchen.yml has weird results [\#483](https://github.com/test-kitchen/test-kitchen/issues/483)
|
465
|
+
- Chef Runs fail at the end with chef-solo [\#472](https://github.com/test-kitchen/test-kitchen/issues/472)
|
466
|
+
- Berkshelf::NoSolutionError [\#471](https://github.com/test-kitchen/test-kitchen/issues/471)
|
467
|
+
- Warning: Connection timeout [\#464](https://github.com/test-kitchen/test-kitchen/issues/464)
|
468
|
+
- Add ability to run multiple drivers in .kitchen.yml [\#459](https://github.com/test-kitchen/test-kitchen/issues/459)
|
469
|
+
- Accidentally installed vagrant in Gemfile, now test-kitchen is broken [\#455](https://github.com/test-kitchen/test-kitchen/issues/455)
|
470
|
+
- During converge on Win 8.1 x64: Creation of file mapping failed with error: 998 [\#448](https://github.com/test-kitchen/test-kitchen/issues/448)
|
471
|
+
- undefined method `full\_name' for nil:NilClass \(NoMethodError \) [\#445](https://github.com/test-kitchen/test-kitchen/issues/445)
|
472
|
+
- Use vagrant-cachier, if available, for omnibus [\#440](https://github.com/test-kitchen/test-kitchen/issues/440)
|
473
|
+
- Documentation on kitchen functions [\#439](https://github.com/test-kitchen/test-kitchen/issues/439)
|
474
|
+
- Second converge run choses wrong chef version [\#436](https://github.com/test-kitchen/test-kitchen/issues/436)
|
475
|
+
- Duplicate output with chef-solo provisioner [\#433](https://github.com/test-kitchen/test-kitchen/issues/433)
|
476
|
+
- Vagrant 1.6 support [\#432](https://github.com/test-kitchen/test-kitchen/issues/432)
|
477
|
+
- Zero byte state files cause undefined method errors [\#430](https://github.com/test-kitchen/test-kitchen/issues/430)
|
478
|
+
- Make SSH retries and sleep times configurable [\#422](https://github.com/test-kitchen/test-kitchen/issues/422)
|
479
|
+
- Failed to complete \#converge action: \[Berkshelf::BerksfileReadError\] [\#419](https://github.com/test-kitchen/test-kitchen/issues/419)
|
480
|
+
- Add Vagrant share feature? [\#413](https://github.com/test-kitchen/test-kitchen/issues/413)
|
481
|
+
- Unable to run test kitchen with datadog agent [\#412](https://github.com/test-kitchen/test-kitchen/issues/412)
|
482
|
+
- not finding \*.rb roles [\#408](https://github.com/test-kitchen/test-kitchen/issues/408)
|
483
|
+
- "I cannot read /tmp/kitchen/client.pem, which you told me to use to sign requests!" [\#407](https://github.com/test-kitchen/test-kitchen/issues/407)
|
484
|
+
- Support multiple provisions to run in sequence [\#404](https://github.com/test-kitchen/test-kitchen/issues/404)
|
485
|
+
- Step 1 in create fails on Ubuntu 12.04, trying to run "yum" [\#403](https://github.com/test-kitchen/test-kitchen/issues/403)
|
486
|
+
- Bats tests failing when they shouldn't [\#402](https://github.com/test-kitchen/test-kitchen/issues/402)
|
487
|
+
- Kitchen ShellOut to Vagrant with Bundler 1.6.0 install fails [\#401](https://github.com/test-kitchen/test-kitchen/issues/401)
|
488
|
+
- \[undefined method `each' for nil:NilClass\] [\#395](https://github.com/test-kitchen/test-kitchen/issues/395)
|
489
|
+
- provide requirements to create a linux box with test-kitchen support [\#392](https://github.com/test-kitchen/test-kitchen/issues/392)
|
490
|
+
- kitchen-puppet gem [\#391](https://github.com/test-kitchen/test-kitchen/issues/391)
|
491
|
+
- Verify hits wrong instance [\#390](https://github.com/test-kitchen/test-kitchen/issues/390)
|
492
|
+
- Test Kitchen Gotchas [\#388](https://github.com/test-kitchen/test-kitchen/issues/388)
|
493
|
+
- require\_chef\_omnibus: latest reinstalls chef on each converge [\#387](https://github.com/test-kitchen/test-kitchen/issues/387)
|
494
|
+
- Cookbooks missing when run from one host, but not another [\#386](https://github.com/test-kitchen/test-kitchen/issues/386)
|
495
|
+
- kitchen init throws cannot load win32/process & windows/handle on Windows 8.1 x64 [\#385](https://github.com/test-kitchen/test-kitchen/issues/385)
|
496
|
+
- Getting a Berkshelf::BerksfileReadError error when trying to converge [\#383](https://github.com/test-kitchen/test-kitchen/issues/383)
|
497
|
+
- `kitchen list` failing [\#379](https://github.com/test-kitchen/test-kitchen/issues/379)
|
498
|
+
- Allow the use of instance index as well as name for commands [\#378](https://github.com/test-kitchen/test-kitchen/issues/378)
|
499
|
+
- Attributes not changing between Test Suites [\#376](https://github.com/test-kitchen/test-kitchen/issues/376)
|
500
|
+
- "kitchen login" to an uncreated box throws 'ssh' help [\#375](https://github.com/test-kitchen/test-kitchen/issues/375)
|
501
|
+
- kitchen list slow when Berksfile in chef repo [\#371](https://github.com/test-kitchen/test-kitchen/issues/371)
|
502
|
+
- include vagrant-box requirements on README [\#365](https://github.com/test-kitchen/test-kitchen/issues/365)
|
503
|
+
- Address in use issue with Chef Zero support doesn't allow repeated converges [\#361](https://github.com/test-kitchen/test-kitchen/issues/361)
|
504
|
+
- Weird logging output/colors [\#352](https://github.com/test-kitchen/test-kitchen/issues/352)
|
505
|
+
- Create a driver for opennebula... [\#351](https://github.com/test-kitchen/test-kitchen/issues/351)
|
506
|
+
- Test-Kitchen with Berks failing [\#348](https://github.com/test-kitchen/test-kitchen/issues/348)
|
507
|
+
- Need to fix .kitchen.local.yml behavior [\#343](https://github.com/test-kitchen/test-kitchen/issues/343)
|
508
|
+
- No way to disable colors [\#330](https://github.com/test-kitchen/test-kitchen/issues/330)
|
509
|
+
- Create busser for testing Window's machines with DSC [\#239](https://github.com/test-kitchen/test-kitchen/issues/239)
|
510
|
+
- Support the equivalent of 'halt' on providers that handle it [\#144](https://github.com/test-kitchen/test-kitchen/issues/144)
|
511
|
+
- SSH-based drivers: SCP a single cookbook tarball to test instance [\#35](https://github.com/test-kitchen/test-kitchen/issues/35)
|
512
|
+
- Support an option to add minitest-handler to run list [\#22](https://github.com/test-kitchen/test-kitchen/issues/22)
|
513
|
+
|
514
|
+
**Merged pull requests:**
|
515
|
+
|
516
|
+
- Pass the template filename down to Erb for \_\_FILE\_\_ et al [\#567](https://github.com/test-kitchen/test-kitchen/pull/567) ([coderanger](https://github.com/coderanger))
|
517
|
+
- \[Breaking\] Correct global YAML merge order to lowest \(from highest\). [\#555](https://github.com/test-kitchen/test-kitchen/pull/555) ([fnichol](https://github.com/fnichol))
|
518
|
+
- Replace `/` with `-` in Instance names. [\#554](https://github.com/test-kitchen/test-kitchen/pull/554) ([fnichol](https://github.com/fnichol))
|
519
|
+
- Merge Salim & Jay's transport work, plus Chris's spec fixes [\#553](https://github.com/test-kitchen/test-kitchen/pull/553) ([randomcamel](https://github.com/randomcamel))
|
520
|
+
- Allow to set chef-zero-host when using the Chef Zero provider [\#549](https://github.com/test-kitchen/test-kitchen/pull/549) ([jochenseeber](https://github.com/jochenseeber))
|
521
|
+
- bump mixlib-shellout deps [\#531](https://github.com/test-kitchen/test-kitchen/pull/531) ([lamont-granquist](https://github.com/lamont-granquist))
|
522
|
+
- Auth failure retry [\#527](https://github.com/test-kitchen/test-kitchen/pull/527) ([chrishenry](https://github.com/chrishenry))
|
523
|
+
- Die on `kitchen login` if instance is not created. [\#526](https://github.com/test-kitchen/test-kitchen/pull/526) ([fnichol](https://github.com/fnichol))
|
524
|
+
- chef-provisioner: add support for site-cookbooks when using Librarian [\#510](https://github.com/test-kitchen/test-kitchen/pull/510) ([jstriebel](https://github.com/jstriebel))
|
525
|
+
- Minor test fixes to SSHBase [\#504](https://github.com/test-kitchen/test-kitchen/pull/504) ([jgoldschrafe](https://github.com/jgoldschrafe))
|
526
|
+
- Typo [\#498](https://github.com/test-kitchen/test-kitchen/pull/498) ([jaimegildesagredo](https://github.com/jaimegildesagredo))
|
527
|
+
- Disable color output when no TTY is present. [\#481](https://github.com/test-kitchen/test-kitchen/pull/481) ([fnichol](https://github.com/fnichol))
|
528
|
+
- Buffer Logger output & fix Chef run output formatting [\#478](https://github.com/test-kitchen/test-kitchen/pull/478) ([fnichol](https://github.com/fnichol))
|
529
|
+
- Bump 'kitchen help' into new Usage section and add how to use "-l". [\#477](https://github.com/test-kitchen/test-kitchen/pull/477) ([curiositycasualty](https://github.com/curiositycasualty))
|
530
|
+
- typeo confiuration -\> configuration [\#457](https://github.com/test-kitchen/test-kitchen/pull/457) ([michaelkirk](https://github.com/michaelkirk))
|
531
|
+
- Customize ssh\_timeout and ssh\_retries [\#454](https://github.com/test-kitchen/test-kitchen/pull/454) ([ekrupnik](https://github.com/ekrupnik))
|
532
|
+
- Help update [\#450](https://github.com/test-kitchen/test-kitchen/pull/450) ([MarkGibbons](https://github.com/MarkGibbons))
|
533
|
+
- Backfilling spec coverage and refactoring: technical debt edition [\#427](https://github.com/test-kitchen/test-kitchen/pull/427) ([fnichol](https://github.com/fnichol))
|
534
|
+
- Gem runner install driver [\#416](https://github.com/test-kitchen/test-kitchen/pull/416) ([mcquin](https://github.com/mcquin))
|
535
|
+
- Sleep before retrying SSH\#establish\_connection. [\#399](https://github.com/test-kitchen/test-kitchen/pull/399) ([fnichol](https://github.com/fnichol))
|
536
|
+
- make chef\_zero port configurable [\#397](https://github.com/test-kitchen/test-kitchen/pull/397) ([jtgiri](https://github.com/jtgiri))
|
537
|
+
- Use the full path to `chef-solo` and `chef-client` [\#381](https://github.com/test-kitchen/test-kitchen/pull/381) ([sethvargo](https://github.com/sethvargo))
|
538
|
+
- Add new subcommand 'exec' [\#373](https://github.com/test-kitchen/test-kitchen/pull/373) ([sawanoboly](https://github.com/sawanoboly))
|
539
|
+
- Use Ruby 2.1 instead of 2.1.0 for CI [\#370](https://github.com/test-kitchen/test-kitchen/pull/370) ([justincampbell](https://github.com/justincampbell))
|
540
|
+
- Nitpick spelling [\#366](https://github.com/test-kitchen/test-kitchen/pull/366) ([srenatus](https://github.com/srenatus))
|
541
|
+
- Ensure that integer chef config attributes get placed in solo.rb/client.rb properly [\#363](https://github.com/test-kitchen/test-kitchen/pull/363) ([benlangfeld](https://github.com/benlangfeld))
|
542
|
+
|
543
|
+
## [v1.2.1](https://github.com/test-kitchen/test-kitchen/tree/v1.2.1) (2014-02-12)
|
544
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.2.0...v1.2.1)
|
545
|
+
|
546
|
+
**Fixed bugs:**
|
547
|
+
|
548
|
+
- Test Kitchen 1.2.0 breaks Berkshelf 2.0 on \(OS X\) [\#357](https://github.com/test-kitchen/test-kitchen/issues/357)
|
549
|
+
|
550
|
+
**Merged pull requests:**
|
551
|
+
|
552
|
+
- Load needed \(dynamic\) dependencies for provisioners at creation time. [\#358](https://github.com/test-kitchen/test-kitchen/pull/358) ([fnichol](https://github.com/fnichol))
|
553
|
+
|
554
|
+
## [v1.2.0](https://github.com/test-kitchen/test-kitchen/tree/v1.2.0) (2014-02-12)
|
555
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.8.0...v1.2.0)
|
556
|
+
|
557
|
+
**Fixed bugs:**
|
558
|
+
|
559
|
+
- kitchen converge does not fail when chef run fails [\#346](https://github.com/test-kitchen/test-kitchen/issues/346)
|
560
|
+
|
561
|
+
**Merged pull requests:**
|
562
|
+
|
563
|
+
- Kamalika | added exit status check in chef-zero support for chef 10 [\#353](https://github.com/test-kitchen/test-kitchen/pull/353) ([kamalim](https://github.com/kamalim))
|
564
|
+
|
565
|
+
## [v0.8.0](https://github.com/test-kitchen/test-kitchen/tree/v0.8.0) (2014-02-12)
|
566
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.1.1...v0.8.0)
|
567
|
+
|
568
|
+
**Fixed bugs:**
|
569
|
+
|
570
|
+
- Failed to complete \#converge action: \[no implicit conversion of nil into String\] [\#335](https://github.com/test-kitchen/test-kitchen/issues/335)
|
571
|
+
- SSH connection failed, connection closed by remote host [\#323](https://github.com/test-kitchen/test-kitchen/issues/323)
|
572
|
+
- Command line errors don't set exit status [\#305](https://github.com/test-kitchen/test-kitchen/issues/305)
|
573
|
+
- Commented out .kitchen.local.yml causes failure of test-kitchen [\#285](https://github.com/test-kitchen/test-kitchen/issues/285)
|
574
|
+
- not proper response when part of node name same [\#282](https://github.com/test-kitchen/test-kitchen/issues/282)
|
575
|
+
|
576
|
+
**Closed issues:**
|
577
|
+
|
578
|
+
- support for command-line option to select driver \(fast local TDD vs. remote ci testing\) [\#345](https://github.com/test-kitchen/test-kitchen/issues/345)
|
579
|
+
- Message: SSH exited \(1\) for command: \[sudo -E /tmp/kitchen/bootstrap.sh\] [\#342](https://github.com/test-kitchen/test-kitchen/issues/342)
|
580
|
+
- Can't login to machine due to ambiguous name. [\#341](https://github.com/test-kitchen/test-kitchen/issues/341)
|
581
|
+
- Unable to set a chef environment for a node [\#340](https://github.com/test-kitchen/test-kitchen/issues/340)
|
582
|
+
- Multiple run on the same box [\#339](https://github.com/test-kitchen/test-kitchen/issues/339)
|
583
|
+
- Using search functions. [\#337](https://github.com/test-kitchen/test-kitchen/issues/337)
|
584
|
+
- Could not load the 'shell' provisioner from the load path [\#334](https://github.com/test-kitchen/test-kitchen/issues/334)
|
585
|
+
- Shell Provisioner [\#331](https://github.com/test-kitchen/test-kitchen/issues/331)
|
586
|
+
- cookbook files not copied to vagrant box [\#328](https://github.com/test-kitchen/test-kitchen/issues/328)
|
587
|
+
- The SciFi Future of Provisioner Install Commands. [\#326](https://github.com/test-kitchen/test-kitchen/issues/326)
|
588
|
+
- Reboot during Test Kitchen run? [\#324](https://github.com/test-kitchen/test-kitchen/issues/324)
|
589
|
+
- Node attributes do not seem to prevail between converge operations. [\#320](https://github.com/test-kitchen/test-kitchen/issues/320)
|
590
|
+
- Can't load data bags [\#317](https://github.com/test-kitchen/test-kitchen/issues/317)
|
591
|
+
- wiki bats example on Getting Started is overcomplex/bad pattern [\#314](https://github.com/test-kitchen/test-kitchen/issues/314)
|
592
|
+
- Subdirectories in "helpers" directory [\#312](https://github.com/test-kitchen/test-kitchen/issues/312)
|
593
|
+
- Override config file location via environment variables [\#304](https://github.com/test-kitchen/test-kitchen/issues/304)
|
594
|
+
- kitchen converge reinstalls chef using the omnibus installer even if its installed [\#299](https://github.com/test-kitchen/test-kitchen/issues/299)
|
595
|
+
- Chef environment support missing? [\#297](https://github.com/test-kitchen/test-kitchen/issues/297)
|
596
|
+
- Problem parsing metadata? [\#290](https://github.com/test-kitchen/test-kitchen/issues/290)
|
597
|
+
- serverspec failing [\#274](https://github.com/test-kitchen/test-kitchen/issues/274)
|
598
|
+
- I would like to execute some tasks before chef-client run at `kitchen converge`. [\#251](https://github.com/test-kitchen/test-kitchen/issues/251)
|
599
|
+
- Reduce internet downloading during test runs [\#196](https://github.com/test-kitchen/test-kitchen/issues/196)
|
600
|
+
- Allow to limit the number of parallel tests [\#176](https://github.com/test-kitchen/test-kitchen/issues/176)
|
601
|
+
- Implement `kitchen remodel` [\#150](https://github.com/test-kitchen/test-kitchen/issues/150)
|
602
|
+
- Make it possible \(or easier\) to run test-kitchen when off line [\#56](https://github.com/test-kitchen/test-kitchen/issues/56)
|
603
|
+
- Add project types to test-kitchen [\#46](https://github.com/test-kitchen/test-kitchen/issues/46)
|
604
|
+
- Create kitchen-fog driver that supports most Fog cloud providers [\#33](https://github.com/test-kitchen/test-kitchen/issues/33)
|
605
|
+
- support "preflight" commands [\#26](https://github.com/test-kitchen/test-kitchen/issues/26)
|
606
|
+
- If the project is a cookbook, attempt to use "test" cookbook in the default run list [\#24](https://github.com/test-kitchen/test-kitchen/issues/24)
|
607
|
+
|
608
|
+
**Merged pull requests:**
|
609
|
+
|
610
|
+
- Upload chef clients data [\#318](https://github.com/test-kitchen/test-kitchen/pull/318) ([jtimberman](https://github.com/jtimberman))
|
611
|
+
- Allow files in subdirectories in "helpers" directory [\#313](https://github.com/test-kitchen/test-kitchen/pull/313) ([mthssdrbrg](https://github.com/mthssdrbrg))
|
612
|
+
- Fix Windows path matching issues introduced by 1c924af2e9 [\#310](https://github.com/test-kitchen/test-kitchen/pull/310) ([rarenerd](https://github.com/rarenerd))
|
613
|
+
- adding /opt/local/bin to search path. smartmachines need this otherwise ... [\#309](https://github.com/test-kitchen/test-kitchen/pull/309) ([someara](https://github.com/someara))
|
614
|
+
- Add local & global file locations with environment variables. [\#306](https://github.com/test-kitchen/test-kitchen/pull/306) ([fnichol](https://github.com/fnichol))
|
615
|
+
- Use SafeYAML.load to avoid YAML monkeypatch in safe\_yaml. [\#303](https://github.com/test-kitchen/test-kitchen/pull/303) ([fnichol](https://github.com/fnichol))
|
616
|
+
- CLI refactoring to remove logic from cli.rb [\#302](https://github.com/test-kitchen/test-kitchen/pull/302) ([fnichol](https://github.com/fnichol))
|
617
|
+
- Base provisioner refactoring [\#298](https://github.com/test-kitchen/test-kitchen/pull/298) ([fnichol](https://github.com/fnichol))
|
618
|
+
- Fixing error when using more than one helper [\#296](https://github.com/test-kitchen/test-kitchen/pull/296) ([jschneiderhan](https://github.com/jschneiderhan))
|
619
|
+
- Add --concurrency option to specify number of multiple actions to perform at a time. [\#293](https://github.com/test-kitchen/test-kitchen/pull/293) ([ryotarai](https://github.com/ryotarai))
|
620
|
+
- Update omnibus URL to getchef.com. [\#288](https://github.com/test-kitchen/test-kitchen/pull/288) ([juliandunn](https://github.com/juliandunn))
|
621
|
+
- Fix Cucumber tests on Windows [\#287](https://github.com/test-kitchen/test-kitchen/pull/287) ([rarenerd](https://github.com/rarenerd))
|
622
|
+
- Fix failing minitest test on Windows [\#283](https://github.com/test-kitchen/test-kitchen/pull/283) ([rarenerd](https://github.com/rarenerd))
|
623
|
+
- Add `json\_attributes: true` config option to ChefZero provisioner. [\#280](https://github.com/test-kitchen/test-kitchen/pull/280) ([fnichol](https://github.com/fnichol))
|
624
|
+
|
625
|
+
## [v1.1.1](https://github.com/test-kitchen/test-kitchen/tree/v1.1.1) (2013-12-09)
|
626
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.1.0...v1.1.1)
|
627
|
+
|
628
|
+
**Fixed bugs:**
|
629
|
+
|
630
|
+
- Calling a test "database\_spec.rb" make it impossible to be played ! [\#276](https://github.com/test-kitchen/test-kitchen/issues/276)
|
631
|
+
|
632
|
+
**Closed issues:**
|
633
|
+
|
634
|
+
- not uploading database\_spec.rb test file [\#278](https://github.com/test-kitchen/test-kitchen/issues/278)
|
635
|
+
|
636
|
+
**Merged pull requests:**
|
637
|
+
|
638
|
+
- Fix SSH 'Too many authentication failures' error. [\#275](https://github.com/test-kitchen/test-kitchen/pull/275) ([zts](https://github.com/zts))
|
639
|
+
|
640
|
+
## [v1.1.0](https://github.com/test-kitchen/test-kitchen/tree/v1.1.0) (2013-12-05)
|
641
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0...v1.1.0)
|
642
|
+
|
643
|
+
**Closed issues:**
|
644
|
+
|
645
|
+
- Website Down? [\#271](https://github.com/test-kitchen/test-kitchen/issues/271)
|
646
|
+
- test for service not work correctly [\#270](https://github.com/test-kitchen/test-kitchen/issues/270)
|
647
|
+
- Document the newly introduced need to specify 'sudo: true' [\#269](https://github.com/test-kitchen/test-kitchen/issues/269)
|
648
|
+
|
649
|
+
**Merged pull requests:**
|
650
|
+
|
651
|
+
- drive by typo fix [\#272](https://github.com/test-kitchen/test-kitchen/pull/272) ([kisoku](https://github.com/kisoku))
|
652
|
+
|
653
|
+
## [v1.0.0](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0) (2013-12-02)
|
654
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.rc.2...v1.0.0)
|
655
|
+
|
656
|
+
**Closed issues:**
|
657
|
+
|
658
|
+
- crash on mac os x [\#268](https://github.com/test-kitchen/test-kitchen/issues/268)
|
659
|
+
- kitchen list does not read state file when using --debug [\#267](https://github.com/test-kitchen/test-kitchen/issues/267)
|
660
|
+
|
661
|
+
## [v1.0.0.rc.2](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.rc.2) (2013-11-30)
|
662
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.rc.1...v1.0.0.rc.2)
|
663
|
+
|
664
|
+
**Closed issues:**
|
665
|
+
|
666
|
+
- Does test-kitchen support aws provider ? [\#264](https://github.com/test-kitchen/test-kitchen/issues/264)
|
667
|
+
- Fog driver: ship with a sane set of image\_id/flavor\_id combinations for default platforms [\#34](https://github.com/test-kitchen/test-kitchen/issues/34)
|
668
|
+
|
669
|
+
**Merged pull requests:**
|
670
|
+
|
671
|
+
- Make a nicer error on regexp failure [\#266](https://github.com/test-kitchen/test-kitchen/pull/266) ([juliandunn](https://github.com/juliandunn))
|
672
|
+
- Busser Fixes for Greybeard UNIX [\#265](https://github.com/test-kitchen/test-kitchen/pull/265) ([schisamo](https://github.com/schisamo))
|
673
|
+
|
674
|
+
## [v1.0.0.rc.1](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.rc.1) (2013-11-28)
|
675
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.beta.4...v1.0.0.rc.1)
|
676
|
+
|
677
|
+
**Fixed bugs:**
|
678
|
+
|
679
|
+
- "Destroy" flag does not behave consistently, and the docs appear to be wrong [\#255](https://github.com/test-kitchen/test-kitchen/issues/255)
|
680
|
+
- Chef Zero provisioner does not respect `require\_chef\_omnibus` config [\#243](https://github.com/test-kitchen/test-kitchen/issues/243)
|
681
|
+
- Gem path issues after test-kitchen beta 4 new sandbox. [\#242](https://github.com/test-kitchen/test-kitchen/issues/242)
|
682
|
+
- Absolute Paths for Suite Data Bags, Roles, and Nodes are Set to Nil [\#227](https://github.com/test-kitchen/test-kitchen/pull/227) ([ajmath](https://github.com/ajmath))
|
683
|
+
- add `skip\_git` option to Init Generator [\#141](https://github.com/test-kitchen/test-kitchen/pull/141) ([reset](https://github.com/reset))
|
684
|
+
|
685
|
+
**Closed issues:**
|
686
|
+
|
687
|
+
- is test-kitchen appropriate for running deploys? [\#252](https://github.com/test-kitchen/test-kitchen/issues/252)
|
688
|
+
- role run\_lists seems to be ignored [\#250](https://github.com/test-kitchen/test-kitchen/issues/250)
|
689
|
+
- Add default value for encrypted\_data\_bag\_secret\_key\_path [\#248](https://github.com/test-kitchen/test-kitchen/issues/248)
|
690
|
+
- `uninitialized constant Berkshelf::Chef::Config::Ohai\]` [\#244](https://github.com/test-kitchen/test-kitchen/issues/244)
|
691
|
+
- gem\_package using chef\_zero installing packages into /tmp/kitchen-chef-zero making binstubs unavailable to chef [\#240](https://github.com/test-kitchen/test-kitchen/issues/240)
|
692
|
+
- Error on ubuntu images only [\#220](https://github.com/test-kitchen/test-kitchen/issues/220)
|
693
|
+
- Allow test-kitchen to use different configs \(e.g. --config option\)? [\#210](https://github.com/test-kitchen/test-kitchen/issues/210)
|
694
|
+
- solo.rb file content should be configurable [\#117](https://github.com/test-kitchen/test-kitchen/issues/117)
|
695
|
+
- Documentation [\#110](https://github.com/test-kitchen/test-kitchen/issues/110)
|
696
|
+
- Possible problems with parallel testing [\#68](https://github.com/test-kitchen/test-kitchen/issues/68)
|
697
|
+
|
698
|
+
**Merged pull requests:**
|
699
|
+
|
700
|
+
- Use a configurable glob pattern to select Chef cookbook files. [\#262](https://github.com/test-kitchen/test-kitchen/pull/262) ([fnichol](https://github.com/fnichol))
|
701
|
+
- Fix inconsistent date in CHANGELOG [\#259](https://github.com/test-kitchen/test-kitchen/pull/259) ([ryansouza](https://github.com/ryansouza))
|
702
|
+
- Fix Busser and chef-client-zero.rb Gem Sandboxing [\#258](https://github.com/test-kitchen/test-kitchen/pull/258) ([fnichol](https://github.com/fnichol))
|
703
|
+
- Changed 'passed' to 'passing' in the Destroy options [\#256](https://github.com/test-kitchen/test-kitchen/pull/256) ([scarolan](https://github.com/scarolan))
|
704
|
+
- update references to test-kitchen org [\#254](https://github.com/test-kitchen/test-kitchen/pull/254) ([josephholsten](https://github.com/josephholsten))
|
705
|
+
- Fix travis-ci badge [\#253](https://github.com/test-kitchen/test-kitchen/pull/253) ([arangamani](https://github.com/arangamani))
|
706
|
+
- Add data path as optional configuration [\#249](https://github.com/test-kitchen/test-kitchen/pull/249) ([oferrigni](https://github.com/oferrigni))
|
707
|
+
- Fix init generator to simplify YAML [\#246](https://github.com/test-kitchen/test-kitchen/pull/246) ([sethvargo](https://github.com/sethvargo))
|
708
|
+
- Bust out of gem sandbox before chef-client run; Fixes \#240 [\#241](https://github.com/test-kitchen/test-kitchen/pull/241) ([schisamo](https://github.com/schisamo))
|
709
|
+
- Show less output [\#238](https://github.com/test-kitchen/test-kitchen/pull/238) ([sethvargo](https://github.com/sethvargo))
|
710
|
+
- Add option to run a stanza on a fixed set of platforms [\#165](https://github.com/test-kitchen/test-kitchen/pull/165) ([coderanger](https://github.com/coderanger))
|
711
|
+
- Read CLI options from kitchen.yml [\#121](https://github.com/test-kitchen/test-kitchen/pull/121) ([atomic-penguin](https://github.com/atomic-penguin))
|
712
|
+
|
713
|
+
## [v1.0.0.beta.4](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.beta.4) (2013-11-01)
|
714
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.beta.3...v1.0.0.beta.4)
|
715
|
+
|
716
|
+
**Fixed bugs:**
|
717
|
+
|
718
|
+
- cannot load such file -- chef\_fs/chef\_fs\_data\_store \(LoadError\) [\#230](https://github.com/test-kitchen/test-kitchen/issues/230)
|
719
|
+
- should\_update\_chef logic appears broken [\#191](https://github.com/test-kitchen/test-kitchen/issues/191)
|
720
|
+
- chef-zero fails to install without build-essential [\#190](https://github.com/test-kitchen/test-kitchen/issues/190)
|
721
|
+
- Pin dependency of safe\_yaml to 0.9.3 or wait on upstream to release and yank 0.9.4 [\#181](https://github.com/test-kitchen/test-kitchen/issues/181)
|
722
|
+
- kitchen test --parallel never times out, never errors out, despite an error [\#169](https://github.com/test-kitchen/test-kitchen/issues/169)
|
723
|
+
- Temporary files can be still uploaded [\#132](https://github.com/test-kitchen/test-kitchen/issues/132)
|
724
|
+
- Kitchen destroy leaves orphans behind [\#109](https://github.com/test-kitchen/test-kitchen/issues/109)
|
725
|
+
- kitchen uses 100% CPU after a failure with the --parallel flag [\#100](https://github.com/test-kitchen/test-kitchen/issues/100)
|
726
|
+
|
727
|
+
**Closed issues:**
|
728
|
+
|
729
|
+
- kitchen verify fails due to gem conflict [\#234](https://github.com/test-kitchen/test-kitchen/issues/234)
|
730
|
+
- kitchen-test outputs "can't convert Symbol into Integer" [\#223](https://github.com/test-kitchen/test-kitchen/issues/223)
|
731
|
+
- Failed require is not necessarily missing gem [\#215](https://github.com/test-kitchen/test-kitchen/issues/215)
|
732
|
+
- Certain platforms \(e.g., solaris, omnios\) may not have /usr/bin symlinks for chef [\#213](https://github.com/test-kitchen/test-kitchen/issues/213)
|
733
|
+
- Provide config option to add to the list of cookbook files. [\#211](https://github.com/test-kitchen/test-kitchen/issues/211)
|
734
|
+
- Since Sept 27 I'm no longer able to bundle test-kitchen master with berkshelf 2.0.10 [\#209](https://github.com/test-kitchen/test-kitchen/issues/209)
|
735
|
+
- 2.0 [\#207](https://github.com/test-kitchen/test-kitchen/issues/207)
|
736
|
+
- Are Vagrant environments supported in .kitchen.yml [\#205](https://github.com/test-kitchen/test-kitchen/issues/205)
|
737
|
+
- with OpenStack Driver, can not exec 'kitchen create' [\#204](https://github.com/test-kitchen/test-kitchen/issues/204)
|
738
|
+
- Test kitchen fails to install busser properly when system-level rvm installed ruby exists [\#200](https://github.com/test-kitchen/test-kitchen/issues/200)
|
739
|
+
- Environment support for Chef Solo [\#199](https://github.com/test-kitchen/test-kitchen/issues/199)
|
740
|
+
- Tests are not picked up when using chef-zero provisioner [\#189](https://github.com/test-kitchen/test-kitchen/issues/189)
|
741
|
+
- /tmp/kitchen-chef-solo permissions issue [\#186](https://github.com/test-kitchen/test-kitchen/issues/186)
|
742
|
+
- Idea: Kitchenfile config [\#182](https://github.com/test-kitchen/test-kitchen/issues/182)
|
743
|
+
- Automatically trigger berks install -o \<test suite\> group on test run [\#173](https://github.com/test-kitchen/test-kitchen/issues/173)
|
744
|
+
- Propose Switch to allow for only the test result output from each busser [\#168](https://github.com/test-kitchen/test-kitchen/issues/168)
|
745
|
+
- Allow for site-cookbooks [\#166](https://github.com/test-kitchen/test-kitchen/issues/166)
|
746
|
+
- Be more paranoid about dependencies [\#149](https://github.com/test-kitchen/test-kitchen/issues/149)
|
747
|
+
- New .kitchen.yml syntax? [\#138](https://github.com/test-kitchen/test-kitchen/issues/138)
|
748
|
+
- Could not find gem 'test-kitchen \(\>= 0\) ruby' [\#135](https://github.com/test-kitchen/test-kitchen/issues/135)
|
749
|
+
- It says Starting Kitchen when destroying your test vm's [\#133](https://github.com/test-kitchen/test-kitchen/issues/133)
|
750
|
+
- "sudo: unable to resolve host default-precise64-vmware-fusion.vagrantup.com" [\#127](https://github.com/test-kitchen/test-kitchen/issues/127)
|
751
|
+
- Create a kitchen driver for SmartOS [\#125](https://github.com/test-kitchen/test-kitchen/issues/125)
|
752
|
+
- Allow for enhanced Berksfile syntax within a given suite [\#93](https://github.com/test-kitchen/test-kitchen/issues/93)
|
753
|
+
- Passing the -h flag to a command starts the suite [\#86](https://github.com/test-kitchen/test-kitchen/issues/86)
|
754
|
+
- test-kitchen 1.0.0-alpha & chef-solo-search not working [\#70](https://github.com/test-kitchen/test-kitchen/issues/70)
|
755
|
+
- Consider adding `driver\_config` to a Suite. [\#69](https://github.com/test-kitchen/test-kitchen/issues/69)
|
756
|
+
- Don't remove code based configuration. [\#40](https://github.com/test-kitchen/test-kitchen/issues/40)
|
757
|
+
|
758
|
+
**Merged pull requests:**
|
759
|
+
|
760
|
+
- Added environments support for chef-solo [\#235](https://github.com/test-kitchen/test-kitchen/pull/235) ([ekrupnik](https://github.com/ekrupnik))
|
761
|
+
- Concurrent threads [\#226](https://github.com/test-kitchen/test-kitchen/pull/226) ([fnichol](https://github.com/fnichol))
|
762
|
+
- Improves Test Kitchen's support for older \(non-Linux\) Unixes [\#225](https://github.com/test-kitchen/test-kitchen/pull/225) ([schisamo](https://github.com/schisamo))
|
763
|
+
- Remove celluloid and use pure Ruby threads [\#222](https://github.com/test-kitchen/test-kitchen/pull/222) ([sethvargo](https://github.com/sethvargo))
|
764
|
+
- Add pessismestic locks to all gem requirements [\#206](https://github.com/test-kitchen/test-kitchen/pull/206) ([sethvargo](https://github.com/sethvargo))
|
765
|
+
- fixed berkself typo to berkshelf [\#203](https://github.com/test-kitchen/test-kitchen/pull/203) ([gmiranda23](https://github.com/gmiranda23))
|
766
|
+
- Multiple arguments to test \(verify, converge, etc\) [\#94](https://github.com/test-kitchen/test-kitchen/pull/94) ([miketheman](https://github.com/miketheman))
|
767
|
+
|
768
|
+
## [v1.0.0.beta.3](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.beta.3) (2013-08-29)
|
769
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.beta.2...v1.0.0.beta.3)
|
770
|
+
|
771
|
+
**Closed issues:**
|
772
|
+
|
773
|
+
- Set hostname fails on openSUSE 11.x [\#185](https://github.com/test-kitchen/test-kitchen/issues/185)
|
774
|
+
- Ability to test recipes that require multiple VMs connected to a chef server [\#184](https://github.com/test-kitchen/test-kitchen/issues/184)
|
775
|
+
- Berkshelf Missing [\#183](https://github.com/test-kitchen/test-kitchen/issues/183)
|
776
|
+
- Invalid logger call? [\#175](https://github.com/test-kitchen/test-kitchen/issues/175)
|
777
|
+
|
778
|
+
**Merged pull requests:**
|
779
|
+
|
780
|
+
- truthy default\_configs can't be overridden [\#188](https://github.com/test-kitchen/test-kitchen/pull/188) ([thommay](https://github.com/thommay))
|
781
|
+
- \[KITCHEN-80\] added support for log file in chef solo [\#187](https://github.com/test-kitchen/test-kitchen/pull/187) ([arangamani](https://github.com/arangamani))
|
782
|
+
- Remove bundler references from README. [\#179](https://github.com/test-kitchen/test-kitchen/pull/179) ([juliandunn](https://github.com/juliandunn))
|
783
|
+
- Fix SSH\#wait's logger call to \#info [\#178](https://github.com/test-kitchen/test-kitchen/pull/178) ([ryansouza](https://github.com/ryansouza))
|
784
|
+
|
785
|
+
## [v1.0.0.beta.2](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.beta.2) (2013-07-25)
|
786
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.beta.1...v1.0.0.beta.2)
|
787
|
+
|
788
|
+
## [v1.0.0.beta.1](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.beta.1) (2013-07-23)
|
789
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.5.1...v1.0.0.beta.1)
|
790
|
+
|
791
|
+
**Fixed bugs:**
|
792
|
+
|
793
|
+
- Kitchen.celluloid\_file\_logger creates .kitchen when using knife [\#153](https://github.com/test-kitchen/test-kitchen/issues/153)
|
794
|
+
- Error during test hangs, steals CPU [\#89](https://github.com/test-kitchen/test-kitchen/issues/89)
|
795
|
+
- unintuitive error message when kitchen driver specified in .kitchen.yml isn't found [\#80](https://github.com/test-kitchen/test-kitchen/issues/80)
|
796
|
+
- and empty \(or commented out\) .kitchen.local.yml file causes failure. [\#42](https://github.com/test-kitchen/test-kitchen/issues/42)
|
797
|
+
- kitchen commands should respond properly to CTL-C [\#30](https://github.com/test-kitchen/test-kitchen/issues/30)
|
798
|
+
- File.exists? calls within init generator must include the destination root for portability purposes [\#140](https://github.com/test-kitchen/test-kitchen/pull/140) ([reset](https://github.com/reset))
|
799
|
+
|
800
|
+
**Closed issues:**
|
801
|
+
|
802
|
+
- Set a more sane default PATH for installing Chef [\#163](https://github.com/test-kitchen/test-kitchen/issues/163)
|
803
|
+
- Build is broken w/ RubyGems 1.8.25 + Ruby 2.0.0 [\#160](https://github.com/test-kitchen/test-kitchen/issues/160)
|
804
|
+
- Build is broken! [\#159](https://github.com/test-kitchen/test-kitchen/issues/159)
|
805
|
+
- `kitchen converge` not uploading definitions directory [\#156](https://github.com/test-kitchen/test-kitchen/issues/156)
|
806
|
+
- The NSA censors your VM names when using a terminal with a light background [\#154](https://github.com/test-kitchen/test-kitchen/issues/154)
|
807
|
+
- Update bucket name for Opscode's bento-built boxes [\#151](https://github.com/test-kitchen/test-kitchen/issues/151)
|
808
|
+
- kitchen test fails with undefined method `full\_name' [\#146](https://github.com/test-kitchen/test-kitchen/issues/146)
|
809
|
+
- safe\_yaml not found [\#137](https://github.com/test-kitchen/test-kitchen/issues/137)
|
810
|
+
- Support for data bags in Cookbooks under test [\#129](https://github.com/test-kitchen/test-kitchen/issues/129)
|
811
|
+
- Configuration management tools/provisioners should be pluggable [\#107](https://github.com/test-kitchen/test-kitchen/issues/107)
|
812
|
+
- Provide option for running chef-client instead of chef-solo [\#103](https://github.com/test-kitchen/test-kitchen/issues/103)
|
813
|
+
- Test-kitchen should not use the color red for non-error information [\#97](https://github.com/test-kitchen/test-kitchen/issues/97)
|
814
|
+
- More colors! [\#96](https://github.com/test-kitchen/test-kitchen/issues/96)
|
815
|
+
- Order of operations not clear. [\#88](https://github.com/test-kitchen/test-kitchen/issues/88)
|
816
|
+
- logging should be configured by the .kitchen.yml or .kitchen.local.yml [\#63](https://github.com/test-kitchen/test-kitchen/issues/63)
|
817
|
+
- Consider setting `driver\[:require\_chef\_omnibus\] = true` by default [\#62](https://github.com/test-kitchen/test-kitchen/issues/62)
|
818
|
+
- kitchen subcommands should error out gracefully if .kitchen.yml cannot be properly loaded [\#37](https://github.com/test-kitchen/test-kitchen/issues/37)
|
819
|
+
- init command should default to Berkshelf [\#28](https://github.com/test-kitchen/test-kitchen/issues/28)
|
820
|
+
- if cookbook metadata specifies platforms, only run tests against those platforms [\#27](https://github.com/test-kitchen/test-kitchen/issues/27)
|
821
|
+
- provide a converter for Kitchenfile -\> .kitchen.yml [\#19](https://github.com/test-kitchen/test-kitchen/issues/19)
|
822
|
+
|
823
|
+
**Merged pull requests:**
|
824
|
+
|
825
|
+
- \[Breaking\] Update signature of Driver.required\_config block. [\#172](https://github.com/test-kitchen/test-kitchen/pull/172) ([fnichol](https://github.com/fnichol))
|
826
|
+
- Support computed default values for Driver authors. [\#171](https://github.com/test-kitchen/test-kitchen/pull/171) ([fnichol](https://github.com/fnichol))
|
827
|
+
- add asterisk to wait\_for\_sshd argument [\#170](https://github.com/test-kitchen/test-kitchen/pull/170) ([ainoya](https://github.com/ainoya))
|
828
|
+
- set a default $PATH [\#164](https://github.com/test-kitchen/test-kitchen/pull/164) ([jtimberman](https://github.com/jtimberman))
|
829
|
+
- \[KITCHEN-77\] Allow custom paths [\#161](https://github.com/test-kitchen/test-kitchen/pull/161) ([gondoi](https://github.com/gondoi))
|
830
|
+
- Setting :on\_black when your default terminal text color is black results in unreadable \(black on black\) text. [\#155](https://github.com/test-kitchen/test-kitchen/pull/155) ([mconigliaro](https://github.com/mconigliaro))
|
831
|
+
- Fixes \#151 - Update the bucket name for Opscode's Bento Boxes [\#152](https://github.com/test-kitchen/test-kitchen/pull/152) ([jtimberman](https://github.com/jtimberman))
|
832
|
+
- Allow chef omnibus install.sh url to be configurable [\#147](https://github.com/test-kitchen/test-kitchen/pull/147) ([jrwesolo](https://github.com/jrwesolo))
|
833
|
+
- require a safe\_yaml release with correct permissions. Fixes \#137 [\#142](https://github.com/test-kitchen/test-kitchen/pull/142) ([josephholsten](https://github.com/josephholsten))
|
834
|
+
- Fixes bundler ref for 1.0. [\#136](https://github.com/test-kitchen/test-kitchen/pull/136) ([patcon](https://github.com/patcon))
|
835
|
+
- KITCHEN-75 - support cross suite helpers. [\#134](https://github.com/test-kitchen/test-kitchen/pull/134) ([rteabeault](https://github.com/rteabeault))
|
836
|
+
- Use ssh\_args for test\_ssh. [\#131](https://github.com/test-kitchen/test-kitchen/pull/131) ([jonsmorrow](https://github.com/jonsmorrow))
|
837
|
+
- Introduce Provisioners to support chef-client, puppet-apply, and puppet-agent [\#128](https://github.com/test-kitchen/test-kitchen/pull/128) ([fnichol](https://github.com/fnichol))
|
838
|
+
- Aggressively filter "non-cookbook" files before uploading to instances. [\#124](https://github.com/test-kitchen/test-kitchen/pull/124) ([fnichol](https://github.com/fnichol))
|
839
|
+
- Swap cookbook resolution strategy from shell outs to using Ruby APIs. [\#123](https://github.com/test-kitchen/test-kitchen/pull/123) ([fnichol](https://github.com/fnichol))
|
840
|
+
- Adding missing sudo calls to busser [\#122](https://github.com/test-kitchen/test-kitchen/pull/122) ([adamhjk](https://github.com/adamhjk))
|
841
|
+
|
842
|
+
## [v0.5.1](https://github.com/test-kitchen/test-kitchen/tree/v0.5.1) (2013-05-23)
|
843
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.7...v0.5.1)
|
844
|
+
|
845
|
+
**Closed issues:**
|
846
|
+
|
847
|
+
- berks install errors should not be swallowed [\#118](https://github.com/test-kitchen/test-kitchen/issues/118)
|
848
|
+
|
849
|
+
## [v1.0.0.alpha.7](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.7) (2013-05-23)
|
850
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.6...v1.0.0.alpha.7)
|
851
|
+
|
852
|
+
**Closed issues:**
|
853
|
+
|
854
|
+
- Update kitchen.yml template with provisionerless baseboxes [\#114](https://github.com/test-kitchen/test-kitchen/issues/114)
|
855
|
+
- Windows experience a non-starter [\#101](https://github.com/test-kitchen/test-kitchen/issues/101)
|
856
|
+
- Destroy flag is ignored if parallel flag is given. [\#98](https://github.com/test-kitchen/test-kitchen/issues/98)
|
857
|
+
- In the absence of a Berksfile, sadness abounds [\#92](https://github.com/test-kitchen/test-kitchen/issues/92)
|
858
|
+
- support global user-level config files [\#31](https://github.com/test-kitchen/test-kitchen/issues/31)
|
859
|
+
|
860
|
+
**Merged pull requests:**
|
861
|
+
|
862
|
+
- Add http and https\_proxy support [\#120](https://github.com/test-kitchen/test-kitchen/pull/120) ([adamhjk](https://github.com/adamhjk))
|
863
|
+
- Test Kitchen works on Windows with Vagrant [\#119](https://github.com/test-kitchen/test-kitchen/pull/119) ([adamhjk](https://github.com/adamhjk))
|
864
|
+
- Require the 'name' attribute is present in `metadata.rb` [\#116](https://github.com/test-kitchen/test-kitchen/pull/116) ([sethvargo](https://github.com/sethvargo))
|
865
|
+
- Fixes \#114, use provisionerless baseboxes [\#115](https://github.com/test-kitchen/test-kitchen/pull/115) ([jtimberman](https://github.com/jtimberman))
|
866
|
+
- \[KITCHEN-74\] Handle case where YAML parses as nil [\#113](https://github.com/test-kitchen/test-kitchen/pull/113) ([smith](https://github.com/smith))
|
867
|
+
- Add the sink [\#111](https://github.com/test-kitchen/test-kitchen/pull/111) ([sethvargo](https://github.com/sethvargo))
|
868
|
+
- Add Kitchen::VERSION to `-----\> Starting Kitchen` output [\#108](https://github.com/test-kitchen/test-kitchen/pull/108) ([fnichol](https://github.com/fnichol))
|
869
|
+
- Expand documentation around run-time switches. [\#105](https://github.com/test-kitchen/test-kitchen/pull/105) ([grahamc](https://github.com/grahamc))
|
870
|
+
- Set the default ssh port. [\#104](https://github.com/test-kitchen/test-kitchen/pull/104) ([calavera](https://github.com/calavera))
|
871
|
+
- Allow to override sudo. [\#102](https://github.com/test-kitchen/test-kitchen/pull/102) ([calavera](https://github.com/calavera))
|
872
|
+
- Ensure that destroy option is respected when --parallel is used. [\#99](https://github.com/test-kitchen/test-kitchen/pull/99) ([stevendanna](https://github.com/stevendanna))
|
873
|
+
- Fix minitest test examples link. [\#91](https://github.com/test-kitchen/test-kitchen/pull/91) ([calavera](https://github.com/calavera))
|
874
|
+
- Add a global config file [\#90](https://github.com/test-kitchen/test-kitchen/pull/90) ([thommay](https://github.com/thommay))
|
875
|
+
|
876
|
+
## [v1.0.0.alpha.6](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.6) (2013-05-08)
|
877
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.5...v1.0.0.alpha.6)
|
878
|
+
|
879
|
+
**Closed issues:**
|
880
|
+
|
881
|
+
- UI nitpick [\#84](https://github.com/test-kitchen/test-kitchen/issues/84)
|
882
|
+
|
883
|
+
**Merged pull requests:**
|
884
|
+
|
885
|
+
- Add attribute encrypted\_data\_bag\_secret\_key\_path to Kitchen::Suite [\#77](https://github.com/test-kitchen/test-kitchen/pull/77) ([arunthampi](https://github.com/arunthampi))
|
886
|
+
|
887
|
+
## [v1.0.0.alpha.5](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.5) (2013-04-23)
|
888
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.4...v1.0.0.alpha.5)
|
889
|
+
|
890
|
+
**Closed issues:**
|
891
|
+
|
892
|
+
- Support wget and curl for omnibus installs \(in `Kitchen::Driver::SSHBase`\) [\#61](https://github.com/test-kitchen/test-kitchen/issues/61)
|
893
|
+
|
894
|
+
**Merged pull requests:**
|
895
|
+
|
896
|
+
- Install Omnibus package via either wget or curl. [\#82](https://github.com/test-kitchen/test-kitchen/pull/82) ([fnichol](https://github.com/fnichol))
|
897
|
+
- Error report formatting [\#81](https://github.com/test-kitchen/test-kitchen/pull/81) ([fnichol](https://github.com/fnichol))
|
898
|
+
- Swap out shell-based kb for Ruby-based Busser gem [\#76](https://github.com/test-kitchen/test-kitchen/pull/76) ([fnichol](https://github.com/fnichol))
|
899
|
+
|
900
|
+
## [v1.0.0.alpha.4](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.4) (2013-04-10)
|
901
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.3...v1.0.0.alpha.4)
|
902
|
+
|
903
|
+
## [v1.0.0.alpha.3](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.3) (2013-04-05)
|
904
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.2...v1.0.0.alpha.3)
|
905
|
+
|
906
|
+
**Closed issues:**
|
907
|
+
|
908
|
+
- Use baseboxes updated to Chef 10.18.2 [\#21](https://github.com/test-kitchen/test-kitchen/issues/21)
|
909
|
+
- init command should create Gemfile if it does not exist [\#20](https://github.com/test-kitchen/test-kitchen/issues/20)
|
910
|
+
|
911
|
+
## [v1.0.0.alpha.2](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.2) (2013-03-29)
|
912
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.1...v1.0.0.alpha.2)
|
913
|
+
|
914
|
+
## [v1.0.0.alpha.1](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.1) (2013-03-23)
|
915
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.4.0...v1.0.0.alpha.1)
|
916
|
+
|
917
|
+
**Merged pull requests:**
|
918
|
+
|
919
|
+
- Add Driver\#verify\_dependencies to be invoked once when Driver is loaded. [\#75](https://github.com/test-kitchen/test-kitchen/pull/75) ([fnichol](https://github.com/fnichol))
|
920
|
+
- switch driver alias \(-d\) to \(-D\) in Init generator [\#74](https://github.com/test-kitchen/test-kitchen/pull/74) ([reset](https://github.com/reset))
|
921
|
+
- \[Breaking\] Modify ShellOut\#run\_command to take an options Hash. [\#73](https://github.com/test-kitchen/test-kitchen/pull/73) ([fnichol](https://github.com/fnichol))
|
922
|
+
- Add flag to `kitchen init` to skip Gemfile creation by default. [\#72](https://github.com/test-kitchen/test-kitchen/pull/72) ([fnichol](https://github.com/fnichol))
|
923
|
+
- Updates to `kitchen init` to be non-interactive \(add `--driver` flag\), add subcommand support, and introduce `kitchen driver discover`. [\#71](https://github.com/test-kitchen/test-kitchen/pull/71) ([fnichol](https://github.com/fnichol))
|
924
|
+
- \[tailor\] fix for line length and style [\#65](https://github.com/test-kitchen/test-kitchen/pull/65) ([ChrisLundquist](https://github.com/ChrisLundquist))
|
925
|
+
- make "require\_chef\_omnibus: true" safe [\#64](https://github.com/test-kitchen/test-kitchen/pull/64) ([mattray](https://github.com/mattray))
|
926
|
+
|
927
|
+
## [v0.4.0](https://github.com/test-kitchen/test-kitchen/tree/v0.4.0) (2013-03-02)
|
928
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v1.0.0.alpha.0...v0.4.0)
|
929
|
+
|
930
|
+
**Closed issues:**
|
931
|
+
|
932
|
+
- support "exclude" configuration directive after \#17 [\#29](https://github.com/test-kitchen/test-kitchen/issues/29)
|
933
|
+
|
934
|
+
## [v1.0.0.alpha.0](https://github.com/test-kitchen/test-kitchen/tree/v1.0.0.alpha.0) (2013-03-02)
|
935
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.beta4...v1.0.0.alpha.0)
|
936
|
+
|
937
|
+
**Closed issues:**
|
938
|
+
|
939
|
+
- Gem dependency collision [\#59](https://github.com/test-kitchen/test-kitchen/issues/59)
|
940
|
+
- chef\_data\_uploader doesn't actually upload cookbooks w/ kitchen-vagrant [\#55](https://github.com/test-kitchen/test-kitchen/issues/55)
|
941
|
+
- When 'box' is specified without 'box\_url', just use existing Vagrant base box [\#53](https://github.com/test-kitchen/test-kitchen/issues/53)
|
942
|
+
- make "suites" stanza optional [\#48](https://github.com/test-kitchen/test-kitchen/issues/48)
|
943
|
+
- move JR \(Jamie Runner\) code into appropriate test-kitchen repositories [\#43](https://github.com/test-kitchen/test-kitchen/issues/43)
|
944
|
+
- add individual node definitions and global driver configuration to yaml format [\#41](https://github.com/test-kitchen/test-kitchen/issues/41)
|
945
|
+
- Split classes into separate files \(a.k.a. The Big Split\) [\#39](https://github.com/test-kitchen/test-kitchen/issues/39)
|
946
|
+
- Migrate the jamie-vagrant gem codebase to kitchen-vagrant [\#38](https://github.com/test-kitchen/test-kitchen/issues/38)
|
947
|
+
- support `require\_chef\_omnibus` config option value of "latest" [\#32](https://github.com/test-kitchen/test-kitchen/issues/32)
|
948
|
+
- create kitchen-openstack driver [\#25](https://github.com/test-kitchen/test-kitchen/issues/25)
|
949
|
+
- rename .jamie.yml to .kitchen.yml [\#18](https://github.com/test-kitchen/test-kitchen/issues/18)
|
950
|
+
- Merge "jamie" project with test-kitchen [\#17](https://github.com/test-kitchen/test-kitchen/issues/17)
|
951
|
+
|
952
|
+
**Merged pull requests:**
|
953
|
+
|
954
|
+
- YAML Serialization [\#58](https://github.com/test-kitchen/test-kitchen/pull/58) ([fnichol](https://github.com/fnichol))
|
955
|
+
- Suites should be able to exclude a platform \#29 [\#57](https://github.com/test-kitchen/test-kitchen/pull/57) ([sandfish8](https://github.com/sandfish8))
|
956
|
+
- add basic instructions [\#54](https://github.com/test-kitchen/test-kitchen/pull/54) ([bryanwb](https://github.com/bryanwb))
|
957
|
+
|
958
|
+
## [v0.1.0.beta4](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.beta4) (2013-01-24)
|
959
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.beta3...v0.1.0.beta4)
|
960
|
+
|
961
|
+
## [v0.1.0.beta3](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.beta3) (2013-01-14)
|
962
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.beta2...v0.1.0.beta3)
|
963
|
+
|
964
|
+
## [v0.1.0.beta2](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.beta2) (2013-01-13)
|
965
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.beta1...v0.1.0.beta2)
|
966
|
+
|
967
|
+
## [v0.1.0.beta1](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.beta1) (2013-01-12)
|
968
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.3.0...v0.1.0.beta1)
|
969
|
+
|
970
|
+
## [v0.3.0](https://github.com/test-kitchen/test-kitchen/tree/v0.3.0) (2013-01-09)
|
971
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha21...v0.3.0)
|
972
|
+
|
973
|
+
## [v0.1.0.alpha21](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha21) (2013-01-09)
|
974
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha20...v0.1.0.alpha21)
|
975
|
+
|
976
|
+
## [v0.1.0.alpha20](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha20) (2013-01-04)
|
977
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.2.0...v0.1.0.alpha20)
|
978
|
+
|
979
|
+
## [v0.2.0](https://github.com/test-kitchen/test-kitchen/tree/v0.2.0) (2013-01-03)
|
980
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha19...v0.2.0)
|
981
|
+
|
982
|
+
## [v0.1.0.alpha19](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha19) (2013-01-03)
|
983
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha18...v0.1.0.alpha19)
|
984
|
+
|
985
|
+
## [v0.1.0.alpha18](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha18) (2012-12-30)
|
986
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha17...v0.1.0.alpha18)
|
987
|
+
|
988
|
+
## [v0.1.0.alpha17](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha17) (2012-12-27)
|
989
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0...v0.1.0.alpha17)
|
990
|
+
|
991
|
+
## [v0.1.0](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0) (2012-12-27)
|
992
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha16...v0.1.0)
|
993
|
+
|
994
|
+
## [v0.1.0.alpha16](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha16) (2012-12-27)
|
995
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha15...v0.1.0.alpha16)
|
996
|
+
|
997
|
+
## [v0.1.0.alpha15](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha15) (2012-12-24)
|
998
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha14...v0.1.0.alpha15)
|
999
|
+
|
1000
|
+
## [v0.1.0.alpha14](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha14) (2012-12-22)
|
1001
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha13...v0.1.0.alpha14)
|
1002
|
+
|
1003
|
+
## [v0.1.0.alpha13](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha13) (2012-12-20)
|
1004
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha12...v0.1.0.alpha13)
|
1005
|
+
|
1006
|
+
## [v0.1.0.alpha12](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha12) (2012-12-20)
|
1007
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha11...v0.1.0.alpha12)
|
1008
|
+
|
1009
|
+
## [v0.1.0.alpha11](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha11) (2012-12-20)
|
1010
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha10...v0.1.0.alpha11)
|
1011
|
+
|
1012
|
+
## [v0.1.0.alpha10](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha10) (2012-12-20)
|
1013
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha9...v0.1.0.alpha10)
|
1014
|
+
|
1015
|
+
## [v0.1.0.alpha9](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha9) (2012-12-18)
|
1016
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha8...v0.1.0.alpha9)
|
1017
|
+
|
1018
|
+
## [v0.1.0.alpha8](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha8) (2012-12-17)
|
1019
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha7...v0.1.0.alpha8)
|
1020
|
+
|
1021
|
+
## [v0.1.0.alpha7](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha7) (2012-12-14)
|
1022
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha6...v0.1.0.alpha7)
|
1023
|
+
|
1024
|
+
## [v0.1.0.alpha6](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha6) (2012-12-13)
|
1025
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha5...v0.1.0.alpha6)
|
1026
|
+
|
1027
|
+
## [v0.1.0.alpha5](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha5) (2012-12-13)
|
1028
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha4...v0.1.0.alpha5)
|
1029
|
+
|
1030
|
+
## [v0.1.0.alpha4](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha4) (2012-12-11)
|
1031
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha3...v0.1.0.alpha4)
|
1032
|
+
|
1033
|
+
## [v0.1.0.alpha3](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha3) (2012-12-10)
|
1034
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha2...v0.1.0.alpha3)
|
1035
|
+
|
1036
|
+
## [v0.1.0.alpha2](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha2) (2012-12-03)
|
1037
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.7.0...v0.1.0.alpha2)
|
1038
|
+
|
1039
|
+
## [v0.7.0](https://github.com/test-kitchen/test-kitchen/tree/v0.7.0) (2012-12-03)
|
1040
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.1.0.alpha1...v0.7.0)
|
1041
|
+
|
1042
|
+
## [v0.1.0.alpha1](https://github.com/test-kitchen/test-kitchen/tree/v0.1.0.alpha1) (2012-12-01)
|
1043
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.7.0.rc.1...v0.1.0.alpha1)
|
1044
|
+
|
1045
|
+
**Merged pull requests:**
|
1046
|
+
|
1047
|
+
- minor formatting and spelling corrections [\#11](https://github.com/test-kitchen/test-kitchen/pull/11) ([mattray](https://github.com/mattray))
|
1048
|
+
|
1049
|
+
## [v0.7.0.rc.1](https://github.com/test-kitchen/test-kitchen/tree/v0.7.0.rc.1) (2012-11-28)
|
1050
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.7.0.beta.1...v0.7.0.rc.1)
|
1051
|
+
|
1052
|
+
**Merged pull requests:**
|
1053
|
+
|
1054
|
+
- \[KITCHEN-23\] - load metadata.rb to get cookbook name [\#10](https://github.com/test-kitchen/test-kitchen/pull/10) ([jtimberman](https://github.com/jtimberman))
|
1055
|
+
|
1056
|
+
## [v0.7.0.beta.1](https://github.com/test-kitchen/test-kitchen/tree/v0.7.0.beta.1) (2012-11-21)
|
1057
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.6.0...v0.7.0.beta.1)
|
1058
|
+
|
1059
|
+
## [v0.6.0](https://github.com/test-kitchen/test-kitchen/tree/v0.6.0) (2012-10-02)
|
1060
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.5.4...v0.6.0)
|
1061
|
+
|
1062
|
+
**Merged pull requests:**
|
1063
|
+
|
1064
|
+
- \[KITCHEN-29\] - implement --platform to limit test [\#8](https://github.com/test-kitchen/test-kitchen/pull/8) ([jtimberman](https://github.com/jtimberman))
|
1065
|
+
- KITCHEN-22 - Include Databags in Vagrant Configuration if present [\#5](https://github.com/test-kitchen/test-kitchen/pull/5) ([brendanhay](https://github.com/brendanhay))
|
1066
|
+
- KITCHEN-35 use minitest-handler from community.opscode.com [\#4](https://github.com/test-kitchen/test-kitchen/pull/4) ([bryanwb](https://github.com/bryanwb))
|
1067
|
+
|
1068
|
+
## [v0.5.4](https://github.com/test-kitchen/test-kitchen/tree/v0.5.4) (2012-08-30)
|
1069
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.5.2...v0.5.4)
|
1070
|
+
|
1071
|
+
**Merged pull requests:**
|
1072
|
+
|
1073
|
+
- \[KITCHEN-17\] - support ignoring lint rules [\#3](https://github.com/test-kitchen/test-kitchen/pull/3) ([jtimberman](https://github.com/jtimberman))
|
1074
|
+
|
1075
|
+
## [v0.5.2](https://github.com/test-kitchen/test-kitchen/tree/v0.5.2) (2012-08-18)
|
1076
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/v0.5.0...v0.5.2)
|
1077
|
+
|
1078
|
+
## [v0.5.0](https://github.com/test-kitchen/test-kitchen/tree/v0.5.0) (2012-08-16)
|
1079
|
+
[Full Changelog](https://github.com/test-kitchen/test-kitchen/compare/0.5.0...v0.5.0)
|
1080
|
+
|
1081
|
+
## [0.5.0](https://github.com/test-kitchen/test-kitchen/tree/0.5.0) (2012-08-16)
|
1082
|
+
|
1083
|
+
|
1052
1084
|
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|