chef-provisioning 2.7.2 → 2.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8119a3a7334c0b431027a3c5415dbce75ca55211b2e0508058cc6341e2dda371
4
- data.tar.gz: eb8bf1fb50a725bc92f217db858704c4fe920dcb3c3319de3edd7b7cbb9ee128
3
+ metadata.gz: be98ba3591f5661543e300193d910ac31af983e1564eb60f44010e8b7c5bc691
4
+ data.tar.gz: 71c376d649ba9692240db91a4b08d9ab4e443cce264025f8507b5350750ca218
5
5
  SHA512:
6
- metadata.gz: 4322aab3eab7d93cb15b8285ad7b08a211a65e998f624e90650bc7e7405b2f2f9be8d46dabb0c4706a5a0f8e52222db12e35a5979270a9b70ea74c9e72a4748b
7
- data.tar.gz: cc78a90192109653847153096a1bbbb767a59444b83f184fd6c000ca1c009f2fccbdf8de8360cd86f5c80796c250169430f88ae4f4f4661286bf3590d6b265e6
6
+ metadata.gz: 2a32e6859a074b5069900801765670a4358d2a396bd9175d7da629bf3f27bbd4cf5c2f2d5d16551e8be617e039add23394e907ef2087d6f4651177f5c83eee84
7
+ data.tar.gz: 545356781d8b0218b2613aa2d8e2baf4e2440b1713be66f464b3276608bd9369ad320656903c77e6ba579d5a16f643be646793076306b401a842488ae94fc2c6
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  source "https://rubygems.org"
2
+
2
3
  gemspec
3
4
 
4
5
  #gem 'mixlib-install', path: '../mixlib-install'
@@ -14,4 +15,20 @@ gemspec
14
15
  group :development do
15
16
  gem "ohai"
16
17
  gem "chef"
18
+ gem "chefstyle", "~> 0.10.0"
19
+ gem "rake"
20
+ gem "rspec", "~> 3.0"
21
+ gem "simplecov"
22
+ end
23
+
24
+ group :debug do
25
+ gem "pry"
26
+ gem "pry-byebug"
27
+ gem "pry-stack_explorer"
17
28
  end
29
+
30
+ instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
31
+
32
+ # If you want to load debugging tools into the bundle exec sandbox,
33
+ # add these additional dependencies into Gemfile.local
34
+ eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")
data/Rakefile CHANGED
@@ -1,6 +1,5 @@
1
- require 'bundler'
2
- require 'bundler/gem_tasks'
3
- require 'rspec/core/rake_task'
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
4
3
 
5
4
  desc "run specs"
6
5
  RSpec::Core::RakeTask.new(:spec) do |task|
@@ -39,17 +38,19 @@ namespace :driver do
39
38
  end
40
39
  end
41
40
 
42
- require "chef/provisioning/version"
41
+ task :console do
42
+ require "irb"
43
+ require "irb/completion"
44
+ ARGV.clear
45
+ IRB.start
46
+ end
43
47
 
44
48
  begin
45
- require 'github_changelog_generator/task'
46
-
47
- GitHubChangelogGenerator::RakeTask.new :changelog do |config|
48
- config.future_release = Chef::Provisioning::VERSION
49
- config.enhancement_labels = "enhancement,Enhancement,New Feature".split(',')
50
- config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(',')
51
- config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog".split(',')
49
+ require "chefstyle"
50
+ require "rubocop/rake_task"
51
+ RuboCop::RakeTask.new(:chefstyle) do |task|
52
+ task.options << "--display-cop-names"
52
53
  end
53
54
  rescue LoadError
54
- # It's OK if the github_changelog_generator isn't there, that happens when we're testing older chef versions
55
+ puts "chefstyle gem is not installed"
55
56
  end
@@ -4,14 +4,12 @@ require 'chef/provisioning/version'
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'chef-provisioning'
6
6
  s.version = Chef::Provisioning::VERSION
7
- s.platform = Gem::Platform::RUBY
8
- s.extra_rdoc_files = ['README.md', 'CHANGELOG.md', 'LICENSE' ]
9
7
  s.summary = 'A library for creating machines and infrastructures idempotently in Chef.'
10
8
  s.description = s.summary
11
9
  s.author = 'John Keiser'
12
10
  s.email = 'jkeiser@chef.io'
13
11
  s.homepage = 'http://github.com/chef/chef-provisioning/README.md'
14
-
12
+ s.license = "Apache-2.0"
15
13
  s.required_ruby_version = ">= 2.2.2"
16
14
 
17
15
  s.add_dependency 'net-ssh', '>= 2.9', '< 5.0'
@@ -24,16 +22,7 @@ Gem::Specification.new do |s|
24
22
  s.add_dependency 'winrm-elevated', '~> 1.0'
25
23
  s.add_dependency "mixlib-install", ">= 1.0"
26
24
 
27
- s.add_development_dependency 'rspec'
28
- s.add_development_dependency 'rake'
29
- s.add_development_dependency 'pry'
30
- s.add_development_dependency 'simplecov'
31
- s.add_development_dependency 'github_changelog_generator'
32
-
33
- s.bindir = "bin"
34
- s.executables = %w( )
35
-
36
25
  s.require_path = 'lib'
37
- s.files = %w(Gemfile Rakefile LICENSE README.md CHANGELOG.md) + Dir.glob("*.gemspec") +
26
+ s.files = %w(Gemfile Rakefile LICENSE) + Dir.glob("*.gemspec") +
38
27
  Dir.glob("{distro,lib,tasks,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
39
28
  end
@@ -41,29 +41,37 @@ class MachineBatch < Chef::Provider::LWRPBase
41
41
 
42
42
  action :setup do
43
43
  with_ready_machines do |m|
44
- m[:machine].setup_convergence(m[:action_handler])
45
- m[:spec].save(m[:action_handler])
46
- Chef::Provider::Machine.upload_files(m[:action_handler], m[:machine], m[:files])
44
+ begin
45
+ m[:machine].setup_convergence(m[:action_handler])
46
+ m[:spec].save(m[:action_handler])
47
+ Chef::Provider::Machine.upload_files(m[:action_handler], m[:machine], m[:files])
48
+ ensure
49
+ m[:machine].disconnect
50
+ end
47
51
  end
48
52
  end
49
53
 
50
54
  action :converge do
51
55
  with_ready_machines do |m|
52
- m[:machine].setup_convergence(m[:action_handler])
53
- m[:spec].save(m[:action_handler])
54
- Chef::Provider::Machine.upload_files(m[:action_handler], m[:machine], m[:files])
55
-
56
- if m[:resource] && m[:resource].converge
57
- Chef::Log.info("Converging #{m[:spec].name} because 'converge true' is set ...")
58
- m[:machine].converge(m[:action_handler])
59
- elsif (!m[:resource] || m[:resource].converge.nil?) && m[:action_handler].locally_updated
60
- Chef::Log.info("Converging #{m[:spec].name} because the resource was updated ...")
61
- m[:machine].converge(m[:action_handler])
62
- elsif !m[:spec].node['automatic'] || m[:spec].node['automatic'].size == 0
63
- Chef::Log.info("Converging #{m[:spec].name} because it has never been converged (automatic attributes are empty) ...")
64
- m[:machine].converge(m[:action_handler])
65
- elsif m[:resource] && m[:resource].converge == false
66
- Chef::Log.debug("Not converging #{m[:spec].name} because 'converge false' is set.")
56
+ begin
57
+ m[:machine].setup_convergence(m[:action_handler])
58
+ m[:spec].save(m[:action_handler])
59
+ Chef::Provider::Machine.upload_files(m[:action_handler], m[:machine], m[:files])
60
+
61
+ if m[:resource] && m[:resource].converge
62
+ Chef::Log.info("Converging #{m[:spec].name} because 'converge true' is set ...")
63
+ m[:machine].converge(m[:action_handler])
64
+ elsif (!m[:resource] || m[:resource].converge.nil?) && m[:action_handler].locally_updated
65
+ Chef::Log.info("Converging #{m[:spec].name} because the resource was updated ...")
66
+ m[:machine].converge(m[:action_handler])
67
+ elsif !m[:spec].node['automatic'] || m[:spec].node['automatic'].size == 0
68
+ Chef::Log.info("Converging #{m[:spec].name} because it has never been converged (automatic attributes are empty) ...")
69
+ m[:machine].converge(m[:action_handler])
70
+ elsif m[:resource] && m[:resource].converge == false
71
+ Chef::Log.debug("Not converging #{m[:spec].name} because 'converge false' is set.")
72
+ end
73
+ ensure
74
+ m[:machine].disconnect
67
75
  end
68
76
  end
69
77
  end
@@ -71,7 +79,11 @@ class MachineBatch < Chef::Provider::LWRPBase
71
79
  action :converge_only do
72
80
  parallel_do(@machines) do |m|
73
81
  machine = run_context.chef_provisioning.connect_to_machine(m[:spec])
74
- machine.converge(m[:action_handler])
82
+ begin
83
+ machine.converge(m[:action_handler])
84
+ ensure
85
+ machine.disconnect
86
+ end
75
87
  end
76
88
  end
77
89
 
@@ -21,6 +21,7 @@ module Provisioning
21
21
  @install_sh_arguments = convergence_options[:install_sh_arguments]
22
22
  @bootstrap_env = convergence_options[:bootstrap_proxy] ? "http_proxy=#{convergence_options[:bootstrap_proxy]} https_proxy=$http_proxy " : ""
23
23
  @chef_client_timeout = convergence_options.has_key?(:chef_client_timeout) ? convergence_options[:chef_client_timeout] : 120*60 # Default: 2 hours
24
+ @chef_command = convergence_options[:chef_command] || "chef-client"
24
25
  end
25
26
 
26
27
  attr_reader :client_rb_path
@@ -45,6 +46,13 @@ module Provisioning
45
46
  opts['install_flags'] = convergence_options[:install_sh_arguments]
46
47
  end
47
48
 
49
+ # Install::ScriptGenerator will use current by default, unless we specify -c stable
50
+ # So we add this install flag unless 'prerelease' was specified, in which case we do not
51
+ if (not opts['install_flags'].nil?) and (not opts['install_flags'].include?('-c ')) and (not opts['install_flags'].include?('-channel ') and (not prerelease))
52
+ opts['install_flags']='' unless opts['install_flags'].nil?
53
+ opts['install_flags']+=' -c stable'
54
+ end
55
+
48
56
  install_command = Mixlib::Install::ScriptGenerator.new(chef_version, false, opts).install_command
49
57
  machine.write_file(action_handler, install_sh_path, install_command, :ensure_dir => true)
50
58
  machine.set_attributes(action_handler, install_sh_path, :mode => '0755')
@@ -56,8 +64,8 @@ module Provisioning
56
64
 
57
65
  action_handler.open_stream(machine.node['name']) do |stdout|
58
66
  action_handler.open_stream(machine.node['name']) do |stderr|
59
- command_line = "chef-client"
60
- command_line << " -c #{@client_rb_path} -l #{config[:log_level].to_s}" if config[:log_level]
67
+ command_line = "#{@chef_command} -c #{@client_rb_path}"
68
+ command_line << " -l #{config[:log_level].to_s}" if config[:log_level]
61
69
  machine.execute(action_handler, command_line,
62
70
  :stream_stdout => stdout,
63
71
  :stream_stderr => stderr,
@@ -228,30 +228,38 @@ module Provisioning
228
228
  :verify_none
229
229
  end
230
230
 
231
- content = <<-EOM
231
+ content = <<~EOM
232
232
  chef_server_url #{chef_server_url.inspect}
233
233
  node_name #{node_name.inspect}
234
234
  client_key #{convergence_options[:client_pem_path].inspect}
235
235
  ssl_verify_mode #{ssl_verify_mode.to_sym.inspect}
236
236
  EOM
237
237
  if convergence_options[:bootstrap_proxy]
238
- content << <<-EOM
238
+ content << <<~EOM
239
239
  http_proxy #{convergence_options[:bootstrap_proxy].inspect}
240
240
  https_proxy #{convergence_options[:bootstrap_proxy].inspect}
241
241
  EOM
242
242
  end
243
243
  if convergence_options[:bootstrap_no_proxy]
244
- content << <<-EOM
244
+ content << <<~EOM
245
245
  no_proxy #{convergence_options[:bootstrap_no_proxy].inspect}
246
246
  EOM
247
247
  end
248
248
  if convergence_options[:rubygems_url]
249
- content << <<-EOM
249
+ content << <<~EOM
250
250
  rubygems_url #{convergence_options[:rubygems_url].inspect}
251
251
  EOM
252
252
  end
253
- content.gsub!(/^\s+/, "")
254
- content << convergence_options[:chef_config] if convergence_options[:chef_config]
253
+ if convergence_options[:chef_config].is_a?(String)
254
+ content << convergence_options[:chef_config]
255
+ elsif convergence_options[:chef_config].is_a?(Hash)
256
+ convergence_options[:chef_config].each do |option, value|
257
+ content << <<~EOM
258
+ #{option.to_s} #{value.inspect}
259
+ EOM
260
+ end
261
+ end
262
+
255
263
  content
256
264
  end
257
265
  end
@@ -84,7 +84,7 @@ module Provisioning
84
84
  end
85
85
  end
86
86
  if attributes[:owner] && current_attributes[:owner] != attributes[:owner]
87
- action_handler.perform_action "change group of #{path} on #{machine_spec.name} from #{current_attributes[:owner]} to #{attributes[:owner]}" do
87
+ action_handler.perform_action "change owner of #{path} on #{machine_spec.name} from #{current_attributes[:owner]} to #{attributes[:owner]}" do
88
88
  transport.execute("chown #{attributes[:owner]} #{path}").error!
89
89
  end
90
90
  end
@@ -1,5 +1,5 @@
1
1
  class Chef
2
- module Provisioning
3
- VERSION = '2.7.2'
4
- end
2
+ module Provisioning
3
+ VERSION = "2.7.4".freeze
4
+ end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-provisioning
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.2
4
+ version: 2.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Keiser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-15 00:00:00.000000000 Z
11
+ date: 2018-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-ssh
@@ -154,89 +154,14 @@ dependencies:
154
154
  - - ">="
155
155
  - !ruby/object:Gem::Version
156
156
  version: '1.0'
157
- - !ruby/object:Gem::Dependency
158
- name: rspec
159
- requirement: !ruby/object:Gem::Requirement
160
- requirements:
161
- - - ">="
162
- - !ruby/object:Gem::Version
163
- version: '0'
164
- type: :development
165
- prerelease: false
166
- version_requirements: !ruby/object:Gem::Requirement
167
- requirements:
168
- - - ">="
169
- - !ruby/object:Gem::Version
170
- version: '0'
171
- - !ruby/object:Gem::Dependency
172
- name: rake
173
- requirement: !ruby/object:Gem::Requirement
174
- requirements:
175
- - - ">="
176
- - !ruby/object:Gem::Version
177
- version: '0'
178
- type: :development
179
- prerelease: false
180
- version_requirements: !ruby/object:Gem::Requirement
181
- requirements:
182
- - - ">="
183
- - !ruby/object:Gem::Version
184
- version: '0'
185
- - !ruby/object:Gem::Dependency
186
- name: pry
187
- requirement: !ruby/object:Gem::Requirement
188
- requirements:
189
- - - ">="
190
- - !ruby/object:Gem::Version
191
- version: '0'
192
- type: :development
193
- prerelease: false
194
- version_requirements: !ruby/object:Gem::Requirement
195
- requirements:
196
- - - ">="
197
- - !ruby/object:Gem::Version
198
- version: '0'
199
- - !ruby/object:Gem::Dependency
200
- name: simplecov
201
- requirement: !ruby/object:Gem::Requirement
202
- requirements:
203
- - - ">="
204
- - !ruby/object:Gem::Version
205
- version: '0'
206
- type: :development
207
- prerelease: false
208
- version_requirements: !ruby/object:Gem::Requirement
209
- requirements:
210
- - - ">="
211
- - !ruby/object:Gem::Version
212
- version: '0'
213
- - !ruby/object:Gem::Dependency
214
- name: github_changelog_generator
215
- requirement: !ruby/object:Gem::Requirement
216
- requirements:
217
- - - ">="
218
- - !ruby/object:Gem::Version
219
- version: '0'
220
- type: :development
221
- prerelease: false
222
- version_requirements: !ruby/object:Gem::Requirement
223
- requirements:
224
- - - ">="
225
- - !ruby/object:Gem::Version
226
- version: '0'
227
157
  description: A library for creating machines and infrastructures idempotently in Chef.
228
158
  email: jkeiser@chef.io
229
159
  executables: []
230
160
  extensions: []
231
- extra_rdoc_files:
232
- - README.md
233
- - CHANGELOG.md
234
- - LICENSE
161
+ extra_rdoc_files: []
235
162
  files:
236
- - CHANGELOG.md
237
163
  - Gemfile
238
164
  - LICENSE
239
- - README.md
240
165
  - Rakefile
241
166
  - chef-provisioning.gemspec
242
167
  - lib/chef/provider/load_balancer.rb
@@ -285,7 +210,8 @@ files:
285
210
  - spec/chef/provisioning/convergence_strategy/ignore_convergence_failure_spec.rb
286
211
  - spec/spec_helper.rb
287
212
  homepage: http://github.com/chef/chef-provisioning/README.md
288
- licenses: []
213
+ licenses:
214
+ - Apache-2.0
289
215
  metadata: {}
290
216
  post_install_message:
291
217
  rdoc_options: []
@@ -1,1015 +0,0 @@
1
- # Change Log
2
-
3
- ## [2.7.2](https://github.com/chef/chef-provisioning/tree/2.7.2) (2018-05-31)
4
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.7.1...2.7.2)
5
-
6
- **Closed issues:**
7
-
8
- - winrm available? function exception when using SSL [\#605](https://github.com/chef/chef-provisioning/issues/605)
9
-
10
- **Merged pull requests:**
11
-
12
- - Fix machine execute [\#612](https://github.com/chef/chef-provisioning/pull/612) ([jjlimepoint](https://github.com/jjlimepoint))
13
- - Add Errno::ECONNABORTED to the list of rescued errors in the available? function [\#606](https://github.com/chef/chef-provisioning/pull/606) ([lomeroe](https://github.com/lomeroe))
14
-
15
- ## [v2.7.1](https://github.com/chef/chef-provisioning/tree/v2.7.1) (2018-04-24)
16
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.7.0...v2.7.1)
17
-
18
- **Merged pull requests:**
19
-
20
- - bump cheffish dep to allow 14.x [\#611](https://github.com/chef/chef-provisioning/pull/611) ([lamont-granquist](https://github.com/lamont-granquist))
21
- - make ssh port forward options continue to work on retry [\#607](https://github.com/chef/chef-provisioning/pull/607) ([jjlimepoint](https://github.com/jjlimepoint))
22
- - Test on Ruby 2.4.3 in Travis [\#604](https://github.com/chef/chef-provisioning/pull/604) ([tas50](https://github.com/tas50))
23
- - Add options hash to 'with\_chef\_server' example [\#588](https://github.com/chef/chef-provisioning/pull/588) ([gregsher88](https://github.com/gregsher88))
24
-
25
- ## [v2.7.0](https://github.com/chef/chef-provisioning/tree/v2.7.0) (2018-01-26)
26
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.6.0...v2.7.0)
27
-
28
- **Merged pull requests:**
29
-
30
- - Added convergance option to allow the setting of a rubygems mirror in… [\#601](https://github.com/chef/chef-provisioning/pull/601) ([devoptimist](https://github.com/devoptimist))
31
- - chef 13 compat: replacing resource method dsl\_name called in resource… [\#600](https://github.com/chef/chef-provisioning/pull/600) ([devoptimist](https://github.com/devoptimist))
32
-
33
- ## [v2.6.0](https://github.com/chef/chef-provisioning/tree/v2.6.0) (2017-11-08)
34
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.5.0...v2.6.0)
35
-
36
- **Merged pull requests:**
37
-
38
- - Add an option to never use SSH port forwardin [\#596](https://github.com/chef/chef-provisioning/pull/596) ([jjlimepoint](https://github.com/jjlimepoint))
39
- - Typo + small wording fix [\#590](https://github.com/chef/chef-provisioning/pull/590) ([jblaine](https://github.com/jblaine))
40
-
41
- ## [v2.5.0](https://github.com/chef/chef-provisioning/tree/v2.5.0) (2017-07-24)
42
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.4.0...v2.5.0)
43
-
44
- **Merged pull requests:**
45
-
46
- - remove normal pessimistic constraint for mixlib install [\#586](https://github.com/chef/chef-provisioning/pull/586) ([wrightp](https://github.com/wrightp))
47
-
48
- ## [v2.4.0](https://github.com/chef/chef-provisioning/tree/v2.4.0) (2017-06-27)
49
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.3.2...v2.4.0)
50
-
51
- **Merged pull requests:**
52
-
53
- - allow newer net-ssh-gateway [\#584](https://github.com/chef/chef-provisioning/pull/584) ([jjlimepoint](https://github.com/jjlimepoint))
54
- - We can’t forward a socketless Zero server, so show a nice\(ish\) error [\#583](https://github.com/chef/chef-provisioning/pull/583) ([coderanger](https://github.com/coderanger))
55
- - Ignore group/owner/mode attrs on Windows machine until implemented [\#582](https://github.com/chef/chef-provisioning/pull/582) ([paustin01](https://github.com/paustin01))
56
- - Fix convergence\_options being steamrolled rather than merged [\#581](https://github.com/chef/chef-provisioning/pull/581) ([paustin01](https://github.com/paustin01))
57
- - add digest command to unix\_machine.files\_different? [\#570](https://github.com/chef/chef-provisioning/pull/570) ([steversmith](https://github.com/steversmith))
58
-
59
- ## [v2.3.2](https://github.com/chef/chef-provisioning/tree/v2.3.2) (2017-04-21)
60
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.3.1...v2.3.2)
61
-
62
- **Merged pull requests:**
63
-
64
- - Putting back in place some development dependencies I removed [\#578](https://github.com/chef/chef-provisioning/pull/578) ([tyler-ball](https://github.com/tyler-ball))
65
-
66
- ## [v2.3.1](https://github.com/chef/chef-provisioning/tree/v2.3.1) (2017-04-21)
67
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.3.0...v2.3.1)
68
-
69
- **Merged pull requests:**
70
-
71
- - Update README.md [\#575](https://github.com/chef/chef-provisioning/pull/575) ([jjasghar](https://github.com/jjasghar))
72
-
73
- ## [v2.3.0](https://github.com/chef/chef-provisioning/tree/v2.3.0) (2017-04-20)
74
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.2.1...v2.3.0)
75
-
76
- **Merged pull requests:**
77
-
78
- - allow cheffish 13.x [\#577](https://github.com/chef/chef-provisioning/pull/577) ([lamont-granquist](https://github.com/lamont-granquist))
79
- - Fixes for chef13 and cheffish5.x/cheffish-13.x [\#572](https://github.com/chef/chef-provisioning/pull/572) ([jjlimepoint](https://github.com/jjlimepoint))
80
-
81
- ## [v2.2.1](https://github.com/chef/chef-provisioning/tree/v2.2.1) (2017-03-14)
82
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.2.0...v2.2.1)
83
-
84
- ## [v2.2.0](https://github.com/chef/chef-provisioning/tree/v2.2.0) (2017-03-11)
85
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.1.1...v2.2.0)
86
-
87
- **Merged pull requests:**
88
-
89
- - allow cheffish-5.0 [\#568](https://github.com/chef/chef-provisioning/pull/568) ([lamont-granquist](https://github.com/lamont-granquist))
90
-
91
- ## [v2.1.1](https://github.com/chef/chef-provisioning/tree/v2.1.1) (2017-02-14)
92
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.1.0...v2.1.1)
93
-
94
- **Merged pull requests:**
95
-
96
- - Leverage winrm-elevated to execute chef install script [\#562](https://github.com/chef/chef-provisioning/pull/562) ([tyler-ball](https://github.com/tyler-ball))
97
- - Updating various READMEs to try and better call out benefits, drawbacks and the target audience [\#557](https://github.com/chef/chef-provisioning/pull/557) ([tyler-ball](https://github.com/tyler-ball))
98
-
99
- ## [v2.1.0](https://github.com/chef/chef-provisioning/tree/v2.1.0) (2017-01-11)
100
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.0.2...v2.1.0)
101
-
102
- **Merged pull requests:**
103
-
104
- - relax upper bounds on deps [\#556](https://github.com/chef/chef-provisioning/pull/556) ([lamont-granquist](https://github.com/lamont-granquist))
105
- - Add a section about ACLs in README.me [\#553](https://github.com/chef/chef-provisioning/pull/553) ([elthariel](https://github.com/elthariel))
106
- - Update README.md [\#548](https://github.com/chef/chef-provisioning/pull/548) ([martinmosegaard](https://github.com/martinmosegaard))
107
-
108
- ## [v2.0.2](https://github.com/chef/chef-provisioning/tree/v2.0.2) (2016-09-22)
109
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.0.1...v2.0.2)
110
-
111
- **Fixed bugs:**
112
-
113
- - Allow mixlib-install 2.0 [\#546](https://github.com/chef/chef-provisioning/pull/546) ([jkeiser](https://github.com/jkeiser))
114
-
115
- **Merged pull requests:**
116
-
117
- - Bump version to 2.0.2 [\#547](https://github.com/chef/chef-provisioning/pull/547) ([jkeiser](https://github.com/jkeiser))
118
-
119
- ## [v2.0.1](https://github.com/chef/chef-provisioning/tree/v2.0.1) (2016-09-07)
120
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.0.0...v2.0.1)
121
-
122
- **Closed issues:**
123
-
124
- - Poor error message using winrm and --local-mode [\#516](https://github.com/chef/chef-provisioning/issues/516)
125
- - machine attribute in both machine\_execute and machine\_file resources should be required. [\#449](https://github.com/chef/chef-provisioning/issues/449)
126
-
127
- **Merged pull requests:**
128
-
129
- - Use Winrm v2 and let winrm-fs do file uploads [\#543](https://github.com/chef/chef-provisioning/pull/543) ([mwrock](https://github.com/mwrock))
130
- - Allow machine\_execute resource to run commands that last longer then 15 minutes [\#541](https://github.com/chef/chef-provisioning/pull/541) ([poliva83](https://github.com/poliva83))
131
- - set scheme to http if it was chefzero [\#517](https://github.com/chef/chef-provisioning/pull/517) ([sclarson](https://github.com/sclarson))
132
-
133
- ## [v2.0.0](https://github.com/chef/chef-provisioning/tree/v2.0.0) (2016-08-25)
134
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.1...v2.0.0)
135
-
136
- **Merged pull requests:**
137
-
138
- - Require Ruby 2.2.2+ and Cheffish 4.0 [\#538](https://github.com/chef/chef-provisioning/pull/538) ([jkeiser](https://github.com/jkeiser))
139
-
140
- ## [v1.9.1](https://github.com/chef/chef-provisioning/tree/v1.9.1) (2016-08-11)
141
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.0...v1.9.1)
142
-
143
- **Merged pull requests:**
144
-
145
- - allows cheffish 3.0 to stop pulling in compat\_resource [\#534](https://github.com/chef/chef-provisioning/pull/534) ([lamont-granquist](https://github.com/lamont-granquist))
146
-
147
- ## [v1.9.0](https://github.com/chef/chef-provisioning/tree/v1.9.0) (2016-08-11)
148
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.1...v1.9.0)
149
-
150
- **Closed issues:**
151
-
152
- - Uninitialized constant Chef::Resource::Machine [\#531](https://github.com/chef/chef-provisioning/issues/531)
153
-
154
- ## [v1.8.1](https://github.com/chef/chef-provisioning/tree/v1.8.1) (2016-08-03)
155
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.0...v1.8.1)
156
-
157
- **Merged pull requests:**
158
-
159
- - Cleaning up a deprecation warning [\#530](https://github.com/chef/chef-provisioning/pull/530) ([tyler-ball](https://github.com/tyler-ball))
160
-
161
- ## [v1.8.0](https://github.com/chef/chef-provisioning/tree/v1.8.0) (2016-06-16)
162
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.7.1...v1.8.0)
163
-
164
- **Closed issues:**
165
-
166
- - machine\_batch doesn't clearly mention which machine failed [\#499](https://github.com/chef/chef-provisioning/issues/499)
167
- - Flexible install\_command. Do not assume internet acces. [\#474](https://github.com/chef/chef-provisioning/issues/474)
168
-
169
- **Merged pull requests:**
170
-
171
- - Fix WARN: nil is an invalid value for output\_key\_format [\#520](https://github.com/chef/chef-provisioning/pull/520) ([christinedraper](https://github.com/christinedraper))
172
- - Add support for custom :install\_sh\_url [\#515](https://github.com/chef/chef-provisioning/pull/515) ([SIGUSR2](https://github.com/SIGUSR2))
173
- - error handling for machine\_batch resource [\#500](https://github.com/chef/chef-provisioning/pull/500) ([ckaushik](https://github.com/ckaushik))
174
-
175
- ## [v1.7.1](https://github.com/chef/chef-provisioning/tree/v1.7.1) (2016-05-17)
176
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.7.0...v1.7.1)
177
-
178
- **Merged pull requests:**
179
-
180
- - install\_sh and install\_cached convergence strategies trigger chef-client with -c flag [\#518](https://github.com/chef/chef-provisioning/pull/518) ([poliva83](https://github.com/poliva83))
181
-
182
- ## [v1.7.0](https://github.com/chef/chef-provisioning/tree/v1.7.0) (2016-04-06)
183
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.6.0...v1.7.0)
184
-
185
- **Merged pull requests:**
186
-
187
- - Use mixlib-install 1.0 [\#512](https://github.com/chef/chef-provisioning/pull/512) ([jkeiser](https://github.com/jkeiser))
188
- - Allow newer inifile gem [\#509](https://github.com/chef/chef-provisioning/pull/509) ([pburkholder](https://github.com/pburkholder))
189
-
190
- ## [v1.6.0](https://github.com/chef/chef-provisioning/tree/v1.6.0) (2016-02-03)
191
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.5.1...v1.6.0)
192
-
193
- **Implemented enhancements:**
194
-
195
- - Custom port forwards. [\#445](https://github.com/chef/chef-provisioning/pull/445) ([causton81](https://github.com/causton81))
196
-
197
- **Fixed bugs:**
198
-
199
- - Chef::Exceptions::ContentLengthMismatch Response body length XXXX does not match HTTP Content-Length header XXXX [\#446](https://github.com/chef/chef-provisioning/issues/446)
200
- - Updating to the latest release of net-ssh to consume net-ssh/net-ssh\#280 [\#485](https://github.com/chef/chef-provisioning/pull/485) ([tyler-ball](https://github.com/tyler-ball))
201
-
202
- **Merged pull requests:**
203
-
204
- - Fix Provisioning with Cheffish 1.x [\#496](https://github.com/chef/chef-provisioning/pull/496) ([jkeiser](https://github.com/jkeiser))
205
- - Bump revision to 1.6.0 [\#493](https://github.com/chef/chef-provisioning/pull/493) ([jkeiser](https://github.com/jkeiser))
206
- - Add "rake changelog" task [\#491](https://github.com/chef/chef-provisioning/pull/491) ([jkeiser](https://github.com/jkeiser))
207
- - Stop using Chef::Provider::ChefNode directly \(cheffish 2.0 compat\) [\#490](https://github.com/chef/chef-provisioning/pull/490) ([jkeiser](https://github.com/jkeiser))
208
- - Allow cheffish 2.0 as a dep [\#489](https://github.com/chef/chef-provisioning/pull/489) ([jkeiser](https://github.com/jkeiser))
209
-
210
- ## [v1.5.1](https://github.com/chef/chef-provisioning/tree/v1.5.1) (2015-12-10)
211
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.5.0...v1.5.1)
212
-
213
- **Merged pull requests:**
214
-
215
- - Require ResourceBuilder file before monkeypatching to ensure it is already defined [\#478](https://github.com/chef/chef-provisioning/pull/478) ([tyler-ball](https://github.com/tyler-ball))
216
- - Ensure target directory exists when using write\_file with WinRM [\#471](https://github.com/chef/chef-provisioning/pull/471) ([xenolinguist](https://github.com/xenolinguist))
217
-
218
- ## [v1.5.0](https://github.com/chef/chef-provisioning/tree/v1.5.0) (2015-10-27)
219
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.4.1...v1.5.0)
220
-
221
- **Fixed bugs:**
222
-
223
- - :converge action should not re-install chef-client if the desired version is already installed [\#428](https://github.com/chef/chef-provisioning/issues/428)
224
- - SSH available timeout needs to be configurable [\#362](https://github.com/chef/chef-provisioning/issues/362)
225
- - Making available? timeout use provided ssh\_options, fixes \#362 [\#466](https://github.com/chef/chef-provisioning/pull/466) ([tyler-ball](https://github.com/tyler-ball))
226
- - Pinning to mixlib-install 0.7.0 until 1.0 is out [\#464](https://github.com/chef/chef-provisioning/pull/464) ([tyler-ball](https://github.com/tyler-ball))
227
- - Added bootstrap\_no\_proxy support [\#458](https://github.com/chef/chef-provisioning/pull/458) ([jsmartt](https://github.com/jsmartt))
228
-
229
- **Closed issues:**
230
-
231
- - The action "stop" on a Machine resource does not appear to work [\#463](https://github.com/chef/chef-provisioning/issues/463)
232
- - machine chef-client run output not logging to provisioner chef-client output [\#274](https://github.com/chef/chef-provisioning/issues/274)
233
-
234
- **Merged pull requests:**
235
-
236
- - Add gemspec files to allow bundler to run from the gem [\#461](https://github.com/chef/chef-provisioning/pull/461) ([ksubrama](https://github.com/ksubrama))
237
- - Pin mixlib-install more strictly. [\#459](https://github.com/chef/chef-provisioning/pull/459) ([sersut](https://github.com/sersut))
238
-
239
- ## [v1.4.1](https://github.com/chef/chef-provisioning/tree/v1.4.1) (2015-09-30)
240
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.4.0...v1.4.1)
241
-
242
- **Fixed bugs:**
243
-
244
- - ohai\_hints should be be created at c:\chef\ohai\hints when provisioning windows nodes [\#433](https://github.com/chef/chef-provisioning/issues/433)
245
- - Fix install\_sh\_arguments passing after the conversion to mixlib-install [\#452](https://github.com/chef/chef-provisioning/pull/452) ([irvingpop](https://github.com/irvingpop))
246
- - Windows ohai hints, fixes \#433 [\#435](https://github.com/chef/chef-provisioning/pull/435) ([hh](https://github.com/hh))
247
-
248
- ## [v1.4.0](https://github.com/chef/chef-provisioning/tree/v1.4.0) (2015-09-16)
249
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.3.0...v1.4.0)
250
-
251
- **Implemented enhancements:**
252
-
253
- - Provisioning driver generator script [\#395](https://github.com/chef/chef-provisioning/issues/395)
254
- - Marking lxc and hanlon as seeking maintainers [\#440](https://github.com/chef/chef-provisioning/pull/440) ([tyler-ball](https://github.com/tyler-ball))
255
- - Adding additional resource attributes for load\_balancer and machine\_image [\#436](https://github.com/chef/chef-provisioning/pull/436) ([tyler-ball](https://github.com/tyler-ball))
256
- - Specify additional machine\_options from the resource attributes [\#424](https://github.com/chef/chef-provisioning/pull/424) ([tyler-ball](https://github.com/tyler-ball))
257
- - Adding ignore\_converge\_failure option, fixes \#393 [\#414](https://github.com/chef/chef-provisioning/pull/414) ([tyler-ball](https://github.com/tyler-ball))
258
- - Add a generic rspec module, and use and test it via the generator script. [\#408](https://github.com/chef/chef-provisioning/pull/408) ([randomcamel](https://github.com/randomcamel))
259
-
260
- **Fixed bugs:**
261
-
262
- - Provisioning fails with chef api error [\#394](https://github.com/chef/chef-provisioning/issues/394)
263
- - specifying an audit-mode in a machine's run\_list fails the provisioning run. [\#393](https://github.com/chef/chef-provisioning/issues/393)
264
- - machine\_file resource does not work properly using with\_machine\_options [\#390](https://github.com/chef/chef-provisioning/issues/390)
265
- - install\_sh.rb has an issue with bootstrap [\#380](https://github.com/chef/chef-provisioning/issues/380)
266
- - Metal command --help doesn't show or explain command arguments [\#71](https://github.com/chef/chef-provisioning/issues/71)
267
- - Added missing arguments to call of chef install shell script. [\#439](https://github.com/chef/chef-provisioning/pull/439) ([tarak](https://github.com/tarak))
268
- - Add provides statements to providers to avoid chef-client warnings [\#416](https://github.com/chef/chef-provisioning/pull/416) ([stevendanna](https://github.com/stevendanna))
269
- - Run our tests in a matrix of Chef client versions. [\#415](https://github.com/chef/chef-provisioning/pull/415) ([randomcamel](https://github.com/randomcamel))
270
- - Upload the PS1 script and run directly [\#410](https://github.com/chef/chef-provisioning/pull/410) ([thommay](https://github.com/thommay))
271
- - bump mixlib-install version [\#406](https://github.com/chef/chef-provisioning/pull/406) ([thommay](https://github.com/thommay))
272
- - /etc/os-release support, yum support, package\_metadata option [\#315](https://github.com/chef/chef-provisioning/pull/315) ([glennmatthews](https://github.com/glennmatthews))
273
-
274
- **Closed issues:**
275
-
276
- - Converge fails when /tmp/chef-install.sh doesn't exist [\#423](https://github.com/chef/chef-provisioning/issues/423)
277
- - Error forwarding port: could not forward 8889 or 0 [\#392](https://github.com/chef/chef-provisioning/issues/392)
278
- - Chef Provisioning- Vagrant [\#372](https://github.com/chef/chef-provisioning/issues/372)
279
- - chef-provisioning bootstrap fails [\#359](https://github.com/chef/chef-provisioning/issues/359)
280
-
281
- **Merged pull requests:**
282
-
283
- - Remove dependency on chef gem [\#441](https://github.com/chef/chef-provisioning/pull/441) ([ksubrama](https://github.com/ksubrama))
284
- - Adding a CONTRIBUTING document [\#437](https://github.com/chef/chef-provisioning/pull/437) ([tyler-ball](https://github.com/tyler-ball))
285
- - Major generator/spec/Travis improvements [\#426](https://github.com/chef/chef-provisioning/pull/426) ([randomcamel](https://github.com/randomcamel))
286
- - Add gem version badges for core + drivers. [\#412](https://github.com/chef/chef-provisioning/pull/412) ([randomcamel](https://github.com/randomcamel))
287
-
288
- ## [v1.3.0](https://github.com/chef/chef-provisioning/tree/v1.3.0) (2015-08-05)
289
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.2.1...v1.3.0)
290
-
291
- **Implemented enhancements:**
292
-
293
- - expose machine\_spec.from\_image to allocate\_machine [\#366](https://github.com/chef/chef-provisioning/pull/366) ([mwrock](https://github.com/mwrock))
294
-
295
- **Fixed bugs:**
296
-
297
- - chef 12.4.0 and chef-provisioning have a problem when bootstrapping a node [\#377](https://github.com/chef/chef-provisioning/issues/377)
298
- - Add a version compatibility check to ChefDK's `chef verify` [\#355](https://github.com/chef/chef-provisioning/issues/355)
299
- - Unit tests and checkstyle? [\#180](https://github.com/chef/chef-provisioning/issues/180)
300
- - Hardware matching [\#135](https://github.com/chef/chef-provisioning/issues/135)
301
- - Data center abstraction [\#132](https://github.com/chef/chef-provisioning/issues/132)
302
- - Machine migration [\#130](https://github.com/chef/chef-provisioning/issues/130)
303
- - Chef environment on remote machines [\#88](https://github.com/chef/chef-provisioning/issues/88)
304
- - metal command seems to not use .chef/knife.rb. [\#70](https://github.com/chef/chef-provisioning/issues/70)
305
- - metal binary complains about private key [\#65](https://github.com/chef/chef-provisioning/issues/65)
306
- - Xen server VM provisioner [\#2](https://github.com/chef/chef-provisioning/issues/2)
307
- - docs for VMware vCloud Air [\#368](https://github.com/chef/chef-provisioning/pull/368) ([hh](https://github.com/hh))
308
-
309
- **Closed issues:**
310
-
311
- - NoMethodError: undefined method `encoding' [\#405](https://github.com/chef/chef-provisioning/issues/405)
312
- - \[Feature Request\] Allow chef-provisioning to force a recipe to run, even if it doesn't think it needs to be run [\#399](https://github.com/chef/chef-provisioning/issues/399)
313
- - Set up minimal Travis build [\#397](https://github.com/chef/chef-provisioning/issues/397)
314
- - Chef Metal with 1.0 [\#396](https://github.com/chef/chef-provisioning/issues/396)
315
- - Non-Windows instances with a virtualization type of 'hvm' are currently not supported for this instance type [\#388](https://github.com/chef/chef-provisioning/issues/388)
316
- - machine resource fails if audit failures occur [\#387](https://github.com/chef/chef-provisioning/issues/387)
317
- - What does the error "missing required parameter name" mean [\#386](https://github.com/chef/chef-provisioning/issues/386)
318
- - Can't connect to EC2 instance in VPC with public IP [\#385](https://github.com/chef/chef-provisioning/issues/385)
319
- - Windows hosts are bootstrapped with the wrong url for chef-client [\#327](https://github.com/chef/chef-provisioning/issues/327)
320
- - chef\_version convergence option is ignored for windows machines [\#300](https://github.com/chef/chef-provisioning/issues/300)
321
- - Create opennebula plugin for chef-provisioning [\#264](https://github.com/chef/chef-provisioning/issues/264)
322
-
323
- **Merged pull requests:**
324
-
325
- - Remove warning about Hosted/Enterprise and clients in admins group [\#402](https://github.com/chef/chef-provisioning/pull/402) ([jkeiser](https://github.com/jkeiser))
326
- - Add Travis badge to README. [\#400](https://github.com/chef/chef-provisioning/pull/400) ([randomcamel](https://github.com/randomcamel))
327
- - Initial .travis.yml. [\#398](https://github.com/chef/chef-provisioning/pull/398) ([randomcamel](https://github.com/randomcamel))
328
- - use mixlib-install to install from omnitruck [\#389](https://github.com/chef/chef-provisioning/pull/389) ([thommay](https://github.com/thommay))
329
-
330
- ## [v1.2.1](https://github.com/chef/chef-provisioning/tree/v1.2.1) (2015-07-17)
331
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.2.0...v1.2.1)
332
-
333
- **Fixed bugs:**
334
-
335
- - Conflicting winrm gem causes knife to fail [\#370](https://github.com/chef/chef-provisioning/issues/370)
336
- - remove or update test/acceptance project [\#363](https://github.com/chef/chef-provisioning/issues/363)
337
- - Arity mismatch between MachineImage's :destroy and Driver\#destroy\_image [\#358](https://github.com/chef/chef-provisioning/issues/358)
338
- - manual hydrate needed with chef\_data\_bag on create [\#242](https://github.com/chef/chef-provisioning/issues/242)
339
- - ChefMetal::ConvergenceStrategy::PrecreateChefObjects does not support proxy settings [\#187](https://github.com/chef/chef-provisioning/issues/187)
340
- - Suppress key\_data in debug output [\#171](https://github.com/chef/chef-provisioning/issues/171)
341
- - host\_node being set to /organizations/NAME/nodes/ with no node name [\#141](https://github.com/chef/chef-provisioning/issues/141)
342
- - Authorized ssh key overwritten with metal\_default [\#131](https://github.com/chef/chef-provisioning/issues/131)
343
- - Deleting acceptance tests since they are super stale, fixes \#363 [\#379](https://github.com/chef/chef-provisioning/pull/379) ([tyler-ball](https://github.com/tyler-ball))
344
- - Fix chef\_group [\#346](https://github.com/chef/chef-provisioning/pull/346) ([obazoud](https://github.com/obazoud))
345
- - Add options\[:scp\_temp\_dir\] to set a SCP destination other than /tmp [\#339](https://github.com/chef/chef-provisioning/pull/339) ([glennmatthews](https://github.com/glennmatthews))
346
-
347
- **Closed issues:**
348
-
349
- - Lower the version of chef. [\#391](https://github.com/chef/chef-provisioning/issues/391)
350
- - Cannot bootstrap FreeBSD \(bash is not installed\) [\#381](https://github.com/chef/chef-provisioning/issues/381)
351
- - user\_data is not working in provisioning ec2 server [\#375](https://github.com/chef/chef-provisioning/issues/375)
352
- - Latest provisioning gem is incompatible with semi-recent Chef [\#374](https://github.com/chef/chef-provisioning/issues/374)
353
- - Chef Provisioning- Vagrant [\#373](https://github.com/chef/chef-provisioning/issues/373)
354
- - Chef Provisioning- Vagrant [\#367](https://github.com/chef/chef-provisioning/issues/367)
355
- - unusual behavior w/ chef-client -z and provisioning [\#357](https://github.com/chef/chef-provisioning/issues/357)
356
- - Merge Chef-maintained drivers into the chef-provisioning repo [\#354](https://github.com/chef/chef-provisioning/issues/354)
357
- - Update to the SDK V2 [\#353](https://github.com/chef/chef-provisioning/issues/353)
358
- - Add support for reserved instances [\#351](https://github.com/chef/chef-provisioning/issues/351)
359
- - OpenSSL issue with chef provisioning [\#343](https://github.com/chef/chef-provisioning/issues/343)
360
- - no implicit conversion of String into Integer [\#270](https://github.com/chef/chef-provisioning/issues/270)
361
- - The specified wait\_for timeout \(0.01 seconds\) was exceeded [\#269](https://github.com/chef/chef-provisioning/issues/269)
362
- - Chef::Config.private\_key\_paths does not include ~/.chef/keys by default [\#258](https://github.com/chef/chef-provisioning/issues/258)
363
- - chef-client -z can't find my ssh key when creating aws machine\_image [\#234](https://github.com/chef/chef-provisioning/issues/234)
364
- - Document which classes are part of the public interface [\#203](https://github.com/chef/chef-provisioning/issues/203)
365
- - machine\_batch failing on write file /etc/chef/client.pem [\#189](https://github.com/chef/chef-provisioning/issues/189)
366
- - with\_driver fails on second converge: Canonical driver ... has already been created! [\#184](https://github.com/chef/chef-provisioning/issues/184)
367
- - Output doesn't stream when run within non-login session. [\#176](https://github.com/chef/chef-provisioning/issues/176)
368
- - QUESTION: How can I use a custom Chef library with Metal? [\#173](https://github.com/chef/chef-provisioning/issues/173)
369
- - machine\_batch convergence cookbook synchronization very slow [\#172](https://github.com/chef/chef-provisioning/issues/172)
370
-
371
- **Merged pull requests:**
372
-
373
- - Tiny doc update to add clarity to vagrant provisioning example [\#369](https://github.com/chef/chef-provisioning/pull/369) ([scotthain](https://github.com/scotthain))
374
- - Fix \#358: Arity mismatch [\#364](https://github.com/chef/chef-provisioning/pull/364) ([randomcamel](https://github.com/randomcamel))
375
- - change chef-provisioning-fog to chef-provisioning-aws in the AWS example [\#352](https://github.com/chef/chef-provisioning/pull/352) ([metadave](https://github.com/metadave))
376
- - update readme with vsphere driver url [\#344](https://github.com/chef/chef-provisioning/pull/344) ([mwrock](https://github.com/mwrock))
377
-
378
- ## [v1.2.0](https://github.com/chef/chef-provisioning/tree/v1.2.0) (2015-05-27)
379
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.1.1...v1.2.0)
380
-
381
- **Fixed bugs:**
382
-
383
- - machine\_batch :destroy may be creating additional threads which result in NoMethodError [\#319](https://github.com/chef/chef-provisioning/issues/319)
384
-
385
- **Closed issues:**
386
-
387
- - chef-dk 0.5.1 with chef-zero renders unusable chefzero://localhost:8889 URLs on nodes [\#336](https://github.com/chef/chef-provisioning/issues/336)
388
- - Converging 0 resources - Am I missing something? [\#320](https://github.com/chef/chef-provisioning/issues/320)
389
-
390
- **Merged pull requests:**
391
-
392
- - with\_driver must be specified [\#345](https://github.com/chef/chef-provisioning/pull/345) ([jtimberman](https://github.com/jtimberman))
393
- - Updating for newly introduced socketless mode [\#337](https://github.com/chef/chef-provisioning/pull/337) ([tyler-ball](https://github.com/tyler-ball))
394
- - bumping winrm dependency to 1.3.0 [\#332](https://github.com/chef/chef-provisioning/pull/332) ([mwrock](https://github.com/mwrock))
395
- - Adding documentation about the private key path [\#328](https://github.com/chef/chef-provisioning/pull/328) ([b-slim](https://github.com/b-slim))
396
- - Update chef gem to fix version conflict in ChefDK [\#314](https://github.com/chef/chef-provisioning/pull/314) ([teknofire](https://github.com/teknofire))
397
- - Update building\_drivers.md [\#309](https://github.com/chef/chef-provisioning/pull/309) ([jjasghar](https://github.com/jjasghar))
398
-
399
- ## [v1.1.1](https://github.com/chef/chef-provisioning/tree/v1.1.1) (2015-04-20)
400
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.1.0...v1.1.1)
401
-
402
- ## [v1.1.0](https://github.com/chef/chef-provisioning/tree/v1.1.0) (2015-04-16)
403
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.1...v1.1.0)
404
-
405
- **Closed issues:**
406
-
407
- - Net::HTTPServerException: 404 "Not Found" [\#323](https://github.com/chef/chef-provisioning/issues/323)
408
-
409
- **Merged pull requests:**
410
-
411
- - fix machine\_batch :destroy \#319 [\#321](https://github.com/chef/chef-provisioning/pull/321) ([wrightp](https://github.com/wrightp))
412
- - Install chef-client using Proxy [\#317](https://github.com/chef/chef-provisioning/pull/317) ([afiune](https://github.com/afiune))
413
- - Allow user to specify a custom stdout in Chef::Config\[:stdout\] [\#311](https://github.com/chef/chef-provisioning/pull/311) ([jkeiser](https://github.com/jkeiser))
414
-
415
- ## [v1.0.1](https://github.com/chef/chef-provisioning/tree/v1.0.1) (2015-04-07)
416
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0...v1.0.1)
417
-
418
- **Closed issues:**
419
-
420
- - Second run fails using Vagrant \(problem in InstallCached strategy\) [\#308](https://github.com/chef/chef-provisioning/issues/308)
421
-
422
- **Merged pull requests:**
423
-
424
- - Dependency cleanup [\#316](https://github.com/chef/chef-provisioning/pull/316) ([tyler-ball](https://github.com/tyler-ball))
425
- - Delete machine specs when machines are deleted [\#310](https://github.com/chef/chef-provisioning/pull/310) ([jkeiser](https://github.com/jkeiser))
426
-
427
- ## [v1.0.0](https://github.com/chef/chef-provisioning/tree/v1.0.0) (2015-04-02)
428
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0.rc.2...v1.0.0)
429
-
430
- ## [v1.0.0.rc.2](https://github.com/chef/chef-provisioning/tree/v1.0.0.rc.2) (2015-04-02)
431
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.20.1...v1.0.0.rc.2)
432
-
433
- ## [v0.20.1](https://github.com/chef/chef-provisioning/tree/v0.20.1) (2015-04-02)
434
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0.rc.1...v0.20.1)
435
-
436
- ## [v1.0.0.rc.1](https://github.com/chef/chef-provisioning/tree/v1.0.0.rc.1) (2015-04-01)
437
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.20...v1.0.0.rc.1)
438
-
439
- ## [v0.20](https://github.com/chef/chef-provisioning/tree/v0.20) (2015-03-27)
440
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.19...v0.20)
441
-
442
- **Fixed bugs:**
443
-
444
- - action :delete & action :destroy [\#186](https://github.com/chef/chef-provisioning/issues/186)
445
- - support setting desired chef client version [\#148](https://github.com/chef/chef-provisioning/issues/148)
446
- - Attributes are erased at re-converge when set in 'machine' resource [\#137](https://github.com/chef/chef-provisioning/issues/137)
447
- - Machine\_batch converge action erases attributes created by recipes during the converge [\#116](https://github.com/chef/chef-provisioning/issues/116)
448
- - Can't use Chef::Node::ImmutableMash in "attributes" attribute in the machine resource [\#21](https://github.com/chef/chef-provisioning/issues/21)
449
-
450
- **Closed issues:**
451
-
452
- - Can not destroy load balancers [\#307](https://github.com/chef/chef-provisioning/issues/307)
453
- - machine\[\].create idempotency checks fails in freebsd [\#289](https://github.com/chef/chef-provisioning/issues/289)
454
- - load\_balancer errors on :destroy action [\#278](https://github.com/chef/chef-provisioning/issues/278)
455
- - machine\_execute seems not to have problems figuring out what driver to use? [\#201](https://github.com/chef/chef-provisioning/issues/201)
456
-
457
- **Merged pull requests:**
458
-
459
- - Use the actual `name` from the superclass, else we get caught in a loop [\#312](https://github.com/chef/chef-provisioning/pull/312) ([jkeiser](https://github.com/jkeiser))
460
- - Jk/empty lb [\#299](https://github.com/chef/chef-provisioning/pull/299) ([jkeiser](https://github.com/jkeiser))
461
- - Create generic "spec\_registry" which will allow drivers to [\#297](https://github.com/chef/chef-provisioning/pull/297) ([jkeiser](https://github.com/jkeiser))
462
- - Make with\_driver do ... end work [\#296](https://github.com/chef/chef-provisioning/pull/296) ([jkeiser](https://github.com/jkeiser))
463
-
464
- ## [v0.19](https://github.com/chef/chef-provisioning/tree/v0.19) (2015-02-26)
465
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.18...v0.19)
466
-
467
- **Fixed bugs:**
468
-
469
- - chef-metal is nuking 'normal' attributes on every converge. [\#209](https://github.com/chef/chef-provisioning/issues/209)
470
- - Initial chef-client run on workstation talking to hosted chef-server fails on creating client [\#59](https://github.com/chef/chef-provisioning/issues/59)
471
-
472
- **Closed issues:**
473
-
474
- - machine\_batch does not inherit option from with\_machine\_options [\#277](https://github.com/chef/chef-provisioning/issues/277)
475
- - There doesn't seem to be a way to define provider specific settings for Vagrant [\#271](https://github.com/chef/chef-provisioning/issues/271)
476
- - with\_data\_center method does not work with chef-provisioning [\#265](https://github.com/chef/chef-provisioning/issues/265)
477
- - NoMethodError: undefined method `gsub' for nil:NilClass following net-ssh patch upgrade [\#263](https://github.com/chef/chef-provisioning/issues/263)
478
- - Stuck at ssh for centos aws machine [\#257](https://github.com/chef/chef-provisioning/issues/257)
479
- - Broken link and update in Documentation [\#252](https://github.com/chef/chef-provisioning/issues/252)
480
- - visibility for machine\_options issue [\#246](https://github.com/chef/chef-provisioning/issues/246)
481
-
482
- **Merged pull requests:**
483
-
484
- - Don't save after converge \(that destroys attributes created by the converge\) [\#294](https://github.com/chef/chef-provisioning/pull/294) ([jkeiser](https://github.com/jkeiser))
485
- - Fix \#59: set node permissions correctly before converging [\#293](https://github.com/chef/chef-provisioning/pull/293) ([jkeiser](https://github.com/jkeiser))
486
- - Remove some project noise files ;\) [\#291](https://github.com/chef/chef-provisioning/pull/291) ([fnichol](https://github.com/fnichol))
487
- - Pass \[\] instead of nil when there are no machine specs [\#286](https://github.com/chef/chef-provisioning/pull/286) ([jkeiser](https://github.com/jkeiser))
488
- - Add chef\_version, prerelease and install\_sh\_arguments to InstallSh [\#284](https://github.com/chef/chef-provisioning/pull/284) ([jkeiser](https://github.com/jkeiser))
489
- - Add machine.chef\_config attribute to change client.rb [\#279](https://github.com/chef/chef-provisioning/pull/279) ([jkeiser](https://github.com/jkeiser))
490
- - Usability updates for my first time using chef-provisioning [\#275](https://github.com/chef/chef-provisioning/pull/275) ([tyler-ball](https://github.com/tyler-ball))
491
-
492
- ## [v0.18](https://github.com/chef/chef-provisioning/tree/v0.18) (2015-01-27)
493
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.17...v0.18)
494
-
495
- **Fixed bugs:**
496
-
497
- - Runlist...doesn't...? [\#249](https://github.com/chef/chef-provisioning/issues/249)
498
-
499
- **Closed issues:**
500
-
501
- - Cannot associate Elastic IP with EC2 driver to machine [\#253](https://github.com/chef/chef-provisioning/issues/253)
502
-
503
- **Merged pull requests:**
504
-
505
- - Fix forward\_port when using net-ssh 2.9.2. [\#267](https://github.com/chef/chef-provisioning/pull/267) ([causton81](https://github.com/causton81))
506
- - Destroy action to the image provider. [\#251](https://github.com/chef/chef-provisioning/pull/251) ([miguelcnf](https://github.com/miguelcnf))
507
-
508
- ## [v0.17](https://github.com/chef/chef-provisioning/tree/v0.17) (2014-12-17)
509
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.16...v0.17)
510
-
511
- **Fixed bugs:**
512
-
513
- - Automatically create images data bag if needed [\#228](https://github.com/chef/chef-provisioning/issues/228)
514
- - Vagrant Example Fails with Checksum Mismatch [\#206](https://github.com/chef/chef-provisioning/issues/206)
515
- - Stuck waiting for Windows SSH access? [\#144](https://github.com/chef/chef-provisioning/issues/144)
516
-
517
- **Closed issues:**
518
-
519
- - error running the example [\#231](https://github.com/chef/chef-provisioning/issues/231)
520
- - machine\_batch doesn't destroy [\#226](https://github.com/chef/chef-provisioning/issues/226)
521
- - README shows incorrect require for using fog\_key\_pair [\#225](https://github.com/chef/chef-provisioning/issues/225)
522
- - Error: Could not find a valid gem 'chef-provisioning-vagrant' [\#217](https://github.com/chef/chef-provisioning/issues/217)
523
- - signal to generate a key raises errors in converge output [\#213](https://github.com/chef/chef-provisioning/issues/213)
524
- - Machine destroy fails with "undefined local variable or method `iam\_endpoint'" [\#198](https://github.com/chef/chef-provisioning/issues/198)
525
- - FAQ link in readme leads to 404 [\#192](https://github.com/chef/chef-provisioning/issues/192)
526
- - Windows converge error: command 'mkdir -p /etc/chef' exited with code 127 [\#178](https://github.com/chef/chef-provisioning/issues/178)
527
- - Way to not need an /etc/chef for provisioning chef-client run? [\#177](https://github.com/chef/chef-provisioning/issues/177)
528
- - Error executing action 'destroy' on resource 'machine\_batch\[default\]' [\#152](https://github.com/chef/chef-provisioning/issues/152)
529
- - Setting up local mode when embedding chef-metal [\#85](https://github.com/chef/chef-provisioning/issues/85)
530
-
531
- **Merged pull requests:**
532
-
533
- - Remove pry [\#248](https://github.com/chef/chef-provisioning/pull/248) ([jaym](https://github.com/jaym))
534
- - Update to ignore .idea directories. [\#247](https://github.com/chef/chef-provisioning/pull/247) ([miguelcnf](https://github.com/miguelcnf))
535
- - Change Metal to Provisioning [\#240](https://github.com/chef/chef-provisioning/pull/240) ([twellspring](https://github.com/twellspring))
536
- - In simple example, require chef/provisioning [\#239](https://github.com/chef/chef-provisioning/pull/239) ([janeireton](https://github.com/janeireton))
537
- - MEGA chef-provisioning-test-suite project dump [\#238](https://github.com/chef/chef-provisioning/pull/238) ([wrightp](https://github.com/wrightp))
538
- - Fix ssh driver url [\#233](https://github.com/chef/chef-provisioning/pull/233) ([gravitystorm](https://github.com/gravitystorm))
539
- - Flip logic on ssl peer validation [\#232](https://github.com/chef/chef-provisioning/pull/232) ([andrewelizondo](https://github.com/andrewelizondo))
540
- - add chef-provisioning-crowbar to README.md [\#230](https://github.com/chef/chef-provisioning/pull/230) ([newgoliath](https://github.com/newgoliath))
541
- - Update vSphere driver link. [\#229](https://github.com/chef/chef-provisioning/pull/229) ([cmluciano](https://github.com/cmluciano))
542
- - Make machine\_batch convergent [\#227](https://github.com/chef/chef-provisioning/pull/227) ([jkeiser](https://github.com/jkeiser))
543
- - Work with Chef 12 [\#224](https://github.com/chef/chef-provisioning/pull/224) ([jkeiser](https://github.com/jkeiser))
544
-
545
- ## [v0.16](https://github.com/chef/chef-provisioning/tree/v0.16) (2014-11-05)
546
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.3...v0.16)
547
-
548
- ## [v0.15.3](https://github.com/chef/chef-provisioning/tree/v0.15.3) (2014-11-05)
549
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.2...v0.15.3)
550
-
551
- ## [v0.15.2](https://github.com/chef/chef-provisioning/tree/v0.15.2) (2014-11-04)
552
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.1...v0.15.2)
553
-
554
- **Closed issues:**
555
-
556
- - config validation [\#223](https://github.com/chef/chef-provisioning/issues/223)
557
- - create utility for generating chef-client command strings based on server, driver, platform, tests, etc [\#222](https://github.com/chef/chef-provisioning/issues/222)
558
- - configurable os platform/version and mapping [\#221](https://github.com/chef/chef-provisioning/issues/221)
559
- - chef-client error scanning [\#220](https://github.com/chef/chef-provisioning/issues/220)
560
- - add azure driver test [\#219](https://github.com/chef/chef-provisioning/issues/219)
561
- - Configure chef-provisioning-test-suite for Travis CI [\#218](https://github.com/chef/chef-provisioning/issues/218)
562
- - Doubt in Server Provisioning through Chef metal, Vagrant and VBox [\#215](https://github.com/chef/chef-provisioning/issues/215)
563
- - Where is chef-provisioning-fog? [\#214](https://github.com/chef/chef-provisioning/issues/214)
564
-
565
- **Merged pull requests:**
566
-
567
- - Rename Chef Metal to Chef Provisioning [\#216](https://github.com/chef/chef-provisioning/pull/216) ([kanerogers](https://github.com/kanerogers))
568
-
569
- ## [v0.15.1](https://github.com/chef/chef-provisioning/tree/v0.15.1) (2014-10-30)
570
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15...v0.15.1)
571
-
572
- **Closed issues:**
573
-
574
- - Rename to chef-provisioning [\#210](https://github.com/chef/chef-provisioning/issues/210)
575
-
576
- ## [v0.15](https://github.com/chef/chef-provisioning/tree/v0.15) (2014-10-29)
577
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14.2...v0.15)
578
-
579
- **Fixed bugs:**
580
-
581
- - machine.tag does not add tag to AWS \(only the node\) [\#165](https://github.com/chef/chef-provisioning/issues/165)
582
- - with\_chef\_local\_server isn't working with metal 0.14.2 [\#159](https://github.com/chef/chef-provisioning/issues/159)
583
- - Remove default parallelism [\#124](https://github.com/chef/chef-provisioning/issues/124)
584
- - Server provesioning through Vagrant behind Corporate Firewall using Chef Metal. [\#121](https://github.com/chef/chef-provisioning/issues/121)
585
- - machine\_file connects as vagrant [\#120](https://github.com/chef/chef-provisioning/issues/120)
586
- - 'action :converge\_only' exception [\#90](https://github.com/chef/chef-provisioning/issues/90)
587
- - Unable to use Vagrant driver behind corporate http proxy [\#74](https://github.com/chef/chef-provisioning/issues/74)
588
-
589
- **Closed issues:**
590
-
591
- - FFI\_Yajl::ParseError: parse error: premature EOF when using with\_chef\_server [\#204](https://github.com/chef/chef-provisioning/issues/204)
592
- - Azure Support [\#191](https://github.com/chef/chef-provisioning/issues/191)
593
- - QUESTION: Multiple machine tags [\#188](https://github.com/chef/chef-provisioning/issues/188)
594
- - ChecksumMismatch error running example with Vagrant provider [\#183](https://github.com/chef/chef-provisioning/issues/183)
595
- - Can I send user data to AWS when creating an instance from an AMI [\#182](https://github.com/chef/chef-provisioning/issues/182)
596
- - Net::HTTPServerException: 404 "Object Not Found" [\#181](https://github.com/chef/chef-provisioning/issues/181)
597
- - undefined method `\<\<' for \#\<Chef::EventDispatch::EventsOutputStream:0x00000005431890\> [\#179](https://github.com/chef/chef-provisioning/issues/179)
598
- - Can't connect to Windows machine running SSH [\#175](https://github.com/chef/chef-provisioning/issues/175)
599
- - custom bootstrap? [\#169](https://github.com/chef/chef-provisioning/issues/169)
600
- - Is the -j option working correctly with metal? [\#168](https://github.com/chef/chef-provisioning/issues/168)
601
- - Can I run more than one chef-client at once? [\#166](https://github.com/chef/chef-provisioning/issues/166)
602
- - with\_chef\_local\_server can't find vendored cookbook [\#163](https://github.com/chef/chef-provisioning/issues/163)
603
- - Not handling metadata.rb dependencies correctly? [\#161](https://github.com/chef/chef-provisioning/issues/161)
604
- - with\_chef\_local\_server can't find cookbook in cookbook\_path [\#160](https://github.com/chef/chef-provisioning/issues/160)
605
- - Converging after creating - undefined method 'split' for nil:NilClass [\#158](https://github.com/chef/chef-provisioning/issues/158)
606
- - Provisioning machines at a later time after creating [\#156](https://github.com/chef/chef-provisioning/issues/156)
607
- - Convergence error - Permission denied @ dir\_s\_mkdir [\#154](https://github.com/chef/chef-provisioning/issues/154)
608
- - Annoying SSL warning when creating new machine [\#150](https://github.com/chef/chef-provisioning/issues/150)
609
- - "SSH did not come up" timeout [\#146](https://github.com/chef/chef-provisioning/issues/146)
610
- - Proxy blocking installations. [\#145](https://github.com/chef/chef-provisioning/issues/145)
611
- - Chef-metal-fog with digital ocean doesn't seem to like large ssh keys [\#140](https://github.com/chef/chef-provisioning/issues/140)
612
-
613
- **Merged pull requests:**
614
-
615
- - Chef provisioning [\#211](https://github.com/chef/chef-provisioning/pull/211) ([jkeiser](https://github.com/jkeiser))
616
- - Require data bag resources [\#208](https://github.com/chef/chef-provisioning/pull/208) ([raskchanky](https://github.com/raskchanky))
617
- - Support for resources that are backed by data bags [\#205](https://github.com/chef/chef-provisioning/pull/205) ([johnewart](https://github.com/johnewart))
618
- - Add a Gitter chat badge to README.md [\#199](https://github.com/chef/chef-provisioning/pull/199) ([gitter-badger](https://github.com/gitter-badger))
619
- - Load balancer and data center support work [\#196](https://github.com/chef/chef-provisioning/pull/196) ([johnewart](https://github.com/johnewart))
620
- - Makes it so that a user who has sudo permissions can download a file that their user wouldn't have permission to access normally. [\#195](https://github.com/chef/chef-provisioning/pull/195) ([johnewart](https://github.com/johnewart))
621
- - Winrm bump [\#194](https://github.com/chef/chef-provisioning/pull/194) ([mwrock](https://github.com/mwrock))
622
- - YARDoc updates [\#193](https://github.com/chef/chef-provisioning/pull/193) ([johnewart](https://github.com/johnewart))
623
- - do not verify ssl because we only use http [\#164](https://github.com/chef/chef-provisioning/pull/164) ([hh](https://github.com/hh))
624
- - Added proxy support for metadata download [\#162](https://github.com/chef/chef-provisioning/pull/162) ([ndobson](https://github.com/ndobson))
625
-
626
- ## [v0.14.2](https://github.com/chef/chef-provisioning/tree/v0.14.2) (2014-09-04)
627
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14.1...v0.14.2)
628
-
629
- **Fixed bugs:**
630
-
631
- - Some node names don't seem to work \(car and sun\) [\#129](https://github.com/chef/chef-provisioning/issues/129)
632
- - NoMethodError - machine\[central-server-1\] \(centralized\_repository::default line 63\) had an error: NoMethodError: undefined method `name' for \["BootstrapHost", "myhostname"\]:Array [\#114](https://github.com/chef/chef-provisioning/issues/114)
633
- - Error on machine\_batch if running chef as different user [\#111](https://github.com/chef/chef-provisioning/issues/111)
634
- - Chef 11.12.8 incompatible with cheffish 0.7 [\#106](https://github.com/chef/chef-provisioning/issues/106)
635
- - with\_machine\_options does not honor :key\_name [\#91](https://github.com/chef/chef-provisioning/issues/91)
636
- - nil machine object raise expection in dry-run [\#54](https://github.com/chef/chef-provisioning/issues/54)
637
- - After creating the node/client ec2 attributes are not available [\#34](https://github.com/chef/chef-provisioning/issues/34)
638
- - 'with\_chef\_server' bootstrap permissions for client.pem and client.rb [\#32](https://github.com/chef/chef-provisioning/issues/32)
639
-
640
- **Closed issues:**
641
-
642
- - Possible to use different ports for parallel chef-zero runs? [\#155](https://github.com/chef/chef-provisioning/issues/155)
643
- - SCP did not finish successfully \(1\) [\#151](https://github.com/chef/chef-provisioning/issues/151)
644
- - cannot load such file -- chef\_metal/driver\_init/fog [\#149](https://github.com/chef/chef-provisioning/issues/149)
645
- - Chef::Exceptions::ContentLengthMismatch: Response body length 65536 does not match HTTP Content-Length header 88744. [\#139](https://github.com/chef/chef-provisioning/issues/139)
646
- - Dependency solver overloaded [\#112](https://github.com/chef/chef-provisioning/issues/112)
647
- - 0.13 issue: Unable to resolve dependencies: cheffish requires chef-zero \(~\> 2.2\) [\#105](https://github.com/chef/chef-provisioning/issues/105)
648
-
649
- **Merged pull requests:**
650
-
651
- - pass timeout from execution\_options to winrm set\_timeout [\#153](https://github.com/chef/chef-provisioning/pull/153) ([mwrock](https://github.com/mwrock))
652
- - Remove Chef 11.14 alpha note in readme [\#136](https://github.com/chef/chef-provisioning/pull/136) ([viglesiasce](https://github.com/viglesiasce))
653
- - Handle Host Down and Network Unreachable [\#127](https://github.com/chef/chef-provisioning/pull/127) ([viglesiasce](https://github.com/viglesiasce))
654
-
655
- ## [v0.14.1](https://github.com/chef/chef-provisioning/tree/v0.14.1) (2014-08-19)
656
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14...v0.14.1)
657
-
658
- **Closed issues:**
659
-
660
- - perform convergence talking to chef-zero on the node \(ala test-kitchen\) [\#122](https://github.com/chef/chef-provisioning/issues/122)
661
-
662
- ## [v0.14](https://github.com/chef/chef-provisioning/tree/v0.14) (2014-08-18)
663
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.13...v0.14)
664
-
665
- **Closed issues:**
666
-
667
- - Creating clusters in Vagrant with chef-metal yields a Net::SSH::Exception [\#123](https://github.com/chef/chef-provisioning/issues/123)
668
- - Error running Vagrant example on Windows 7 [\#118](https://github.com/chef/chef-provisioning/issues/118)
669
- - Make an image factory [\#109](https://github.com/chef/chef-provisioning/issues/109)
670
-
671
- **Merged pull requests:**
672
-
673
- - Get machine images working with multiple machines [\#119](https://github.com/chef/chef-provisioning/pull/119) ([johnewart](https://github.com/johnewart))
674
- - add VPC related comments to docs for AWS provider [\#117](https://github.com/chef/chef-provisioning/pull/117) ([andrewgoktepe](https://github.com/andrewgoktepe))
675
- - Machine image fixes [\#113](https://github.com/chef/chef-provisioning/pull/113) ([johnewart](https://github.com/johnewart))
676
- - Machine image [\#110](https://github.com/chef/chef-provisioning/pull/110) ([jkeiser](https://github.com/jkeiser))
677
-
678
- ## [v0.13](https://github.com/chef/chef-provisioning/tree/v0.13) (2014-07-15)
679
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.7.1...v0.13)
680
-
681
- ## [v0.7.1](https://github.com/chef/chef-provisioning/tree/v0.7.1) (2014-07-15)
682
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.6.1...v0.7.1)
683
-
684
- **Fixed bugs:**
685
-
686
- - Are there plans to make the fog gem an "opt in"? [\#63](https://github.com/chef/chef-provisioning/issues/63)
687
-
688
- **Closed issues:**
689
-
690
- - undefined method `parallel\_do' [\#101](https://github.com/chef/chef-provisioning/issues/101)
691
- - Bootstrapping Windows against chef-zero [\#96](https://github.com/chef/chef-provisioning/issues/96)
692
- - Changing the runlist of a machine [\#95](https://github.com/chef/chef-provisioning/issues/95)
693
- - Allow for indirect connectivity to nodes in driver interface [\#93](https://github.com/chef/chef-provisioning/issues/93)
694
-
695
- **Merged pull requests:**
696
-
697
- - add docs for providers [\#104](https://github.com/chef/chef-provisioning/pull/104) ([MrMMorris](https://github.com/MrMMorris))
698
- - Add workaround for Hosted Chef servers to README [\#103](https://github.com/chef/chef-provisioning/pull/103) ([MrMMorris](https://github.com/MrMMorris))
699
- - include bootstrap\_proxy key into convergence\_options [\#102](https://github.com/chef/chef-provisioning/pull/102) ([SIGUSR2](https://github.com/SIGUSR2))
700
- - winrm fixes [\#100](https://github.com/chef/chef-provisioning/pull/100) ([mwrock](https://github.com/mwrock))
701
- - waffle.io Badge [\#92](https://github.com/chef/chef-provisioning/pull/92) ([waffle-iron](https://github.com/waffle-iron))
702
-
703
- ## [v0.6.1](https://github.com/chef/chef-provisioning/tree/v0.6.1) (2014-06-18)
704
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.12.1...v0.6.1)
705
-
706
- ## [v0.12.1](https://github.com/chef/chef-provisioning/tree/v0.12.1) (2014-06-18)
707
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.12...v0.12.1)
708
-
709
- **Closed issues:**
710
-
711
- - Failure with action :setup and machine\_batch [\#83](https://github.com/chef/chef-provisioning/issues/83)
712
-
713
- ## [v0.12](https://github.com/chef/chef-provisioning/tree/v0.12) (2014-06-18)
714
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.4...v0.12)
715
-
716
- **Closed issues:**
717
-
718
- - Less SSH Trash output [\#87](https://github.com/chef/chef-provisioning/issues/87)
719
- - 403 error when registering the new node as a client [\#80](https://github.com/chef/chef-provisioning/issues/80)
720
-
721
- **Merged pull requests:**
722
-
723
- - Fix incorrect timeline/blog post date in README.md [\#86](https://github.com/chef/chef-provisioning/pull/86) ([mikedillion](https://github.com/mikedillion))
724
-
725
- ## [v0.5.4](https://github.com/chef/chef-provisioning/tree/v0.5.4) (2014-06-10)
726
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.3...v0.5.4)
727
-
728
- **Merged pull requests:**
729
-
730
- - Typo fix in README [\#84](https://github.com/chef/chef-provisioning/pull/84) ([jalessio](https://github.com/jalessio))
731
- - fixing ssl verify mode value from none to verify\_none [\#82](https://github.com/chef/chef-provisioning/pull/82) ([mwrock](https://github.com/mwrock))
732
- - Fix machine\_file and machine\_execute which depend on connect\_to\_machine ... [\#81](https://github.com/chef/chef-provisioning/pull/81) ([irvingpop](https://github.com/irvingpop))
733
-
734
- ## [v0.5.3](https://github.com/chef/chef-provisioning/tree/v0.5.3) (2014-06-05)
735
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.2...v0.5.3)
736
-
737
- ## [v0.11.2](https://github.com/chef/chef-provisioning/tree/v0.11.2) (2014-06-04)
738
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.2...v0.11.2)
739
-
740
- ## [v0.5.2](https://github.com/chef/chef-provisioning/tree/v0.5.2) (2014-06-04)
741
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.1...v0.5.2)
742
-
743
- **Fixed bugs:**
744
-
745
- - Non-Ubuntu AWS SSH Does not work [\#69](https://github.com/chef/chef-provisioning/issues/69)
746
-
747
- **Closed issues:**
748
-
749
- - with\_chef\_local\_server :port gets you two listening chef-zero instances [\#79](https://github.com/chef/chef-provisioning/issues/79)
750
-
751
- ## [v0.11.1](https://github.com/chef/chef-provisioning/tree/v0.11.1) (2014-06-04)
752
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.1...v0.11.1)
753
-
754
- **Closed issues:**
755
-
756
- - ERROR: undefined method `config\_for\_url' for ChefMetal:Module [\#73](https://github.com/chef/chef-provisioning/issues/73)
757
-
758
- ## [v0.5.1](https://github.com/chef/chef-provisioning/tree/v0.5.1) (2014-06-04)
759
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11...v0.5.1)
760
-
761
- ## [v0.11](https://github.com/chef/chef-provisioning/tree/v0.11) (2014-06-04)
762
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.11...v0.11)
763
-
764
- **Closed issues:**
765
-
766
- - Add '--config-file-jail .' to the example given where you first spin up a box. [\#77](https://github.com/chef/chef-provisioning/issues/77)
767
- - dependency chef-metal-vagrant [\#76](https://github.com/chef/chef-provisioning/issues/76)
768
- - provisioner\_options not valid anymore? [\#75](https://github.com/chef/chef-provisioning/issues/75)
769
-
770
- ## [v0.11.beta.11](https://github.com/chef/chef-provisioning/tree/v0.11.beta.11) (2014-06-03)
771
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.6...v0.11.beta.11)
772
-
773
- ## [v0.5.beta.6](https://github.com/chef/chef-provisioning/tree/v0.5.beta.6) (2014-06-03)
774
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.10...v0.5.beta.6)
775
-
776
- ## [v0.11.beta.10](https://github.com/chef/chef-provisioning/tree/v0.11.beta.10) (2014-06-03)
777
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.5...v0.11.beta.10)
778
-
779
- ## [v0.5.beta.5](https://github.com/chef/chef-provisioning/tree/v0.5.beta.5) (2014-06-03)
780
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.9...v0.5.beta.5)
781
-
782
- ## [v0.11.beta.9](https://github.com/chef/chef-provisioning/tree/v0.11.beta.9) (2014-06-03)
783
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.8...v0.11.beta.9)
784
-
785
- ## [v0.11.beta.8](https://github.com/chef/chef-provisioning/tree/v0.11.beta.8) (2014-06-03)
786
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.4...v0.11.beta.8)
787
-
788
- ## [v0.5.beta.4](https://github.com/chef/chef-provisioning/tree/v0.5.beta.4) (2014-06-03)
789
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.7...v0.5.beta.4)
790
-
791
- **Closed issues:**
792
-
793
- - Documentation of Using Chef Profiles: bug or feature? [\#72](https://github.com/chef/chef-provisioning/issues/72)
794
- - chefspec tests see machines as machine\_batch [\#66](https://github.com/chef/chef-provisioning/issues/66)
795
- - Machines are converging twice [\#62](https://github.com/chef/chef-provisioning/issues/62)
796
- - How can i use 'secret\_file' from workstation knife config [\#33](https://github.com/chef/chef-provisioning/issues/33)
797
- - Question: Is there an example for 'with\_chef\_server' [\#13](https://github.com/chef/chef-provisioning/issues/13)
798
- - Consider using the newer lxc-download template [\#12](https://github.com/chef/chef-provisioning/issues/12)
799
- - Any reasons this is packaged as a gem and not HWRPs? [\#9](https://github.com/chef/chef-provisioning/issues/9)
800
- - Does chef-metal currently support Openstack? [\#5](https://github.com/chef/chef-provisioning/issues/5)
801
- - provisioner\_option directive overwrites defaults [\#3](https://github.com/chef/chef-provisioning/issues/3)
802
-
803
- ## [v0.11.beta.7](https://github.com/chef/chef-provisioning/tree/v0.11.beta.7) (2014-05-31)
804
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.3...v0.11.beta.7)
805
-
806
- ## [v0.5.beta.3](https://github.com/chef/chef-provisioning/tree/v0.5.beta.3) (2014-05-31)
807
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.6...v0.5.beta.3)
808
-
809
- **Closed issues:**
810
-
811
- - Problems with with\_chef\_server [\#67](https://github.com/chef/chef-provisioning/issues/67)
812
-
813
- ## [v0.11.beta.6](https://github.com/chef/chef-provisioning/tree/v0.11.beta.6) (2014-05-29)
814
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.5...v0.11.beta.6)
815
-
816
- **Closed issues:**
817
-
818
- - The run list from machine resource is not saved on node. [\#35](https://github.com/chef/chef-provisioning/issues/35)
819
-
820
- **Merged pull requests:**
821
-
822
- - Add options argument to SSH gateway [\#60](https://github.com/chef/chef-provisioning/pull/60) ([marcusn](https://github.com/marcusn))
823
-
824
- ## [v0.11.beta.5](https://github.com/chef/chef-provisioning/tree/v0.11.beta.5) (2014-05-28)
825
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.4...v0.11.beta.5)
826
-
827
- ## [v0.11.beta.4](https://github.com/chef/chef-provisioning/tree/v0.11.beta.4) (2014-05-28)
828
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.2...v0.11.beta.4)
829
-
830
- ## [v0.5.beta.2](https://github.com/chef/chef-provisioning/tree/v0.5.beta.2) (2014-05-28)
831
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.3...v0.5.beta.2)
832
-
833
- ## [v0.11.beta.3](https://github.com/chef/chef-provisioning/tree/v0.11.beta.3) (2014-05-28)
834
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.2...v0.11.beta.3)
835
-
836
- **Merged pull requests:**
837
-
838
- - typo editing [\#58](https://github.com/chef/chef-provisioning/pull/58) ([bdupras](https://github.com/bdupras))
839
- - vmware typos [\#57](https://github.com/chef/chef-provisioning/pull/57) ([bdupras](https://github.com/bdupras))
840
-
841
- ## [v0.11.beta.2](https://github.com/chef/chef-provisioning/tree/v0.11.beta.2) (2014-05-24)
842
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta...v0.11.beta.2)
843
-
844
- ## [v0.11.beta](https://github.com/chef/chef-provisioning/tree/v0.11.beta) (2014-05-23)
845
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta...v0.11.beta)
846
-
847
- ## [v0.5.beta](https://github.com/chef/chef-provisioning/tree/v0.5.beta) (2014-05-23)
848
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10.2...v0.5.beta)
849
-
850
- **Closed issues:**
851
-
852
- - SoftLayer provisioning options? [\#56](https://github.com/chef/chef-provisioning/issues/56)
853
- - Error executing action `converge` on resource 'machine\_batch\[default\]' : Name Required [\#52](https://github.com/chef/chef-provisioning/issues/52)
854
- - New nodes don't have permissions to update themselves [\#11](https://github.com/chef/chef-provisioning/issues/11)
855
-
856
- **Merged pull requests:**
857
-
858
- - Grant Transport support for ssh\_gateway used with jump hosts [\#53](https://github.com/chef/chef-provisioning/pull/53) ([JonathanSerafini](https://github.com/JonathanSerafini))
859
-
860
- ## [v0.10.2](https://github.com/chef/chef-provisioning/tree/v0.10.2) (2014-05-02)
861
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10.1...v0.10.2)
862
-
863
- ## [v0.10.1](https://github.com/chef/chef-provisioning/tree/v0.10.1) (2014-05-02)
864
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10...v0.10.1)
865
-
866
- **Closed issues:**
867
-
868
- - Error executing action `converge` on resource 'machine\_batch\[default\]' [\#51](https://github.com/chef/chef-provisioning/issues/51)
869
-
870
- ## [v0.10](https://github.com/chef/chef-provisioning/tree/v0.10) (2014-05-01)
871
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.4...v0.10)
872
-
873
- **Merged pull requests:**
874
-
875
- - Update gem dependencies to use refactored chef\_metal\_fog [\#50](https://github.com/chef/chef-provisioning/pull/50) ([mikesplain](https://github.com/mikesplain))
876
- - re-raise Net::SCP error when fails to download [\#49](https://github.com/chef/chef-provisioning/pull/49) ([carltonstedman](https://github.com/carltonstedman))
877
-
878
- ## [v0.9.4](https://github.com/chef/chef-provisioning/tree/v0.9.4) (2014-04-24)
879
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.3...v0.9.4)
880
-
881
- ## [v0.9.3](https://github.com/chef/chef-provisioning/tree/v0.9.3) (2014-04-14)
882
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.2...v0.9.3)
883
-
884
- ## [v0.9.2](https://github.com/chef/chef-provisioning/tree/v0.9.2) (2014-04-13)
885
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.1...v0.9.2)
886
-
887
- ## [v0.9.1](https://github.com/chef/chef-provisioning/tree/v0.9.1) (2014-04-12)
888
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9...v0.9.1)
889
-
890
- **Closed issues:**
891
-
892
- - machine converge action fails with chef-zero [\#47](https://github.com/chef/chef-provisioning/issues/47)
893
-
894
- ## [v0.9](https://github.com/chef/chef-provisioning/tree/v0.9) (2014-04-11)
895
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8.2...v0.9)
896
-
897
- **Closed issues:**
898
-
899
- - Support for already-provisioned machines - enhancement request [\#41](https://github.com/chef/chef-provisioning/issues/41)
900
-
901
- **Merged pull requests:**
902
-
903
- - Apply the same fix from machine\_file to machine\_execute [\#48](https://github.com/chef/chef-provisioning/pull/48) ([irvingpop](https://github.com/irvingpop))
904
-
905
- ## [v0.8.2](https://github.com/chef/chef-provisioning/tree/v0.8.2) (2014-04-09)
906
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8.1...v0.8.2)
907
-
908
- ## [v0.8.1](https://github.com/chef/chef-provisioning/tree/v0.8.1) (2014-04-09)
909
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8...v0.8.1)
910
-
911
- **Closed issues:**
912
-
913
- - show machine chef-client run output - enhancement request [\#40](https://github.com/chef/chef-provisioning/issues/40)
914
-
915
- **Merged pull requests:**
916
-
917
- - New ohai hints feature allowing the creation hints. [\#38](https://github.com/chef/chef-provisioning/pull/38) ([xorl](https://github.com/xorl))
918
-
919
- ## [v0.8](https://github.com/chef/chef-provisioning/tree/v0.8) (2014-04-08)
920
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.7...v0.8)
921
-
922
- **Closed issues:**
923
-
924
- - machine\_file enhancement\(s\) request [\#39](https://github.com/chef/chef-provisioning/issues/39)
925
-
926
- **Merged pull requests:**
927
-
928
- - Add a SUPER SIMPLE machine\_execute resource [\#46](https://github.com/chef/chef-provisioning/pull/46) ([irvingpop](https://github.com/irvingpop))
929
-
930
- ## [v0.7](https://github.com/chef/chef-provisioning/tree/v0.7) (2014-04-06)
931
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.6...v0.7)
932
-
933
- **Merged pull requests:**
934
-
935
- - cookbooks should have their name in metadata [\#45](https://github.com/chef/chef-provisioning/pull/45) ([jtimberman](https://github.com/jtimberman))
936
-
937
- ## [v0.6](https://github.com/chef/chef-provisioning/tree/v0.6) (2014-04-04)
938
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5...v0.6)
939
-
940
- **Merged pull requests:**
941
-
942
- - Grant the node's client read+update permissions [\#44](https://github.com/chef/chef-provisioning/pull/44) ([dafyddcrosby](https://github.com/dafyddcrosby))
943
-
944
- ## [v0.5](https://github.com/chef/chef-provisioning/tree/v0.5) (2014-04-04)
945
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.4...v0.5)
946
-
947
- **Closed issues:**
948
-
949
- - machine\_file :download fails because provider is undefined [\#42](https://github.com/chef/chef-provisioning/issues/42)
950
-
951
- **Merged pull requests:**
952
-
953
- - Add owner, group and mode attributes to machine\_file [\#43](https://github.com/chef/chef-provisioning/pull/43) ([irvingpop](https://github.com/irvingpop))
954
- - Dt/driver surgery [\#36](https://github.com/chef/chef-provisioning/pull/36) ([jkeiser](https://github.com/jkeiser))
955
- - Ec2 fixes [\#27](https://github.com/chef/chef-provisioning/pull/27) ([xorl](https://github.com/xorl))
956
-
957
- ## [v0.4](https://github.com/chef/chef-provisioning/tree/v0.4) (2014-03-29)
958
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.3.1...v0.4)
959
-
960
- **Closed issues:**
961
-
962
- - Minimum fog version suggestion \('ubuntu' user hardcoded in AWS SSH\) [\#28](https://github.com/chef/chef-provisioning/issues/28)
963
- - fog\_provisioner hardcoded to public\_ip\_address [\#20](https://github.com/chef/chef-provisioning/issues/20)
964
- - ec2 availability\_zone ignored [\#19](https://github.com/chef/chef-provisioning/issues/19)
965
-
966
- **Merged pull requests:**
967
-
968
- - Show how to use with\_chef\_server using chef-client -z [\#37](https://github.com/chef/chef-provisioning/pull/37) ([dafyddcrosby](https://github.com/dafyddcrosby))
969
- - Fix typo 'pey-pair-name' -\> 'key-pair-name' [\#30](https://github.com/chef/chef-provisioning/pull/30) ([dafyddcrosby](https://github.com/dafyddcrosby))
970
- - Remove unused variable provisioner\_options [\#26](https://github.com/chef/chef-provisioning/pull/26) ([dafyddcrosby](https://github.com/dafyddcrosby))
971
- - Update README.md to show how to add per-machine provisioner options [\#25](https://github.com/chef/chef-provisioning/pull/25) ([dafyddcrosby](https://github.com/dafyddcrosby))
972
- - Added new private\_ip compute\_options attribute. [\#23](https://github.com/chef/chef-provisioning/pull/23) ([xorl](https://github.com/xorl))
973
- - double double escape escape to fix RHEL/CentOS platform\_version detection [\#22](https://github.com/chef/chef-provisioning/pull/22) ([irvingpop](https://github.com/irvingpop))
974
- - Initial Openstack support [\#15](https://github.com/chef/chef-provisioning/pull/15) ([cstewart87](https://github.com/cstewart87))
975
-
976
- ## [v0.3.1](https://github.com/chef/chef-provisioning/tree/v0.3.1) (2014-03-18)
977
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.3...v0.3.1)
978
-
979
- **Closed issues:**
980
-
981
- - undefined method `synchronize' for nil:NilClass [\#18](https://github.com/chef/chef-provisioning/issues/18)
982
-
983
- **Merged pull requests:**
984
-
985
- - initialize right mutex. use ssl if required [\#17](https://github.com/chef/chef-provisioning/pull/17) ([ranjib](https://github.com/ranjib))
986
- - Fix to\_sym error parsing bootstrap\_options [\#16](https://github.com/chef/chef-provisioning/pull/16) ([RoboticCheese](https://github.com/RoboticCheese))
987
-
988
- ## [v0.3](https://github.com/chef/chef-provisioning/tree/v0.3) (2014-03-18)
989
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.2.1...v0.3)
990
-
991
- **Closed issues:**
992
-
993
- - Syntax for specifying flavor/image? [\#10](https://github.com/chef/chef-provisioning/issues/10)
994
-
995
- **Merged pull requests:**
996
-
997
- - Fix copypaste typo from vagrant to ec2 [\#14](https://github.com/chef/chef-provisioning/pull/14) ([dafyddcrosby](https://github.com/dafyddcrosby))
998
-
999
- ## [v0.2.1](https://github.com/chef/chef-provisioning/tree/v0.2.1) (2014-03-07)
1000
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.2...v0.2.1)
1001
-
1002
- ## [v0.2](https://github.com/chef/chef-provisioning/tree/v0.2) (2014-03-04)
1003
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.1...v0.2)
1004
-
1005
- **Merged pull requests:**
1006
-
1007
- - Update URLs of GH repo [\#8](https://github.com/chef/chef-provisioning/pull/8) ([StephenKing](https://github.com/StephenKing))
1008
- - Typo in README.md [\#7](https://github.com/chef/chef-provisioning/pull/7) ([StephenKing](https://github.com/StephenKing))
1009
- - support for lxc [\#6](https://github.com/chef/chef-provisioning/pull/6) ([ranjib](https://github.com/ranjib))
1010
- - Requirements [\#4](https://github.com/chef/chef-provisioning/pull/4) ([jkeiser](https://github.com/jkeiser))
1011
-
1012
- ## [v0.1](https://github.com/chef/chef-provisioning/tree/v0.1) (2013-12-21)
1013
-
1014
-
1015
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*