test-kitchen 1.6.0 → 1.7.0

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