chef-provisioning 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +899 -885
  3. data/Gemfile +17 -17
  4. data/LICENSE +201 -201
  5. data/README.md +312 -312
  6. data/Rakefile +55 -55
  7. data/chef-provisioning.gemspec +38 -38
  8. data/lib/chef/provider/load_balancer.rb +75 -75
  9. data/lib/chef/provider/machine.rb +219 -219
  10. data/lib/chef/provider/machine_batch.rb +224 -224
  11. data/lib/chef/provider/machine_execute.rb +36 -35
  12. data/lib/chef/provider/machine_file.rb +55 -55
  13. data/lib/chef/provider/machine_image.rb +105 -105
  14. data/lib/chef/provisioning.rb +110 -110
  15. data/lib/chef/provisioning/action_handler.rb +68 -68
  16. data/lib/chef/provisioning/add_prefix_action_handler.rb +35 -35
  17. data/lib/chef/provisioning/chef_managed_entry_store.rb +128 -128
  18. data/lib/chef/provisioning/chef_provider_action_handler.rb +74 -74
  19. data/lib/chef/provisioning/chef_run_data.rb +132 -132
  20. data/lib/chef/provisioning/convergence_strategy.rb +28 -28
  21. data/lib/chef/provisioning/convergence_strategy/ignore_convergence_failure.rb +54 -54
  22. data/lib/chef/provisioning/convergence_strategy/install_cached.rb +188 -188
  23. data/lib/chef/provisioning/convergence_strategy/install_msi.rb +71 -71
  24. data/lib/chef/provisioning/convergence_strategy/install_sh.rb +71 -71
  25. data/lib/chef/provisioning/convergence_strategy/no_converge.rb +35 -35
  26. data/lib/chef/provisioning/convergence_strategy/precreate_chef_objects.rb +255 -255
  27. data/lib/chef/provisioning/driver.rb +323 -323
  28. data/lib/chef/provisioning/load_balancer_spec.rb +14 -14
  29. data/lib/chef/provisioning/machine.rb +112 -112
  30. data/lib/chef/provisioning/machine/basic_machine.rb +84 -84
  31. data/lib/chef/provisioning/machine/unix_machine.rb +288 -288
  32. data/lib/chef/provisioning/machine/windows_machine.rb +108 -108
  33. data/lib/chef/provisioning/machine_image_spec.rb +34 -34
  34. data/lib/chef/provisioning/machine_spec.rb +58 -58
  35. data/lib/chef/provisioning/managed_entry.rb +121 -121
  36. data/lib/chef/provisioning/managed_entry_store.rb +136 -136
  37. data/lib/chef/provisioning/recipe_dsl.rb +99 -99
  38. data/lib/chef/provisioning/rspec.rb +27 -27
  39. data/lib/chef/provisioning/transport.rb +100 -100
  40. data/lib/chef/provisioning/transport/ssh.rb +403 -403
  41. data/lib/chef/provisioning/transport/winrm.rb +144 -156
  42. data/lib/chef/provisioning/version.rb +5 -5
  43. data/lib/chef/resource/chef_data_bag_resource.rb +146 -146
  44. data/lib/chef/resource/load_balancer.rb +57 -57
  45. data/lib/chef/resource/machine.rb +128 -128
  46. data/lib/chef/resource/machine_batch.rb +78 -78
  47. data/lib/chef/resource/machine_execute.rb +30 -29
  48. data/lib/chef/resource/machine_file.rb +34 -34
  49. data/lib/chef/resource/machine_image.rb +35 -35
  50. data/lib/chef_metal.rb +1 -1
  51. data/spec/chef/provisioning/convergence_strategy/ignore_convergence_failure_spec.rb +86 -86
  52. data/spec/spec_helper.rb +27 -27
  53. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 55dd1dec7e87180f4c8765c659df984a7aa98479
4
- data.tar.gz: 6a4d740f11a92febcb4bd89fe97af1fa5c7da93b
3
+ metadata.gz: 6a5f9eea3d59ab50837cf09d7a6561233547d851
4
+ data.tar.gz: 30892a155237ed1682198c0695025c3eb72f123f
5
5
  SHA512:
6
- metadata.gz: 4a115f1b26b0810d879ee8fd100cad5a60307169127adf4a0fd96ce5aa6bab23278b660f4103eb66846f258a8be653f1c2528d5e06d3931c463623e525895598
7
- data.tar.gz: af2527426be296672ff6d3d184b3d11650efff63e3a07df6791d0dbaf003d6da8acbdff5090082dbe3f0ec4bcd9345d2b0be572c489ec271e0ec0b70ba94aba9
6
+ metadata.gz: 99e22dbf7494171eb789a45a2e622bf8134f463f37ba020d72e06ea5069e136f56a4bb71783dca1262b5dc2cf24b2cc9e540224937e6346990cb84e5d27e34be
7
+ data.tar.gz: bd38514525454fc800a369becf43e63304896fd183342a42f8d53147d79c096b159d981074d2094788b05e9e27c8ba47d3b9f783c8de7cc59bb75a376705dd3b
data/CHANGELOG.md CHANGED
@@ -1,886 +1,900 @@
1
- # Change Log
2
-
3
- ## [2.0.0](https://github.com/chef/chef-provisioning/tree/2.0.0) (2016-08-24)
4
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.1...2.0.0)
5
-
6
- **Merged pull requests:**
7
-
8
- - Require Ruby 2.2.2+ and Cheffish 4.0 [\#538](https://github.com/chef/chef-provisioning/pull/538) ([jkeiser](https://github.com/jkeiser))
9
-
10
- ## [v1.9.1](https://github.com/chef/chef-provisioning/tree/v1.9.1) (2016-08-11)
11
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.0...v1.9.1)
12
-
13
- **Merged pull requests:**
14
-
15
- - 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))
16
-
17
- ## [v1.9.0](https://github.com/chef/chef-provisioning/tree/v1.9.0) (2016-08-11)
18
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.1...v1.9.0)
19
-
20
- **Closed issues:**
21
-
22
- - Uninitialized constant Chef::Resource::Machine [\#531](https://github.com/chef/chef-provisioning/issues/531)
23
-
24
- ## [v1.8.1](https://github.com/chef/chef-provisioning/tree/v1.8.1) (2016-08-03)
25
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.0...v1.8.1)
26
-
27
- **Merged pull requests:**
28
-
29
- - Cleaning up a deprecation warning [\#530](https://github.com/chef/chef-provisioning/pull/530) ([tyler-ball](https://github.com/tyler-ball))
30
-
31
- ## [v1.8.0](https://github.com/chef/chef-provisioning/tree/v1.8.0) (2016-06-16)
32
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.7.1...v1.8.0)
33
-
34
- **Closed issues:**
35
-
36
- - machine\_batch doesn't clearly mention which machine failed [\#499](https://github.com/chef/chef-provisioning/issues/499)
37
- - Flexible install\_command. Do not assume internet acces. [\#474](https://github.com/chef/chef-provisioning/issues/474)
38
-
39
- **Merged pull requests:**
40
-
41
- - 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))
42
- - Add support for custom :install\_sh\_url [\#515](https://github.com/chef/chef-provisioning/pull/515) ([SIGUSR2](https://github.com/SIGUSR2))
43
- - error handling for machine\_batch resource [\#500](https://github.com/chef/chef-provisioning/pull/500) ([ckaushik](https://github.com/ckaushik))
44
-
45
- ## [v1.7.1](https://github.com/chef/chef-provisioning/tree/v1.7.1) (2016-05-17)
46
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.7.0...v1.7.1)
47
-
48
- **Merged pull requests:**
49
-
50
- - 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))
51
-
52
- ## [v1.7.0](https://github.com/chef/chef-provisioning/tree/v1.7.0) (2016-04-06)
53
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.6.0...v1.7.0)
54
-
55
- **Merged pull requests:**
56
-
57
- - Use mixlib-install 1.0 [\#512](https://github.com/chef/chef-provisioning/pull/512) ([jkeiser](https://github.com/jkeiser))
58
- - Allow newer inifile gem [\#509](https://github.com/chef/chef-provisioning/pull/509) ([pburkholder](https://github.com/pburkholder))
59
-
60
- ## [v1.6.0](https://github.com/chef/chef-provisioning/tree/v1.6.0) (2016-02-03)
61
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.5.1...v1.6.0)
62
-
63
- **Implemented enhancements:**
64
-
65
- - Custom port forwards. [\#445](https://github.com/chef/chef-provisioning/pull/445) ([causton81](https://github.com/causton81))
66
-
67
- **Fixed bugs:**
68
-
69
- - Chef::Exceptions::ContentLengthMismatch Response body length XXXX does not match HTTP Content-Length header XXXX [\#446](https://github.com/chef/chef-provisioning/issues/446)
70
- - 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))
71
-
72
- **Merged pull requests:**
73
-
74
- - Fix Provisioning with Cheffish 1.x [\#496](https://github.com/chef/chef-provisioning/pull/496) ([jkeiser](https://github.com/jkeiser))
75
- - Bump revision to 1.6.0 [\#493](https://github.com/chef/chef-provisioning/pull/493) ([jkeiser](https://github.com/jkeiser))
76
- - Add "rake changelog" task [\#491](https://github.com/chef/chef-provisioning/pull/491) ([jkeiser](https://github.com/jkeiser))
77
- - Stop using Chef::Provider::ChefNode directly \(cheffish 2.0 compat\) [\#490](https://github.com/chef/chef-provisioning/pull/490) ([jkeiser](https://github.com/jkeiser))
78
- - Allow cheffish 2.0 as a dep [\#489](https://github.com/chef/chef-provisioning/pull/489) ([jkeiser](https://github.com/jkeiser))
79
-
80
- ## [v1.5.1](https://github.com/chef/chef-provisioning/tree/v1.5.1) (2015-12-10)
81
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.5.0...v1.5.1)
82
-
83
- **Merged pull requests:**
84
-
85
- - 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))
86
- - Ensure target directory exists when using write\_file with WinRM [\#471](https://github.com/chef/chef-provisioning/pull/471) ([xenolinguist](https://github.com/xenolinguist))
87
-
88
- ## [v1.5.0](https://github.com/chef/chef-provisioning/tree/v1.5.0) (2015-10-27)
89
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.4.1...v1.5.0)
90
-
91
- **Fixed bugs:**
92
-
93
- - :converge action should not re-install chef-client if the desired version is already installed [\#428](https://github.com/chef/chef-provisioning/issues/428)
94
- - SSH available timeout needs to be configurable [\#362](https://github.com/chef/chef-provisioning/issues/362)
95
- - 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))
96
- - 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))
97
- - Added bootstrap\_no\_proxy support [\#458](https://github.com/chef/chef-provisioning/pull/458) ([jsmartt](https://github.com/jsmartt))
98
-
99
- **Closed issues:**
100
-
101
- - The action "stop" on a Machine resource does not appear to work [\#463](https://github.com/chef/chef-provisioning/issues/463)
102
- - machine chef-client run output not logging to provisioner chef-client output [\#274](https://github.com/chef/chef-provisioning/issues/274)
103
-
104
- **Merged pull requests:**
105
-
106
- - 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))
107
- - Pin mixlib-install more strictly. [\#459](https://github.com/chef/chef-provisioning/pull/459) ([sersut](https://github.com/sersut))
108
-
109
- ## [v1.4.1](https://github.com/chef/chef-provisioning/tree/v1.4.1) (2015-09-30)
110
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.4.0...v1.4.1)
111
-
112
- **Fixed bugs:**
113
-
114
- - ohai\_hints should be be created at c:\chef\ohai\hints when provisioning windows nodes [\#433](https://github.com/chef/chef-provisioning/issues/433)
115
- - 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))
116
- - Windows ohai hints, fixes \#433 [\#435](https://github.com/chef/chef-provisioning/pull/435) ([hh](https://github.com/hh))
117
-
118
- ## [v1.4.0](https://github.com/chef/chef-provisioning/tree/v1.4.0) (2015-09-16)
119
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.3.0...v1.4.0)
120
-
121
- **Implemented enhancements:**
122
-
123
- - Provisioning driver generator script [\#395](https://github.com/chef/chef-provisioning/issues/395)
124
- - Marking lxc and hanlon as seeking maintainers [\#440](https://github.com/chef/chef-provisioning/pull/440) ([tyler-ball](https://github.com/tyler-ball))
125
- - 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))
126
- - Specify additional machine\_options from the resource attributes [\#424](https://github.com/chef/chef-provisioning/pull/424) ([tyler-ball](https://github.com/tyler-ball))
127
- - Adding ignore\_converge\_failure option, fixes \#393 [\#414](https://github.com/chef/chef-provisioning/pull/414) ([tyler-ball](https://github.com/tyler-ball))
128
- - 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))
129
-
130
- **Fixed bugs:**
131
-
132
- - Provisioning fails with chef api error [\#394](https://github.com/chef/chef-provisioning/issues/394)
133
- - specifying an audit-mode in a machine's run\_list fails the provisioning run. [\#393](https://github.com/chef/chef-provisioning/issues/393)
134
- - machine\_file resource does not work properly using with\_machine\_options [\#390](https://github.com/chef/chef-provisioning/issues/390)
135
- - install\_sh.rb has an issue with bootstrap [\#380](https://github.com/chef/chef-provisioning/issues/380)
136
- - Metal command --help doesn't show or explain command arguments [\#71](https://github.com/chef/chef-provisioning/issues/71)
137
- - Added missing arguments to call of chef install shell script. [\#439](https://github.com/chef/chef-provisioning/pull/439) ([tarak](https://github.com/tarak))
138
- - Add provides statements to providers to avoid chef-client warnings [\#416](https://github.com/chef/chef-provisioning/pull/416) ([stevendanna](https://github.com/stevendanna))
139
- - Run our tests in a matrix of Chef client versions. [\#415](https://github.com/chef/chef-provisioning/pull/415) ([randomcamel](https://github.com/randomcamel))
140
- - Upload the PS1 script and run directly [\#410](https://github.com/chef/chef-provisioning/pull/410) ([thommay](https://github.com/thommay))
141
- - bump mixlib-install version [\#406](https://github.com/chef/chef-provisioning/pull/406) ([thommay](https://github.com/thommay))
142
- - /etc/os-release support, yum support, package\_metadata option [\#315](https://github.com/chef/chef-provisioning/pull/315) ([glennmatthews](https://github.com/glennmatthews))
143
-
144
- **Closed issues:**
145
-
146
- - Converge fails when /tmp/chef-install.sh doesn't exist [\#423](https://github.com/chef/chef-provisioning/issues/423)
147
- - Error forwarding port: could not forward 8889 or 0 [\#392](https://github.com/chef/chef-provisioning/issues/392)
148
- - Chef Provisioning- Vagrant [\#372](https://github.com/chef/chef-provisioning/issues/372)
149
- - chef-provisioning bootstrap fails [\#359](https://github.com/chef/chef-provisioning/issues/359)
150
-
151
- **Merged pull requests:**
152
-
153
- - Remove dependency on chef gem [\#441](https://github.com/chef/chef-provisioning/pull/441) ([ksubrama](https://github.com/ksubrama))
154
- - Adding a CONTRIBUTING document [\#437](https://github.com/chef/chef-provisioning/pull/437) ([tyler-ball](https://github.com/tyler-ball))
155
- - Major generator/spec/Travis improvements [\#426](https://github.com/chef/chef-provisioning/pull/426) ([randomcamel](https://github.com/randomcamel))
156
- - Add gem version badges for core + drivers. [\#412](https://github.com/chef/chef-provisioning/pull/412) ([randomcamel](https://github.com/randomcamel))
157
-
158
- ## [v1.3.0](https://github.com/chef/chef-provisioning/tree/v1.3.0) (2015-08-05)
159
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.2.1...v1.3.0)
160
-
161
- **Implemented enhancements:**
162
-
163
- - expose machine\_spec.from\_image to allocate\_machine [\#366](https://github.com/chef/chef-provisioning/pull/366) ([mwrock](https://github.com/mwrock))
164
-
165
- **Fixed bugs:**
166
-
167
- - chef 12.4.0 and chef-provisioning have a problem when bootstrapping a node [\#377](https://github.com/chef/chef-provisioning/issues/377)
168
- - Add a version compatibility check to ChefDK's `chef verify` [\#355](https://github.com/chef/chef-provisioning/issues/355)
169
- - Unit tests and checkstyle? [\#180](https://github.com/chef/chef-provisioning/issues/180)
170
- - Hardware matching [\#135](https://github.com/chef/chef-provisioning/issues/135)
171
- - Data center abstraction [\#132](https://github.com/chef/chef-provisioning/issues/132)
172
- - Machine migration [\#130](https://github.com/chef/chef-provisioning/issues/130)
173
- - Chef environment on remote machines [\#88](https://github.com/chef/chef-provisioning/issues/88)
174
- - metal command seems to not use .chef/knife.rb. [\#70](https://github.com/chef/chef-provisioning/issues/70)
175
- - metal binary complains about private key [\#65](https://github.com/chef/chef-provisioning/issues/65)
176
- - Xen server VM provisioner [\#2](https://github.com/chef/chef-provisioning/issues/2)
177
- - docs for VMware vCloud Air [\#368](https://github.com/chef/chef-provisioning/pull/368) ([hh](https://github.com/hh))
178
-
179
- **Closed issues:**
180
-
181
- - NoMethodError: undefined method `encoding' [\#405](https://github.com/chef/chef-provisioning/issues/405)
182
- - \[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)
183
- - Set up minimal Travis build [\#397](https://github.com/chef/chef-provisioning/issues/397)
184
- - Chef Metal with 1.0 [\#396](https://github.com/chef/chef-provisioning/issues/396)
185
- - 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)
186
- - machine resource fails if audit failures occur [\#387](https://github.com/chef/chef-provisioning/issues/387)
187
- - What does the error "missing required parameter name" mean [\#386](https://github.com/chef/chef-provisioning/issues/386)
188
- - Can't connect to EC2 instance in VPC with public IP [\#385](https://github.com/chef/chef-provisioning/issues/385)
189
- - Windows hosts are bootstrapped with the wrong url for chef-client [\#327](https://github.com/chef/chef-provisioning/issues/327)
190
- - chef\_version convergence option is ignored for windows machines [\#300](https://github.com/chef/chef-provisioning/issues/300)
191
- - Create opennebula plugin for chef-provisioning [\#264](https://github.com/chef/chef-provisioning/issues/264)
192
-
193
- **Merged pull requests:**
194
-
195
- - Remove warning about Hosted/Enterprise and clients in admins group [\#402](https://github.com/chef/chef-provisioning/pull/402) ([jkeiser](https://github.com/jkeiser))
196
- - Add Travis badge to README. [\#400](https://github.com/chef/chef-provisioning/pull/400) ([randomcamel](https://github.com/randomcamel))
197
- - Initial .travis.yml. [\#398](https://github.com/chef/chef-provisioning/pull/398) ([randomcamel](https://github.com/randomcamel))
198
- - use mixlib-install to install from omnitruck [\#389](https://github.com/chef/chef-provisioning/pull/389) ([thommay](https://github.com/thommay))
199
-
200
- ## [v1.2.1](https://github.com/chef/chef-provisioning/tree/v1.2.1) (2015-07-17)
201
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.2.0...v1.2.1)
202
-
203
- **Fixed bugs:**
204
-
205
- - Conflicting winrm gem causes knife to fail [\#370](https://github.com/chef/chef-provisioning/issues/370)
206
- - remove or update test/acceptance project [\#363](https://github.com/chef/chef-provisioning/issues/363)
207
- - Arity mismatch between MachineImage's :destroy and Driver\#destroy\_image [\#358](https://github.com/chef/chef-provisioning/issues/358)
208
- - manual hydrate needed with chef\_data\_bag on create [\#242](https://github.com/chef/chef-provisioning/issues/242)
209
- - ChefMetal::ConvergenceStrategy::PrecreateChefObjects does not support proxy settings [\#187](https://github.com/chef/chef-provisioning/issues/187)
210
- - Suppress key\_data in debug output [\#171](https://github.com/chef/chef-provisioning/issues/171)
211
- - host\_node being set to /organizations/NAME/nodes/ with no node name [\#141](https://github.com/chef/chef-provisioning/issues/141)
212
- - Authorized ssh key overwritten with metal\_default [\#131](https://github.com/chef/chef-provisioning/issues/131)
213
- - 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))
214
- - Fix chef\_group [\#346](https://github.com/chef/chef-provisioning/pull/346) ([obazoud](https://github.com/obazoud))
215
- - 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))
216
-
217
- **Closed issues:**
218
-
219
- - Lower the version of chef. [\#391](https://github.com/chef/chef-provisioning/issues/391)
220
- - Cannot bootstrap FreeBSD \(bash is not installed\) [\#381](https://github.com/chef/chef-provisioning/issues/381)
221
- - user\_data is not working in provisioning ec2 server [\#375](https://github.com/chef/chef-provisioning/issues/375)
222
- - Latest provisioning gem is incompatible with semi-recent Chef [\#374](https://github.com/chef/chef-provisioning/issues/374)
223
- - Chef Provisioning- Vagrant [\#373](https://github.com/chef/chef-provisioning/issues/373)
224
- - Chef Provisioning- Vagrant [\#367](https://github.com/chef/chef-provisioning/issues/367)
225
- - unusual behavior w/ chef-client -z and provisioning [\#357](https://github.com/chef/chef-provisioning/issues/357)
226
- - Merge Chef-maintained drivers into the chef-provisioning repo [\#354](https://github.com/chef/chef-provisioning/issues/354)
227
- - Update to the SDK V2 [\#353](https://github.com/chef/chef-provisioning/issues/353)
228
- - Add support for reserved instances [\#351](https://github.com/chef/chef-provisioning/issues/351)
229
- - OpenSSL issue with chef provisioning [\#343](https://github.com/chef/chef-provisioning/issues/343)
230
- - no implicit conversion of String into Integer [\#270](https://github.com/chef/chef-provisioning/issues/270)
231
- - The specified wait\_for timeout \(0.01 seconds\) was exceeded [\#269](https://github.com/chef/chef-provisioning/issues/269)
232
- - Chef::Config.private\_key\_paths does not include ~/.chef/keys by default [\#258](https://github.com/chef/chef-provisioning/issues/258)
233
- - chef-client -z can't find my ssh key when creating aws machine\_image [\#234](https://github.com/chef/chef-provisioning/issues/234)
234
- - Document which classes are part of the public interface [\#203](https://github.com/chef/chef-provisioning/issues/203)
235
- - machine\_batch failing on write file /etc/chef/client.pem [\#189](https://github.com/chef/chef-provisioning/issues/189)
236
- - with\_driver fails on second converge: Canonical driver ... has already been created! [\#184](https://github.com/chef/chef-provisioning/issues/184)
237
- - Output doesn't stream when run within non-login session. [\#176](https://github.com/chef/chef-provisioning/issues/176)
238
- - QUESTION: How can I use a custom Chef library with Metal? [\#173](https://github.com/chef/chef-provisioning/issues/173)
239
- - machine\_batch convergence cookbook synchronization very slow [\#172](https://github.com/chef/chef-provisioning/issues/172)
240
-
241
- **Merged pull requests:**
242
-
243
- - Tiny doc update to add clarity to vagrant provisioning example [\#369](https://github.com/chef/chef-provisioning/pull/369) ([scotthain](https://github.com/scotthain))
244
- - Fix \#358: Arity mismatch [\#364](https://github.com/chef/chef-provisioning/pull/364) ([randomcamel](https://github.com/randomcamel))
245
- - 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))
246
- - update readme with vsphere driver url [\#344](https://github.com/chef/chef-provisioning/pull/344) ([mwrock](https://github.com/mwrock))
247
-
248
- ## [v1.2.0](https://github.com/chef/chef-provisioning/tree/v1.2.0) (2015-05-27)
249
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.1.1...v1.2.0)
250
-
251
- **Fixed bugs:**
252
-
253
- - machine\_batch :destroy may be creating additional threads which result in NoMethodError [\#319](https://github.com/chef/chef-provisioning/issues/319)
254
-
255
- **Closed issues:**
256
-
257
- - 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)
258
- - Updating chef-provisioning-aws breaks chef-client -z functionality with ChefDK 0.4.0 \(current version\). [\#322](https://github.com/chef/chef-provisioning/issues/322)
259
- - Converging 0 resources - Am I missing something? [\#320](https://github.com/chef/chef-provisioning/issues/320)
260
-
261
- **Merged pull requests:**
262
-
263
- - with\_driver must be specified [\#345](https://github.com/chef/chef-provisioning/pull/345) ([jtimberman](https://github.com/jtimberman))
264
- - Updating for newly introduced socketless mode [\#337](https://github.com/chef/chef-provisioning/pull/337) ([tyler-ball](https://github.com/tyler-ball))
265
- - bumping winrm dependency to 1.3.0 [\#332](https://github.com/chef/chef-provisioning/pull/332) ([mwrock](https://github.com/mwrock))
266
- - Adding documentation about the private key path [\#328](https://github.com/chef/chef-provisioning/pull/328) ([b-slim](https://github.com/b-slim))
267
- - Update chef gem to fix version conflict in ChefDK [\#314](https://github.com/chef/chef-provisioning/pull/314) ([teknofire](https://github.com/teknofire))
268
- - Update building\_drivers.md [\#309](https://github.com/chef/chef-provisioning/pull/309) ([jjasghar](https://github.com/jjasghar))
269
-
270
- ## [v1.1.1](https://github.com/chef/chef-provisioning/tree/v1.1.1) (2015-04-20)
271
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.1.0...v1.1.1)
272
-
273
- ## [v1.1.0](https://github.com/chef/chef-provisioning/tree/v1.1.0) (2015-04-16)
274
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.1...v1.1.0)
275
-
276
- **Closed issues:**
277
-
278
- - Net::HTTPServerException: 404 "Not Found" [\#323](https://github.com/chef/chef-provisioning/issues/323)
279
-
280
- **Merged pull requests:**
281
-
282
- - fix machine\_batch :destroy \#319 [\#321](https://github.com/chef/chef-provisioning/pull/321) ([wrightp](https://github.com/wrightp))
283
- - Install chef-client using Proxy [\#317](https://github.com/chef/chef-provisioning/pull/317) ([afiune](https://github.com/afiune))
284
- - 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))
285
-
286
- ## [v1.0.1](https://github.com/chef/chef-provisioning/tree/v1.0.1) (2015-04-07)
287
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0...v1.0.1)
288
-
289
- **Closed issues:**
290
-
291
- - Second run fails using Vagrant \(problem in InstallCached strategy\) [\#308](https://github.com/chef/chef-provisioning/issues/308)
292
-
293
- **Merged pull requests:**
294
-
295
- - Dependency cleanup [\#316](https://github.com/chef/chef-provisioning/pull/316) ([tyler-ball](https://github.com/tyler-ball))
296
- - Delete machine specs when machines are deleted [\#310](https://github.com/chef/chef-provisioning/pull/310) ([jkeiser](https://github.com/jkeiser))
297
-
298
- ## [v1.0.0](https://github.com/chef/chef-provisioning/tree/v1.0.0) (2015-04-02)
299
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0.rc.2...v1.0.0)
300
-
301
- ## [v1.0.0.rc.2](https://github.com/chef/chef-provisioning/tree/v1.0.0.rc.2) (2015-04-02)
302
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.20.1...v1.0.0.rc.2)
303
-
304
- ## [v0.20.1](https://github.com/chef/chef-provisioning/tree/v0.20.1) (2015-04-02)
305
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0.rc.1...v0.20.1)
306
-
307
- ## [v1.0.0.rc.1](https://github.com/chef/chef-provisioning/tree/v1.0.0.rc.1) (2015-04-01)
308
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.20...v1.0.0.rc.1)
309
-
310
- ## [v0.20](https://github.com/chef/chef-provisioning/tree/v0.20) (2015-03-27)
311
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.19...v0.20)
312
-
313
- **Fixed bugs:**
314
-
315
- - action :delete & action :destroy [\#186](https://github.com/chef/chef-provisioning/issues/186)
316
- - support setting desired chef client version [\#148](https://github.com/chef/chef-provisioning/issues/148)
317
- - Attributes are erased at re-converge when set in 'machine' resource [\#137](https://github.com/chef/chef-provisioning/issues/137)
318
- - Machine\_batch converge action erases attributes created by recipes during the converge [\#116](https://github.com/chef/chef-provisioning/issues/116)
319
- - Can't use Chef::Node::ImmutableMash in "attributes" attribute in the machine resource [\#21](https://github.com/chef/chef-provisioning/issues/21)
320
-
321
- **Closed issues:**
322
-
323
- - Can not destroy load balancers [\#307](https://github.com/chef/chef-provisioning/issues/307)
324
- - machine\[\].create idempotency checks fails in freebsd [\#289](https://github.com/chef/chef-provisioning/issues/289)
325
- - load\_balancer errors on :destroy action [\#278](https://github.com/chef/chef-provisioning/issues/278)
326
- - machine\_execute seems not to have problems figuring out what driver to use? [\#201](https://github.com/chef/chef-provisioning/issues/201)
327
-
328
- **Merged pull requests:**
329
-
330
- - 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))
331
- - Jk/empty lb [\#299](https://github.com/chef/chef-provisioning/pull/299) ([jkeiser](https://github.com/jkeiser))
332
- - Create generic "spec\_registry" which will allow drivers to [\#297](https://github.com/chef/chef-provisioning/pull/297) ([jkeiser](https://github.com/jkeiser))
333
- - Make with\_driver do ... end work [\#296](https://github.com/chef/chef-provisioning/pull/296) ([jkeiser](https://github.com/jkeiser))
334
-
335
- ## [v0.19](https://github.com/chef/chef-provisioning/tree/v0.19) (2015-02-26)
336
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.18...v0.19)
337
-
338
- **Fixed bugs:**
339
-
340
- - chef-metal is nuking 'normal' attributes on every converge. [\#209](https://github.com/chef/chef-provisioning/issues/209)
341
- - Initial chef-client run on workstation talking to hosted chef-server fails on creating client [\#59](https://github.com/chef/chef-provisioning/issues/59)
342
-
343
- **Closed issues:**
344
-
345
- - machine\_batch does not inherit option from with\_machine\_options [\#277](https://github.com/chef/chef-provisioning/issues/277)
346
- - There doesn't seem to be a way to define provider specific settings for Vagrant [\#271](https://github.com/chef/chef-provisioning/issues/271)
347
- - with\_data\_center method does not work with chef-provisioning [\#265](https://github.com/chef/chef-provisioning/issues/265)
348
- - NoMethodError: undefined method `gsub' for nil:NilClass following net-ssh patch upgrade [\#263](https://github.com/chef/chef-provisioning/issues/263)
349
- - Stuck at ssh for centos aws machine [\#257](https://github.com/chef/chef-provisioning/issues/257)
350
- - Broken link and update in Documentation [\#252](https://github.com/chef/chef-provisioning/issues/252)
351
- - visibility for machine\_options issue [\#246](https://github.com/chef/chef-provisioning/issues/246)
352
-
353
- **Merged pull requests:**
354
-
355
- - 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))
356
- - Fix \#59: set node permissions correctly before converging [\#293](https://github.com/chef/chef-provisioning/pull/293) ([jkeiser](https://github.com/jkeiser))
357
- - Remove some project noise files ;\) [\#291](https://github.com/chef/chef-provisioning/pull/291) ([fnichol](https://github.com/fnichol))
358
- - Pass \[\] instead of nil when there are no machine specs [\#286](https://github.com/chef/chef-provisioning/pull/286) ([jkeiser](https://github.com/jkeiser))
359
- - Add chef\_version, prerelease and install\_sh\_arguments to InstallSh [\#284](https://github.com/chef/chef-provisioning/pull/284) ([jkeiser](https://github.com/jkeiser))
360
- - Add machine.chef\_config attribute to change client.rb [\#279](https://github.com/chef/chef-provisioning/pull/279) ([jkeiser](https://github.com/jkeiser))
361
- - 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))
362
-
363
- ## [v0.18](https://github.com/chef/chef-provisioning/tree/v0.18) (2015-01-27)
364
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.17...v0.18)
365
-
366
- **Fixed bugs:**
367
-
368
- - Runlist...doesn't...? [\#249](https://github.com/chef/chef-provisioning/issues/249)
369
-
370
- **Closed issues:**
371
-
372
- - Cannot associate Elastic IP with EC2 driver to machine [\#253](https://github.com/chef/chef-provisioning/issues/253)
373
-
374
- **Merged pull requests:**
375
-
376
- - Fix forward\_port when using net-ssh 2.9.2. [\#267](https://github.com/chef/chef-provisioning/pull/267) ([causton81](https://github.com/causton81))
377
- - Destroy action to the image provider. [\#251](https://github.com/chef/chef-provisioning/pull/251) ([miguelcnf](https://github.com/miguelcnf))
378
-
379
- ## [v0.17](https://github.com/chef/chef-provisioning/tree/v0.17) (2014-12-17)
380
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.16...v0.17)
381
-
382
- **Fixed bugs:**
383
-
384
- - Automatically create images data bag if needed [\#228](https://github.com/chef/chef-provisioning/issues/228)
385
- - Vagrant Example Fails with Checksum Mismatch [\#206](https://github.com/chef/chef-provisioning/issues/206)
386
- - Stuck waiting for Windows SSH access? [\#144](https://github.com/chef/chef-provisioning/issues/144)
387
-
388
- **Closed issues:**
389
-
390
- - error running the example [\#231](https://github.com/chef/chef-provisioning/issues/231)
391
- - machine\_batch doesn't destroy [\#226](https://github.com/chef/chef-provisioning/issues/226)
392
- - README shows incorrect require for using fog\_key\_pair [\#225](https://github.com/chef/chef-provisioning/issues/225)
393
- - Error: Could not find a valid gem 'chef-provisioning-vagrant' [\#217](https://github.com/chef/chef-provisioning/issues/217)
394
- - signal to generate a key raises errors in converge output [\#213](https://github.com/chef/chef-provisioning/issues/213)
395
- - Machine destroy fails with "undefined local variable or method `iam\_endpoint'" [\#198](https://github.com/chef/chef-provisioning/issues/198)
396
- - FAQ link in readme leads to 404 [\#192](https://github.com/chef/chef-provisioning/issues/192)
397
- - Windows converge error: command 'mkdir -p /etc/chef' exited with code 127 [\#178](https://github.com/chef/chef-provisioning/issues/178)
398
- - Way to not need an /etc/chef for provisioning chef-client run? [\#177](https://github.com/chef/chef-provisioning/issues/177)
399
- - Error executing action 'destroy' on resource 'machine\_batch\[default\]' [\#152](https://github.com/chef/chef-provisioning/issues/152)
400
- - Setting up local mode when embedding chef-metal [\#85](https://github.com/chef/chef-provisioning/issues/85)
401
-
402
- **Merged pull requests:**
403
-
404
- - Remove pry [\#248](https://github.com/chef/chef-provisioning/pull/248) ([jaym](https://github.com/jaym))
405
- - Update to ignore .idea directories. [\#247](https://github.com/chef/chef-provisioning/pull/247) ([miguelcnf](https://github.com/miguelcnf))
406
- - Change Metal to Provisioning [\#240](https://github.com/chef/chef-provisioning/pull/240) ([twellspring](https://github.com/twellspring))
407
- - In simple example, require chef/provisioning [\#239](https://github.com/chef/chef-provisioning/pull/239) ([janeireton](https://github.com/janeireton))
408
- - MEGA chef-provisioning-test-suite project dump [\#238](https://github.com/chef/chef-provisioning/pull/238) ([wrightp](https://github.com/wrightp))
409
- - Fix ssh driver url [\#233](https://github.com/chef/chef-provisioning/pull/233) ([gravitystorm](https://github.com/gravitystorm))
410
- - Flip logic on ssl peer validation [\#232](https://github.com/chef/chef-provisioning/pull/232) ([andrewelizondo](https://github.com/andrewelizondo))
411
- - add chef-provisioning-crowbar to README.md [\#230](https://github.com/chef/chef-provisioning/pull/230) ([newgoliath](https://github.com/newgoliath))
412
- - Update vSphere driver link. [\#229](https://github.com/chef/chef-provisioning/pull/229) ([cmluciano](https://github.com/cmluciano))
413
- - Make machine\_batch convergent [\#227](https://github.com/chef/chef-provisioning/pull/227) ([jkeiser](https://github.com/jkeiser))
414
- - Work with Chef 12 [\#224](https://github.com/chef/chef-provisioning/pull/224) ([jkeiser](https://github.com/jkeiser))
415
-
416
- ## [v0.16](https://github.com/chef/chef-provisioning/tree/v0.16) (2014-11-05)
417
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.3...v0.16)
418
-
419
- ## [v0.15.3](https://github.com/chef/chef-provisioning/tree/v0.15.3) (2014-11-05)
420
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.2...v0.15.3)
421
-
422
- ## [v0.15.2](https://github.com/chef/chef-provisioning/tree/v0.15.2) (2014-11-04)
423
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.1...v0.15.2)
424
-
425
- **Closed issues:**
426
-
427
- - config validation [\#223](https://github.com/chef/chef-provisioning/issues/223)
428
- - create utility for generating chef-client command strings based on server, driver, platform, tests, etc [\#222](https://github.com/chef/chef-provisioning/issues/222)
429
- - configurable os platform/version and mapping [\#221](https://github.com/chef/chef-provisioning/issues/221)
430
- - chef-client error scanning [\#220](https://github.com/chef/chef-provisioning/issues/220)
431
- - add azure driver test [\#219](https://github.com/chef/chef-provisioning/issues/219)
432
- - Configure chef-provisioning-test-suite for Travis CI [\#218](https://github.com/chef/chef-provisioning/issues/218)
433
- - Doubt in Server Provisioning through Chef metal, Vagrant and VBox [\#215](https://github.com/chef/chef-provisioning/issues/215)
434
- - Where is chef-provisioning-fog? [\#214](https://github.com/chef/chef-provisioning/issues/214)
435
-
436
- **Merged pull requests:**
437
-
438
- - Rename Chef Metal to Chef Provisioning [\#216](https://github.com/chef/chef-provisioning/pull/216) ([kanerogers](https://github.com/kanerogers))
439
-
440
- ## [v0.15.1](https://github.com/chef/chef-provisioning/tree/v0.15.1) (2014-10-30)
441
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15...v0.15.1)
442
-
443
- **Closed issues:**
444
-
445
- - Rename to chef-provisioning [\#210](https://github.com/chef/chef-provisioning/issues/210)
446
-
447
- ## [v0.15](https://github.com/chef/chef-provisioning/tree/v0.15) (2014-10-29)
448
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14.2...v0.15)
449
-
450
- **Fixed bugs:**
451
-
452
- - machine.tag does not add tag to AWS \(only the node\) [\#165](https://github.com/chef/chef-provisioning/issues/165)
453
- - with\_chef\_local\_server isn't working with metal 0.14.2 [\#159](https://github.com/chef/chef-provisioning/issues/159)
454
- - Remove default parallelism [\#124](https://github.com/chef/chef-provisioning/issues/124)
455
- - Server provesioning through Vagrant behind Corporate Firewall using Chef Metal. [\#121](https://github.com/chef/chef-provisioning/issues/121)
456
- - machine\_file connects as vagrant [\#120](https://github.com/chef/chef-provisioning/issues/120)
457
- - 'action :converge\_only' exception [\#90](https://github.com/chef/chef-provisioning/issues/90)
458
- - Unable to use Vagrant driver behind corporate http proxy [\#74](https://github.com/chef/chef-provisioning/issues/74)
459
-
460
- **Closed issues:**
461
-
462
- - FFI\_Yajl::ParseError: parse error: premature EOF when using with\_chef\_server [\#204](https://github.com/chef/chef-provisioning/issues/204)
463
- - Azure Support [\#191](https://github.com/chef/chef-provisioning/issues/191)
464
- - QUESTION: Multiple machine tags [\#188](https://github.com/chef/chef-provisioning/issues/188)
465
- - ChecksumMismatch error running example with Vagrant provider [\#183](https://github.com/chef/chef-provisioning/issues/183)
466
- - Can I send user data to AWS when creating an instance from an AMI [\#182](https://github.com/chef/chef-provisioning/issues/182)
467
- - Net::HTTPServerException: 404 "Object Not Found" [\#181](https://github.com/chef/chef-provisioning/issues/181)
468
- - undefined method `\<\<' for \#\<Chef::EventDispatch::EventsOutputStream:0x00000005431890\> [\#179](https://github.com/chef/chef-provisioning/issues/179)
469
- - Can't connect to Windows machine running SSH [\#175](https://github.com/chef/chef-provisioning/issues/175)
470
- - custom bootstrap? [\#169](https://github.com/chef/chef-provisioning/issues/169)
471
- - Is the -j option working correctly with metal? [\#168](https://github.com/chef/chef-provisioning/issues/168)
472
- - Can I run more than one chef-client at once? [\#166](https://github.com/chef/chef-provisioning/issues/166)
473
- - with\_chef\_local\_server can't find vendored cookbook [\#163](https://github.com/chef/chef-provisioning/issues/163)
474
- - Not handling metadata.rb dependencies correctly? [\#161](https://github.com/chef/chef-provisioning/issues/161)
475
- - with\_chef\_local\_server can't find cookbook in cookbook\_path [\#160](https://github.com/chef/chef-provisioning/issues/160)
476
- - Converging after creating - undefined method 'split' for nil:NilClass [\#158](https://github.com/chef/chef-provisioning/issues/158)
477
- - Provisioning machines at a later time after creating [\#156](https://github.com/chef/chef-provisioning/issues/156)
478
- - Convergence error - Permission denied @ dir\_s\_mkdir [\#154](https://github.com/chef/chef-provisioning/issues/154)
479
- - Annoying SSL warning when creating new machine [\#150](https://github.com/chef/chef-provisioning/issues/150)
480
- - "SSH did not come up" timeout [\#146](https://github.com/chef/chef-provisioning/issues/146)
481
- - Proxy blocking installations. [\#145](https://github.com/chef/chef-provisioning/issues/145)
482
- - Chef-metal-fog with digital ocean doesn't seem to like large ssh keys [\#140](https://github.com/chef/chef-provisioning/issues/140)
483
-
484
- **Merged pull requests:**
485
-
486
- - Chef provisioning [\#211](https://github.com/chef/chef-provisioning/pull/211) ([jkeiser](https://github.com/jkeiser))
487
- - Require data bag resources [\#208](https://github.com/chef/chef-provisioning/pull/208) ([raskchanky](https://github.com/raskchanky))
488
- - Support for resources that are backed by data bags [\#205](https://github.com/chef/chef-provisioning/pull/205) ([johnewart](https://github.com/johnewart))
489
- - Add a Gitter chat badge to README.md [\#199](https://github.com/chef/chef-provisioning/pull/199) ([gitter-badger](https://github.com/gitter-badger))
490
- - Load balancer and data center support work [\#196](https://github.com/chef/chef-provisioning/pull/196) ([johnewart](https://github.com/johnewart))
491
- - 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))
492
- - Winrm bump [\#194](https://github.com/chef/chef-provisioning/pull/194) ([mwrock](https://github.com/mwrock))
493
- - YARDoc updates [\#193](https://github.com/chef/chef-provisioning/pull/193) ([johnewart](https://github.com/johnewart))
494
- - do not verify ssl because we only use http [\#164](https://github.com/chef/chef-provisioning/pull/164) ([hh](https://github.com/hh))
495
- - Added proxy support for metadata download [\#162](https://github.com/chef/chef-provisioning/pull/162) ([ndobson](https://github.com/ndobson))
496
-
497
- ## [v0.14.2](https://github.com/chef/chef-provisioning/tree/v0.14.2) (2014-09-04)
498
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14.1...v0.14.2)
499
-
500
- **Fixed bugs:**
501
-
502
- - Some node names don't seem to work \(car and sun\) [\#129](https://github.com/chef/chef-provisioning/issues/129)
503
- - 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)
504
- - Error on machine\_batch if running chef as different user [\#111](https://github.com/chef/chef-provisioning/issues/111)
505
- - Chef 11.12.8 incompatible with cheffish 0.7 [\#106](https://github.com/chef/chef-provisioning/issues/106)
506
- - with\_machine\_options does not honor :key\_name [\#91](https://github.com/chef/chef-provisioning/issues/91)
507
- - nil machine object raise expection in dry-run [\#54](https://github.com/chef/chef-provisioning/issues/54)
508
- - After creating the node/client ec2 attributes are not available [\#34](https://github.com/chef/chef-provisioning/issues/34)
509
- - 'with\_chef\_server' bootstrap permissions for client.pem and client.rb [\#32](https://github.com/chef/chef-provisioning/issues/32)
510
-
511
- **Closed issues:**
512
-
513
- - Possible to use different ports for parallel chef-zero runs? [\#155](https://github.com/chef/chef-provisioning/issues/155)
514
- - SCP did not finish successfully \(1\) [\#151](https://github.com/chef/chef-provisioning/issues/151)
515
- - cannot load such file -- chef\_metal/driver\_init/fog [\#149](https://github.com/chef/chef-provisioning/issues/149)
516
- - Chef::Exceptions::ContentLengthMismatch: Response body length 65536 does not match HTTP Content-Length header 88744. [\#139](https://github.com/chef/chef-provisioning/issues/139)
517
- - Dependency solver overloaded [\#112](https://github.com/chef/chef-provisioning/issues/112)
518
- - 0.13 issue: Unable to resolve dependencies: cheffish requires chef-zero \(~\> 2.2\) [\#105](https://github.com/chef/chef-provisioning/issues/105)
519
-
520
- **Merged pull requests:**
521
-
522
- - pass timeout from execution\_options to winrm set\_timeout [\#153](https://github.com/chef/chef-provisioning/pull/153) ([mwrock](https://github.com/mwrock))
523
- - Remove Chef 11.14 alpha note in readme [\#136](https://github.com/chef/chef-provisioning/pull/136) ([viglesiasce](https://github.com/viglesiasce))
524
- - Handle Host Down and Network Unreachable [\#127](https://github.com/chef/chef-provisioning/pull/127) ([viglesiasce](https://github.com/viglesiasce))
525
-
526
- ## [v0.14.1](https://github.com/chef/chef-provisioning/tree/v0.14.1) (2014-08-19)
527
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14...v0.14.1)
528
-
529
- **Closed issues:**
530
-
531
- - perform convergence talking to chef-zero on the node \(ala test-kitchen\) [\#122](https://github.com/chef/chef-provisioning/issues/122)
532
-
533
- ## [v0.14](https://github.com/chef/chef-provisioning/tree/v0.14) (2014-08-18)
534
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.13...v0.14)
535
-
536
- **Closed issues:**
537
-
538
- - Creating clusters in Vagrant with chef-metal yields a Net::SSH::Exception [\#123](https://github.com/chef/chef-provisioning/issues/123)
539
- - Error running Vagrant example on Windows 7 [\#118](https://github.com/chef/chef-provisioning/issues/118)
540
- - Make an image factory [\#109](https://github.com/chef/chef-provisioning/issues/109)
541
-
542
- **Merged pull requests:**
543
-
544
- - Get machine images working with multiple machines [\#119](https://github.com/chef/chef-provisioning/pull/119) ([johnewart](https://github.com/johnewart))
545
- - add VPC related comments to docs for AWS provider [\#117](https://github.com/chef/chef-provisioning/pull/117) ([andrewgoktepe](https://github.com/andrewgoktepe))
546
- - Machine image fixes [\#113](https://github.com/chef/chef-provisioning/pull/113) ([johnewart](https://github.com/johnewart))
547
- - Machine image [\#110](https://github.com/chef/chef-provisioning/pull/110) ([jkeiser](https://github.com/jkeiser))
548
-
549
- ## [v0.13](https://github.com/chef/chef-provisioning/tree/v0.13) (2014-07-15)
550
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.7.1...v0.13)
551
-
552
- ## [v0.7.1](https://github.com/chef/chef-provisioning/tree/v0.7.1) (2014-07-15)
553
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.6.1...v0.7.1)
554
-
555
- **Fixed bugs:**
556
-
557
- - Are there plans to make the fog gem an "opt in"? [\#63](https://github.com/chef/chef-provisioning/issues/63)
558
-
559
- **Closed issues:**
560
-
561
- - undefined method `parallel\_do' [\#101](https://github.com/chef/chef-provisioning/issues/101)
562
- - Bootstrapping Windows against chef-zero [\#96](https://github.com/chef/chef-provisioning/issues/96)
563
- - Changing the runlist of a machine [\#95](https://github.com/chef/chef-provisioning/issues/95)
564
- - Allow for indirect connectivity to nodes in driver interface [\#93](https://github.com/chef/chef-provisioning/issues/93)
565
-
566
- **Merged pull requests:**
567
-
568
- - add docs for providers [\#104](https://github.com/chef/chef-provisioning/pull/104) ([MrMMorris](https://github.com/MrMMorris))
569
- - Add workaround for Hosted Chef servers to README [\#103](https://github.com/chef/chef-provisioning/pull/103) ([MrMMorris](https://github.com/MrMMorris))
570
- - include bootstrap\_proxy key into convergence\_options [\#102](https://github.com/chef/chef-provisioning/pull/102) ([SIGUSR2](https://github.com/SIGUSR2))
571
- - winrm fixes [\#100](https://github.com/chef/chef-provisioning/pull/100) ([mwrock](https://github.com/mwrock))
572
- - waffle.io Badge [\#92](https://github.com/chef/chef-provisioning/pull/92) ([waffle-iron](https://github.com/waffle-iron))
573
-
574
- ## [v0.6.1](https://github.com/chef/chef-provisioning/tree/v0.6.1) (2014-06-18)
575
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.12.1...v0.6.1)
576
-
577
- ## [v0.12.1](https://github.com/chef/chef-provisioning/tree/v0.12.1) (2014-06-18)
578
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.12...v0.12.1)
579
-
580
- **Closed issues:**
581
-
582
- - Failure with action :setup and machine\_batch [\#83](https://github.com/chef/chef-provisioning/issues/83)
583
-
584
- ## [v0.12](https://github.com/chef/chef-provisioning/tree/v0.12) (2014-06-18)
585
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.4...v0.12)
586
-
587
- **Closed issues:**
588
-
589
- - Less SSH Trash output [\#87](https://github.com/chef/chef-provisioning/issues/87)
590
- - 403 error when registering the new node as a client [\#80](https://github.com/chef/chef-provisioning/issues/80)
591
-
592
- **Merged pull requests:**
593
-
594
- - Fix incorrect timeline/blog post date in README.md [\#86](https://github.com/chef/chef-provisioning/pull/86) ([mikedillion](https://github.com/mikedillion))
595
-
596
- ## [v0.5.4](https://github.com/chef/chef-provisioning/tree/v0.5.4) (2014-06-10)
597
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.3...v0.5.4)
598
-
599
- **Merged pull requests:**
600
-
601
- - Typo fix in README [\#84](https://github.com/chef/chef-provisioning/pull/84) ([jalessio](https://github.com/jalessio))
602
- - fixing ssl verify mode value from none to verify\_none [\#82](https://github.com/chef/chef-provisioning/pull/82) ([mwrock](https://github.com/mwrock))
603
- - 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))
604
-
605
- ## [v0.5.3](https://github.com/chef/chef-provisioning/tree/v0.5.3) (2014-06-05)
606
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.2...v0.5.3)
607
-
608
- ## [v0.11.2](https://github.com/chef/chef-provisioning/tree/v0.11.2) (2014-06-04)
609
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.2...v0.11.2)
610
-
611
- ## [v0.5.2](https://github.com/chef/chef-provisioning/tree/v0.5.2) (2014-06-04)
612
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.1...v0.5.2)
613
-
614
- **Fixed bugs:**
615
-
616
- - Non-Ubuntu AWS SSH Does not work [\#69](https://github.com/chef/chef-provisioning/issues/69)
617
-
618
- **Closed issues:**
619
-
620
- - with\_chef\_local\_server :port gets you two listening chef-zero instances [\#79](https://github.com/chef/chef-provisioning/issues/79)
621
-
622
- ## [v0.11.1](https://github.com/chef/chef-provisioning/tree/v0.11.1) (2014-06-04)
623
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.1...v0.11.1)
624
-
625
- **Closed issues:**
626
-
627
- - ERROR: undefined method `config\_for\_url' for ChefMetal:Module [\#73](https://github.com/chef/chef-provisioning/issues/73)
628
-
629
- ## [v0.5.1](https://github.com/chef/chef-provisioning/tree/v0.5.1) (2014-06-04)
630
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11...v0.5.1)
631
-
632
- ## [v0.11](https://github.com/chef/chef-provisioning/tree/v0.11) (2014-06-04)
633
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.11...v0.11)
634
-
635
- **Closed issues:**
636
-
637
- - Add '--config-file-jail .' to the example given where you first spin up a box. [\#77](https://github.com/chef/chef-provisioning/issues/77)
638
- - dependency chef-metal-vagrant [\#76](https://github.com/chef/chef-provisioning/issues/76)
639
- - provisioner\_options not valid anymore? [\#75](https://github.com/chef/chef-provisioning/issues/75)
640
-
641
- ## [v0.11.beta.11](https://github.com/chef/chef-provisioning/tree/v0.11.beta.11) (2014-06-03)
642
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.6...v0.11.beta.11)
643
-
644
- ## [v0.5.beta.6](https://github.com/chef/chef-provisioning/tree/v0.5.beta.6) (2014-06-03)
645
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.10...v0.5.beta.6)
646
-
647
- ## [v0.11.beta.10](https://github.com/chef/chef-provisioning/tree/v0.11.beta.10) (2014-06-03)
648
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.5...v0.11.beta.10)
649
-
650
- ## [v0.5.beta.5](https://github.com/chef/chef-provisioning/tree/v0.5.beta.5) (2014-06-03)
651
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.9...v0.5.beta.5)
652
-
653
- ## [v0.11.beta.9](https://github.com/chef/chef-provisioning/tree/v0.11.beta.9) (2014-06-03)
654
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.8...v0.11.beta.9)
655
-
656
- ## [v0.11.beta.8](https://github.com/chef/chef-provisioning/tree/v0.11.beta.8) (2014-06-03)
657
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.4...v0.11.beta.8)
658
-
659
- ## [v0.5.beta.4](https://github.com/chef/chef-provisioning/tree/v0.5.beta.4) (2014-06-03)
660
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.7...v0.5.beta.4)
661
-
662
- **Closed issues:**
663
-
664
- - Documentation of Using Chef Profiles: bug or feature? [\#72](https://github.com/chef/chef-provisioning/issues/72)
665
- - chefspec tests see machines as machine\_batch [\#66](https://github.com/chef/chef-provisioning/issues/66)
666
- - Machines are converging twice [\#62](https://github.com/chef/chef-provisioning/issues/62)
667
- - How can i use 'secret\_file' from workstation knife config [\#33](https://github.com/chef/chef-provisioning/issues/33)
668
- - Question: Is there an example for 'with\_chef\_server' [\#13](https://github.com/chef/chef-provisioning/issues/13)
669
- - Consider using the newer lxc-download template [\#12](https://github.com/chef/chef-provisioning/issues/12)
670
- - Any reasons this is packaged as a gem and not HWRPs? [\#9](https://github.com/chef/chef-provisioning/issues/9)
671
- - Does chef-metal currently support Openstack? [\#5](https://github.com/chef/chef-provisioning/issues/5)
672
- - provisioner\_option directive overwrites defaults [\#3](https://github.com/chef/chef-provisioning/issues/3)
673
-
674
- ## [v0.11.beta.7](https://github.com/chef/chef-provisioning/tree/v0.11.beta.7) (2014-05-31)
675
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.3...v0.11.beta.7)
676
-
677
- ## [v0.5.beta.3](https://github.com/chef/chef-provisioning/tree/v0.5.beta.3) (2014-05-31)
678
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.6...v0.5.beta.3)
679
-
680
- **Closed issues:**
681
-
682
- - Problems with with\_chef\_server [\#67](https://github.com/chef/chef-provisioning/issues/67)
683
-
684
- ## [v0.11.beta.6](https://github.com/chef/chef-provisioning/tree/v0.11.beta.6) (2014-05-29)
685
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.5...v0.11.beta.6)
686
-
687
- **Closed issues:**
688
-
689
- - The run list from machine resource is not saved on node. [\#35](https://github.com/chef/chef-provisioning/issues/35)
690
-
691
- **Merged pull requests:**
692
-
693
- - Add options argument to SSH gateway [\#60](https://github.com/chef/chef-provisioning/pull/60) ([marcusn](https://github.com/marcusn))
694
-
695
- ## [v0.11.beta.5](https://github.com/chef/chef-provisioning/tree/v0.11.beta.5) (2014-05-28)
696
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.4...v0.11.beta.5)
697
-
698
- ## [v0.11.beta.4](https://github.com/chef/chef-provisioning/tree/v0.11.beta.4) (2014-05-28)
699
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.2...v0.11.beta.4)
700
-
701
- ## [v0.5.beta.2](https://github.com/chef/chef-provisioning/tree/v0.5.beta.2) (2014-05-28)
702
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.3...v0.5.beta.2)
703
-
704
- ## [v0.11.beta.3](https://github.com/chef/chef-provisioning/tree/v0.11.beta.3) (2014-05-28)
705
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.2...v0.11.beta.3)
706
-
707
- **Merged pull requests:**
708
-
709
- - typo editing [\#58](https://github.com/chef/chef-provisioning/pull/58) ([bdupras](https://github.com/bdupras))
710
- - vmware typos [\#57](https://github.com/chef/chef-provisioning/pull/57) ([bdupras](https://github.com/bdupras))
711
-
712
- ## [v0.11.beta.2](https://github.com/chef/chef-provisioning/tree/v0.11.beta.2) (2014-05-24)
713
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta...v0.11.beta.2)
714
-
715
- ## [v0.11.beta](https://github.com/chef/chef-provisioning/tree/v0.11.beta) (2014-05-23)
716
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta...v0.11.beta)
717
-
718
- ## [v0.5.beta](https://github.com/chef/chef-provisioning/tree/v0.5.beta) (2014-05-23)
719
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10.2...v0.5.beta)
720
-
721
- **Closed issues:**
722
-
723
- - SoftLayer provisioning options? [\#56](https://github.com/chef/chef-provisioning/issues/56)
724
- - Error executing action `converge` on resource 'machine\_batch\[default\]' : Name Required [\#52](https://github.com/chef/chef-provisioning/issues/52)
725
- - New nodes don't have permissions to update themselves [\#11](https://github.com/chef/chef-provisioning/issues/11)
726
-
727
- **Merged pull requests:**
728
-
729
- - Grant Transport support for ssh\_gateway used with jump hosts [\#53](https://github.com/chef/chef-provisioning/pull/53) ([JonathanSerafini](https://github.com/JonathanSerafini))
730
-
731
- ## [v0.10.2](https://github.com/chef/chef-provisioning/tree/v0.10.2) (2014-05-02)
732
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10.1...v0.10.2)
733
-
734
- ## [v0.10.1](https://github.com/chef/chef-provisioning/tree/v0.10.1) (2014-05-02)
735
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10...v0.10.1)
736
-
737
- **Closed issues:**
738
-
739
- - Error executing action `converge` on resource 'machine\_batch\[default\]' [\#51](https://github.com/chef/chef-provisioning/issues/51)
740
-
741
- ## [v0.10](https://github.com/chef/chef-provisioning/tree/v0.10) (2014-05-01)
742
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.4...v0.10)
743
-
744
- **Merged pull requests:**
745
-
746
- - Update gem dependencies to use refactored chef\_metal\_fog [\#50](https://github.com/chef/chef-provisioning/pull/50) ([mikesplain](https://github.com/mikesplain))
747
- - re-raise Net::SCP error when fails to download [\#49](https://github.com/chef/chef-provisioning/pull/49) ([carltonstedman](https://github.com/carltonstedman))
748
-
749
- ## [v0.9.4](https://github.com/chef/chef-provisioning/tree/v0.9.4) (2014-04-24)
750
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.3...v0.9.4)
751
-
752
- ## [v0.9.3](https://github.com/chef/chef-provisioning/tree/v0.9.3) (2014-04-14)
753
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.2...v0.9.3)
754
-
755
- ## [v0.9.2](https://github.com/chef/chef-provisioning/tree/v0.9.2) (2014-04-13)
756
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.1...v0.9.2)
757
-
758
- ## [v0.9.1](https://github.com/chef/chef-provisioning/tree/v0.9.1) (2014-04-12)
759
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9...v0.9.1)
760
-
761
- **Closed issues:**
762
-
763
- - machine converge action fails with chef-zero [\#47](https://github.com/chef/chef-provisioning/issues/47)
764
-
765
- ## [v0.9](https://github.com/chef/chef-provisioning/tree/v0.9) (2014-04-11)
766
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8.2...v0.9)
767
-
768
- **Closed issues:**
769
-
770
- - Support for already-provisioned machines - enhancement request [\#41](https://github.com/chef/chef-provisioning/issues/41)
771
-
772
- **Merged pull requests:**
773
-
774
- - Apply the same fix from machine\_file to machine\_execute [\#48](https://github.com/chef/chef-provisioning/pull/48) ([irvingpop](https://github.com/irvingpop))
775
-
776
- ## [v0.8.2](https://github.com/chef/chef-provisioning/tree/v0.8.2) (2014-04-09)
777
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8.1...v0.8.2)
778
-
779
- ## [v0.8.1](https://github.com/chef/chef-provisioning/tree/v0.8.1) (2014-04-09)
780
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8...v0.8.1)
781
-
782
- **Closed issues:**
783
-
784
- - show machine chef-client run output - enhancement request [\#40](https://github.com/chef/chef-provisioning/issues/40)
785
-
786
- **Merged pull requests:**
787
-
788
- - New ohai hints feature allowing the creation hints. [\#38](https://github.com/chef/chef-provisioning/pull/38) ([ligature](https://github.com/ligature))
789
-
790
- ## [v0.8](https://github.com/chef/chef-provisioning/tree/v0.8) (2014-04-08)
791
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.7...v0.8)
792
-
793
- **Closed issues:**
794
-
795
- - machine\_file enhancement\(s\) request [\#39](https://github.com/chef/chef-provisioning/issues/39)
796
-
797
- **Merged pull requests:**
798
-
799
- - Add a SUPER SIMPLE machine\_execute resource [\#46](https://github.com/chef/chef-provisioning/pull/46) ([irvingpop](https://github.com/irvingpop))
800
-
801
- ## [v0.7](https://github.com/chef/chef-provisioning/tree/v0.7) (2014-04-06)
802
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.6...v0.7)
803
-
804
- **Merged pull requests:**
805
-
806
- - cookbooks should have their name in metadata [\#45](https://github.com/chef/chef-provisioning/pull/45) ([jtimberman](https://github.com/jtimberman))
807
-
808
- ## [v0.6](https://github.com/chef/chef-provisioning/tree/v0.6) (2014-04-04)
809
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5...v0.6)
810
-
811
- **Merged pull requests:**
812
-
813
- - Grant the node's client read+update permissions [\#44](https://github.com/chef/chef-provisioning/pull/44) ([dafyddcrosby](https://github.com/dafyddcrosby))
814
-
815
- ## [v0.5](https://github.com/chef/chef-provisioning/tree/v0.5) (2014-04-04)
816
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.4...v0.5)
817
-
818
- **Closed issues:**
819
-
820
- - machine\_file :download fails because provider is undefined [\#42](https://github.com/chef/chef-provisioning/issues/42)
821
-
822
- **Merged pull requests:**
823
-
824
- - Add owner, group and mode attributes to machine\_file [\#43](https://github.com/chef/chef-provisioning/pull/43) ([irvingpop](https://github.com/irvingpop))
825
- - Dt/driver surgery [\#36](https://github.com/chef/chef-provisioning/pull/36) ([jkeiser](https://github.com/jkeiser))
826
- - Ec2 fixes [\#27](https://github.com/chef/chef-provisioning/pull/27) ([ligature](https://github.com/ligature))
827
-
828
- ## [v0.4](https://github.com/chef/chef-provisioning/tree/v0.4) (2014-03-29)
829
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.3.1...v0.4)
830
-
831
- **Closed issues:**
832
-
833
- - Minimum fog version suggestion \('ubuntu' user hardcoded in AWS SSH\) [\#28](https://github.com/chef/chef-provisioning/issues/28)
834
- - fog\_provisioner hardcoded to public\_ip\_address [\#20](https://github.com/chef/chef-provisioning/issues/20)
835
- - ec2 availability\_zone ignored [\#19](https://github.com/chef/chef-provisioning/issues/19)
836
-
837
- **Merged pull requests:**
838
-
839
- - 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))
840
- - Fix typo 'pey-pair-name' -\> 'key-pair-name' [\#30](https://github.com/chef/chef-provisioning/pull/30) ([dafyddcrosby](https://github.com/dafyddcrosby))
841
- - Remove unused variable provisioner\_options [\#26](https://github.com/chef/chef-provisioning/pull/26) ([dafyddcrosby](https://github.com/dafyddcrosby))
842
- - 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))
843
- - Added new private\_ip compute\_options attribute. [\#23](https://github.com/chef/chef-provisioning/pull/23) ([ligature](https://github.com/ligature))
844
- - 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))
845
- - Initial Openstack support [\#15](https://github.com/chef/chef-provisioning/pull/15) ([cstewart87](https://github.com/cstewart87))
846
-
847
- ## [v0.3.1](https://github.com/chef/chef-provisioning/tree/v0.3.1) (2014-03-18)
848
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.3...v0.3.1)
849
-
850
- **Closed issues:**
851
-
852
- - undefined method `synchronize' for nil:NilClass [\#18](https://github.com/chef/chef-provisioning/issues/18)
853
-
854
- **Merged pull requests:**
855
-
856
- - initialize right mutex. use ssl if required [\#17](https://github.com/chef/chef-provisioning/pull/17) ([ranjib](https://github.com/ranjib))
857
- - Fix to\_sym error parsing bootstrap\_options [\#16](https://github.com/chef/chef-provisioning/pull/16) ([RoboticCheese](https://github.com/RoboticCheese))
858
-
859
- ## [v0.3](https://github.com/chef/chef-provisioning/tree/v0.3) (2014-03-18)
860
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.2.1...v0.3)
861
-
862
- **Closed issues:**
863
-
864
- - Syntax for specifying flavor/image? [\#10](https://github.com/chef/chef-provisioning/issues/10)
865
-
866
- **Merged pull requests:**
867
-
868
- - Fix copypaste typo from vagrant to ec2 [\#14](https://github.com/chef/chef-provisioning/pull/14) ([dafyddcrosby](https://github.com/dafyddcrosby))
869
-
870
- ## [v0.2.1](https://github.com/chef/chef-provisioning/tree/v0.2.1) (2014-03-07)
871
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.2...v0.2.1)
872
-
873
- ## [v0.2](https://github.com/chef/chef-provisioning/tree/v0.2) (2014-03-04)
874
- [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.1...v0.2)
875
-
876
- **Merged pull requests:**
877
-
878
- - Update URLs of GH repo [\#8](https://github.com/chef/chef-provisioning/pull/8) ([StephenKing](https://github.com/StephenKing))
879
- - Typo in README.md [\#7](https://github.com/chef/chef-provisioning/pull/7) ([StephenKing](https://github.com/StephenKing))
880
- - support for lxc [\#6](https://github.com/chef/chef-provisioning/pull/6) ([ranjib](https://github.com/ranjib))
881
- - Requirements [\#4](https://github.com/chef/chef-provisioning/pull/4) ([jkeiser](https://github.com/jkeiser))
882
-
883
- ## [v0.1](https://github.com/chef/chef-provisioning/tree/v0.1) (2013-12-21)
884
-
885
-
1
+ # Change Log
2
+
3
+ ## [2.0.1](https://github.com/chef/chef-provisioning/tree/2.0.1) (2016-09-07)
4
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v2.0.0...2.0.1)
5
+
6
+ **Closed issues:**
7
+
8
+ - Poor error message using winrm and --local-mode [\#516](https://github.com/chef/chef-provisioning/issues/516)
9
+ - machine attribute in both machine\_execute and machine\_file resources should be required. [\#449](https://github.com/chef/chef-provisioning/issues/449)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - Use Winrm v2 and let winrm-fs do file uploads [\#543](https://github.com/chef/chef-provisioning/pull/543) ([mwrock](https://github.com/mwrock))
14
+ - 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))
15
+ - set scheme to http if it was chefzero [\#517](https://github.com/chef/chef-provisioning/pull/517) ([sclarson](https://github.com/sclarson))
16
+
17
+ ## [2.0.0](https://github.com/chef/chef-provisioning/tree/2.0.0) (2016-08-24)
18
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.1...2.0.0)
19
+
20
+ **Merged pull requests:**
21
+
22
+ - Require Ruby 2.2.2+ and Cheffish 4.0 [\#538](https://github.com/chef/chef-provisioning/pull/538) ([jkeiser](https://github.com/jkeiser))
23
+
24
+ ## [v1.9.1](https://github.com/chef/chef-provisioning/tree/v1.9.1) (2016-08-11)
25
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.0...v1.9.1)
26
+
27
+ **Merged pull requests:**
28
+
29
+ - 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))
30
+
31
+ ## [v1.9.0](https://github.com/chef/chef-provisioning/tree/v1.9.0) (2016-08-11)
32
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.1...v1.9.0)
33
+
34
+ **Closed issues:**
35
+
36
+ - Uninitialized constant Chef::Resource::Machine [\#531](https://github.com/chef/chef-provisioning/issues/531)
37
+
38
+ ## [v1.8.1](https://github.com/chef/chef-provisioning/tree/v1.8.1) (2016-08-03)
39
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.0...v1.8.1)
40
+
41
+ **Merged pull requests:**
42
+
43
+ - Cleaning up a deprecation warning [\#530](https://github.com/chef/chef-provisioning/pull/530) ([tyler-ball](https://github.com/tyler-ball))
44
+
45
+ ## [v1.8.0](https://github.com/chef/chef-provisioning/tree/v1.8.0) (2016-06-16)
46
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.7.1...v1.8.0)
47
+
48
+ **Closed issues:**
49
+
50
+ - machine\_batch doesn't clearly mention which machine failed [\#499](https://github.com/chef/chef-provisioning/issues/499)
51
+ - Flexible install\_command. Do not assume internet acces. [\#474](https://github.com/chef/chef-provisioning/issues/474)
52
+
53
+ **Merged pull requests:**
54
+
55
+ - 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))
56
+ - Add support for custom :install\_sh\_url [\#515](https://github.com/chef/chef-provisioning/pull/515) ([SIGUSR2](https://github.com/SIGUSR2))
57
+ - error handling for machine\_batch resource [\#500](https://github.com/chef/chef-provisioning/pull/500) ([ckaushik](https://github.com/ckaushik))
58
+
59
+ ## [v1.7.1](https://github.com/chef/chef-provisioning/tree/v1.7.1) (2016-05-17)
60
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.7.0...v1.7.1)
61
+
62
+ **Merged pull requests:**
63
+
64
+ - 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))
65
+
66
+ ## [v1.7.0](https://github.com/chef/chef-provisioning/tree/v1.7.0) (2016-04-06)
67
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.6.0...v1.7.0)
68
+
69
+ **Merged pull requests:**
70
+
71
+ - Use mixlib-install 1.0 [\#512](https://github.com/chef/chef-provisioning/pull/512) ([jkeiser](https://github.com/jkeiser))
72
+ - Allow newer inifile gem [\#509](https://github.com/chef/chef-provisioning/pull/509) ([pburkholder](https://github.com/pburkholder))
73
+
74
+ ## [v1.6.0](https://github.com/chef/chef-provisioning/tree/v1.6.0) (2016-02-03)
75
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.5.1...v1.6.0)
76
+
77
+ **Implemented enhancements:**
78
+
79
+ - Custom port forwards. [\#445](https://github.com/chef/chef-provisioning/pull/445) ([causton81](https://github.com/causton81))
80
+
81
+ **Fixed bugs:**
82
+
83
+ - Chef::Exceptions::ContentLengthMismatch Response body length XXXX does not match HTTP Content-Length header XXXX [\#446](https://github.com/chef/chef-provisioning/issues/446)
84
+ - 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))
85
+
86
+ **Merged pull requests:**
87
+
88
+ - Fix Provisioning with Cheffish 1.x [\#496](https://github.com/chef/chef-provisioning/pull/496) ([jkeiser](https://github.com/jkeiser))
89
+ - Bump revision to 1.6.0 [\#493](https://github.com/chef/chef-provisioning/pull/493) ([jkeiser](https://github.com/jkeiser))
90
+ - Add "rake changelog" task [\#491](https://github.com/chef/chef-provisioning/pull/491) ([jkeiser](https://github.com/jkeiser))
91
+ - Stop using Chef::Provider::ChefNode directly \(cheffish 2.0 compat\) [\#490](https://github.com/chef/chef-provisioning/pull/490) ([jkeiser](https://github.com/jkeiser))
92
+ - Allow cheffish 2.0 as a dep [\#489](https://github.com/chef/chef-provisioning/pull/489) ([jkeiser](https://github.com/jkeiser))
93
+
94
+ ## [v1.5.1](https://github.com/chef/chef-provisioning/tree/v1.5.1) (2015-12-10)
95
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.5.0...v1.5.1)
96
+
97
+ **Merged pull requests:**
98
+
99
+ - 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))
100
+ - Ensure target directory exists when using write\_file with WinRM [\#471](https://github.com/chef/chef-provisioning/pull/471) ([xenolinguist](https://github.com/xenolinguist))
101
+
102
+ ## [v1.5.0](https://github.com/chef/chef-provisioning/tree/v1.5.0) (2015-10-27)
103
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.4.1...v1.5.0)
104
+
105
+ **Fixed bugs:**
106
+
107
+ - :converge action should not re-install chef-client if the desired version is already installed [\#428](https://github.com/chef/chef-provisioning/issues/428)
108
+ - SSH available timeout needs to be configurable [\#362](https://github.com/chef/chef-provisioning/issues/362)
109
+ - 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))
110
+ - 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))
111
+ - Added bootstrap\_no\_proxy support [\#458](https://github.com/chef/chef-provisioning/pull/458) ([jsmartt](https://github.com/jsmartt))
112
+
113
+ **Closed issues:**
114
+
115
+ - The action "stop" on a Machine resource does not appear to work [\#463](https://github.com/chef/chef-provisioning/issues/463)
116
+ - machine chef-client run output not logging to provisioner chef-client output [\#274](https://github.com/chef/chef-provisioning/issues/274)
117
+
118
+ **Merged pull requests:**
119
+
120
+ - 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))
121
+ - Pin mixlib-install more strictly. [\#459](https://github.com/chef/chef-provisioning/pull/459) ([sersut](https://github.com/sersut))
122
+
123
+ ## [v1.4.1](https://github.com/chef/chef-provisioning/tree/v1.4.1) (2015-09-30)
124
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.4.0...v1.4.1)
125
+
126
+ **Fixed bugs:**
127
+
128
+ - ohai\_hints should be be created at c:\chef\ohai\hints when provisioning windows nodes [\#433](https://github.com/chef/chef-provisioning/issues/433)
129
+ - 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))
130
+ - Windows ohai hints, fixes \#433 [\#435](https://github.com/chef/chef-provisioning/pull/435) ([hh](https://github.com/hh))
131
+
132
+ ## [v1.4.0](https://github.com/chef/chef-provisioning/tree/v1.4.0) (2015-09-16)
133
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.3.0...v1.4.0)
134
+
135
+ **Implemented enhancements:**
136
+
137
+ - Provisioning driver generator script [\#395](https://github.com/chef/chef-provisioning/issues/395)
138
+ - Marking lxc and hanlon as seeking maintainers [\#440](https://github.com/chef/chef-provisioning/pull/440) ([tyler-ball](https://github.com/tyler-ball))
139
+ - 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))
140
+ - Specify additional machine\_options from the resource attributes [\#424](https://github.com/chef/chef-provisioning/pull/424) ([tyler-ball](https://github.com/tyler-ball))
141
+ - Adding ignore\_converge\_failure option, fixes \#393 [\#414](https://github.com/chef/chef-provisioning/pull/414) ([tyler-ball](https://github.com/tyler-ball))
142
+ - 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))
143
+
144
+ **Fixed bugs:**
145
+
146
+ - Provisioning fails with chef api error [\#394](https://github.com/chef/chef-provisioning/issues/394)
147
+ - specifying an audit-mode in a machine's run\_list fails the provisioning run. [\#393](https://github.com/chef/chef-provisioning/issues/393)
148
+ - machine\_file resource does not work properly using with\_machine\_options [\#390](https://github.com/chef/chef-provisioning/issues/390)
149
+ - install\_sh.rb has an issue with bootstrap [\#380](https://github.com/chef/chef-provisioning/issues/380)
150
+ - Metal command --help doesn't show or explain command arguments [\#71](https://github.com/chef/chef-provisioning/issues/71)
151
+ - Added missing arguments to call of chef install shell script. [\#439](https://github.com/chef/chef-provisioning/pull/439) ([tarak](https://github.com/tarak))
152
+ - Add provides statements to providers to avoid chef-client warnings [\#416](https://github.com/chef/chef-provisioning/pull/416) ([stevendanna](https://github.com/stevendanna))
153
+ - Run our tests in a matrix of Chef client versions. [\#415](https://github.com/chef/chef-provisioning/pull/415) ([randomcamel](https://github.com/randomcamel))
154
+ - Upload the PS1 script and run directly [\#410](https://github.com/chef/chef-provisioning/pull/410) ([thommay](https://github.com/thommay))
155
+ - bump mixlib-install version [\#406](https://github.com/chef/chef-provisioning/pull/406) ([thommay](https://github.com/thommay))
156
+ - /etc/os-release support, yum support, package\_metadata option [\#315](https://github.com/chef/chef-provisioning/pull/315) ([glennmatthews](https://github.com/glennmatthews))
157
+
158
+ **Closed issues:**
159
+
160
+ - Converge fails when /tmp/chef-install.sh doesn't exist [\#423](https://github.com/chef/chef-provisioning/issues/423)
161
+ - Error forwarding port: could not forward 8889 or 0 [\#392](https://github.com/chef/chef-provisioning/issues/392)
162
+ - Chef Provisioning- Vagrant [\#372](https://github.com/chef/chef-provisioning/issues/372)
163
+ - chef-provisioning bootstrap fails [\#359](https://github.com/chef/chef-provisioning/issues/359)
164
+
165
+ **Merged pull requests:**
166
+
167
+ - Remove dependency on chef gem [\#441](https://github.com/chef/chef-provisioning/pull/441) ([ksubrama](https://github.com/ksubrama))
168
+ - Adding a CONTRIBUTING document [\#437](https://github.com/chef/chef-provisioning/pull/437) ([tyler-ball](https://github.com/tyler-ball))
169
+ - Major generator/spec/Travis improvements [\#426](https://github.com/chef/chef-provisioning/pull/426) ([randomcamel](https://github.com/randomcamel))
170
+ - Add gem version badges for core + drivers. [\#412](https://github.com/chef/chef-provisioning/pull/412) ([randomcamel](https://github.com/randomcamel))
171
+
172
+ ## [v1.3.0](https://github.com/chef/chef-provisioning/tree/v1.3.0) (2015-08-05)
173
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.2.1...v1.3.0)
174
+
175
+ **Implemented enhancements:**
176
+
177
+ - expose machine\_spec.from\_image to allocate\_machine [\#366](https://github.com/chef/chef-provisioning/pull/366) ([mwrock](https://github.com/mwrock))
178
+
179
+ **Fixed bugs:**
180
+
181
+ - chef 12.4.0 and chef-provisioning have a problem when bootstrapping a node [\#377](https://github.com/chef/chef-provisioning/issues/377)
182
+ - Add a version compatibility check to ChefDK's `chef verify` [\#355](https://github.com/chef/chef-provisioning/issues/355)
183
+ - Unit tests and checkstyle? [\#180](https://github.com/chef/chef-provisioning/issues/180)
184
+ - Hardware matching [\#135](https://github.com/chef/chef-provisioning/issues/135)
185
+ - Data center abstraction [\#132](https://github.com/chef/chef-provisioning/issues/132)
186
+ - Machine migration [\#130](https://github.com/chef/chef-provisioning/issues/130)
187
+ - Chef environment on remote machines [\#88](https://github.com/chef/chef-provisioning/issues/88)
188
+ - metal command seems to not use .chef/knife.rb. [\#70](https://github.com/chef/chef-provisioning/issues/70)
189
+ - metal binary complains about private key [\#65](https://github.com/chef/chef-provisioning/issues/65)
190
+ - Xen server VM provisioner [\#2](https://github.com/chef/chef-provisioning/issues/2)
191
+ - docs for VMware vCloud Air [\#368](https://github.com/chef/chef-provisioning/pull/368) ([hh](https://github.com/hh))
192
+
193
+ **Closed issues:**
194
+
195
+ - NoMethodError: undefined method `encoding' [\#405](https://github.com/chef/chef-provisioning/issues/405)
196
+ - \[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)
197
+ - Set up minimal Travis build [\#397](https://github.com/chef/chef-provisioning/issues/397)
198
+ - Chef Metal with 1.0 [\#396](https://github.com/chef/chef-provisioning/issues/396)
199
+ - 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)
200
+ - machine resource fails if audit failures occur [\#387](https://github.com/chef/chef-provisioning/issues/387)
201
+ - What does the error "missing required parameter name" mean [\#386](https://github.com/chef/chef-provisioning/issues/386)
202
+ - Can't connect to EC2 instance in VPC with public IP [\#385](https://github.com/chef/chef-provisioning/issues/385)
203
+ - Windows hosts are bootstrapped with the wrong url for chef-client [\#327](https://github.com/chef/chef-provisioning/issues/327)
204
+ - chef\_version convergence option is ignored for windows machines [\#300](https://github.com/chef/chef-provisioning/issues/300)
205
+ - Create opennebula plugin for chef-provisioning [\#264](https://github.com/chef/chef-provisioning/issues/264)
206
+
207
+ **Merged pull requests:**
208
+
209
+ - Remove warning about Hosted/Enterprise and clients in admins group [\#402](https://github.com/chef/chef-provisioning/pull/402) ([jkeiser](https://github.com/jkeiser))
210
+ - Add Travis badge to README. [\#400](https://github.com/chef/chef-provisioning/pull/400) ([randomcamel](https://github.com/randomcamel))
211
+ - Initial .travis.yml. [\#398](https://github.com/chef/chef-provisioning/pull/398) ([randomcamel](https://github.com/randomcamel))
212
+ - use mixlib-install to install from omnitruck [\#389](https://github.com/chef/chef-provisioning/pull/389) ([thommay](https://github.com/thommay))
213
+
214
+ ## [v1.2.1](https://github.com/chef/chef-provisioning/tree/v1.2.1) (2015-07-17)
215
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.2.0...v1.2.1)
216
+
217
+ **Fixed bugs:**
218
+
219
+ - Conflicting winrm gem causes knife to fail [\#370](https://github.com/chef/chef-provisioning/issues/370)
220
+ - remove or update test/acceptance project [\#363](https://github.com/chef/chef-provisioning/issues/363)
221
+ - Arity mismatch between MachineImage's :destroy and Driver\#destroy\_image [\#358](https://github.com/chef/chef-provisioning/issues/358)
222
+ - manual hydrate needed with chef\_data\_bag on create [\#242](https://github.com/chef/chef-provisioning/issues/242)
223
+ - ChefMetal::ConvergenceStrategy::PrecreateChefObjects does not support proxy settings [\#187](https://github.com/chef/chef-provisioning/issues/187)
224
+ - Suppress key\_data in debug output [\#171](https://github.com/chef/chef-provisioning/issues/171)
225
+ - host\_node being set to /organizations/NAME/nodes/ with no node name [\#141](https://github.com/chef/chef-provisioning/issues/141)
226
+ - Authorized ssh key overwritten with metal\_default [\#131](https://github.com/chef/chef-provisioning/issues/131)
227
+ - 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))
228
+ - Fix chef\_group [\#346](https://github.com/chef/chef-provisioning/pull/346) ([obazoud](https://github.com/obazoud))
229
+ - 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))
230
+
231
+ **Closed issues:**
232
+
233
+ - Lower the version of chef. [\#391](https://github.com/chef/chef-provisioning/issues/391)
234
+ - Cannot bootstrap FreeBSD \(bash is not installed\) [\#381](https://github.com/chef/chef-provisioning/issues/381)
235
+ - user\_data is not working in provisioning ec2 server [\#375](https://github.com/chef/chef-provisioning/issues/375)
236
+ - Latest provisioning gem is incompatible with semi-recent Chef [\#374](https://github.com/chef/chef-provisioning/issues/374)
237
+ - Chef Provisioning- Vagrant [\#373](https://github.com/chef/chef-provisioning/issues/373)
238
+ - Chef Provisioning- Vagrant [\#367](https://github.com/chef/chef-provisioning/issues/367)
239
+ - unusual behavior w/ chef-client -z and provisioning [\#357](https://github.com/chef/chef-provisioning/issues/357)
240
+ - Merge Chef-maintained drivers into the chef-provisioning repo [\#354](https://github.com/chef/chef-provisioning/issues/354)
241
+ - Update to the SDK V2 [\#353](https://github.com/chef/chef-provisioning/issues/353)
242
+ - Add support for reserved instances [\#351](https://github.com/chef/chef-provisioning/issues/351)
243
+ - OpenSSL issue with chef provisioning [\#343](https://github.com/chef/chef-provisioning/issues/343)
244
+ - no implicit conversion of String into Integer [\#270](https://github.com/chef/chef-provisioning/issues/270)
245
+ - The specified wait\_for timeout \(0.01 seconds\) was exceeded [\#269](https://github.com/chef/chef-provisioning/issues/269)
246
+ - Chef::Config.private\_key\_paths does not include ~/.chef/keys by default [\#258](https://github.com/chef/chef-provisioning/issues/258)
247
+ - chef-client -z can't find my ssh key when creating aws machine\_image [\#234](https://github.com/chef/chef-provisioning/issues/234)
248
+ - Document which classes are part of the public interface [\#203](https://github.com/chef/chef-provisioning/issues/203)
249
+ - machine\_batch failing on write file /etc/chef/client.pem [\#189](https://github.com/chef/chef-provisioning/issues/189)
250
+ - with\_driver fails on second converge: Canonical driver ... has already been created! [\#184](https://github.com/chef/chef-provisioning/issues/184)
251
+ - Output doesn't stream when run within non-login session. [\#176](https://github.com/chef/chef-provisioning/issues/176)
252
+ - QUESTION: How can I use a custom Chef library with Metal? [\#173](https://github.com/chef/chef-provisioning/issues/173)
253
+ - machine\_batch convergence cookbook synchronization very slow [\#172](https://github.com/chef/chef-provisioning/issues/172)
254
+
255
+ **Merged pull requests:**
256
+
257
+ - Tiny doc update to add clarity to vagrant provisioning example [\#369](https://github.com/chef/chef-provisioning/pull/369) ([scotthain](https://github.com/scotthain))
258
+ - Fix \#358: Arity mismatch [\#364](https://github.com/chef/chef-provisioning/pull/364) ([randomcamel](https://github.com/randomcamel))
259
+ - 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))
260
+ - update readme with vsphere driver url [\#344](https://github.com/chef/chef-provisioning/pull/344) ([mwrock](https://github.com/mwrock))
261
+
262
+ ## [v1.2.0](https://github.com/chef/chef-provisioning/tree/v1.2.0) (2015-05-27)
263
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.1.1...v1.2.0)
264
+
265
+ **Fixed bugs:**
266
+
267
+ - machine\_batch :destroy may be creating additional threads which result in NoMethodError [\#319](https://github.com/chef/chef-provisioning/issues/319)
268
+
269
+ **Closed issues:**
270
+
271
+ - 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)
272
+ - Updating chef-provisioning-aws breaks chef-client -z functionality with ChefDK 0.4.0 \(current version\). [\#322](https://github.com/chef/chef-provisioning/issues/322)
273
+ - Converging 0 resources - Am I missing something? [\#320](https://github.com/chef/chef-provisioning/issues/320)
274
+
275
+ **Merged pull requests:**
276
+
277
+ - with\_driver must be specified [\#345](https://github.com/chef/chef-provisioning/pull/345) ([jtimberman](https://github.com/jtimberman))
278
+ - Updating for newly introduced socketless mode [\#337](https://github.com/chef/chef-provisioning/pull/337) ([tyler-ball](https://github.com/tyler-ball))
279
+ - bumping winrm dependency to 1.3.0 [\#332](https://github.com/chef/chef-provisioning/pull/332) ([mwrock](https://github.com/mwrock))
280
+ - Adding documentation about the private key path [\#328](https://github.com/chef/chef-provisioning/pull/328) ([b-slim](https://github.com/b-slim))
281
+ - Update chef gem to fix version conflict in ChefDK [\#314](https://github.com/chef/chef-provisioning/pull/314) ([teknofire](https://github.com/teknofire))
282
+ - Update building\_drivers.md [\#309](https://github.com/chef/chef-provisioning/pull/309) ([jjasghar](https://github.com/jjasghar))
283
+
284
+ ## [v1.1.1](https://github.com/chef/chef-provisioning/tree/v1.1.1) (2015-04-20)
285
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.1.0...v1.1.1)
286
+
287
+ ## [v1.1.0](https://github.com/chef/chef-provisioning/tree/v1.1.0) (2015-04-16)
288
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.1...v1.1.0)
289
+
290
+ **Closed issues:**
291
+
292
+ - Net::HTTPServerException: 404 "Not Found" [\#323](https://github.com/chef/chef-provisioning/issues/323)
293
+
294
+ **Merged pull requests:**
295
+
296
+ - fix machine\_batch :destroy \#319 [\#321](https://github.com/chef/chef-provisioning/pull/321) ([wrightp](https://github.com/wrightp))
297
+ - Install chef-client using Proxy [\#317](https://github.com/chef/chef-provisioning/pull/317) ([afiune](https://github.com/afiune))
298
+ - 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))
299
+
300
+ ## [v1.0.1](https://github.com/chef/chef-provisioning/tree/v1.0.1) (2015-04-07)
301
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0...v1.0.1)
302
+
303
+ **Closed issues:**
304
+
305
+ - Second run fails using Vagrant \(problem in InstallCached strategy\) [\#308](https://github.com/chef/chef-provisioning/issues/308)
306
+
307
+ **Merged pull requests:**
308
+
309
+ - Dependency cleanup [\#316](https://github.com/chef/chef-provisioning/pull/316) ([tyler-ball](https://github.com/tyler-ball))
310
+ - Delete machine specs when machines are deleted [\#310](https://github.com/chef/chef-provisioning/pull/310) ([jkeiser](https://github.com/jkeiser))
311
+
312
+ ## [v1.0.0](https://github.com/chef/chef-provisioning/tree/v1.0.0) (2015-04-02)
313
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0.rc.2...v1.0.0)
314
+
315
+ ## [v1.0.0.rc.2](https://github.com/chef/chef-provisioning/tree/v1.0.0.rc.2) (2015-04-02)
316
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.20.1...v1.0.0.rc.2)
317
+
318
+ ## [v0.20.1](https://github.com/chef/chef-provisioning/tree/v0.20.1) (2015-04-02)
319
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.0.0.rc.1...v0.20.1)
320
+
321
+ ## [v1.0.0.rc.1](https://github.com/chef/chef-provisioning/tree/v1.0.0.rc.1) (2015-04-01)
322
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.20...v1.0.0.rc.1)
323
+
324
+ ## [v0.20](https://github.com/chef/chef-provisioning/tree/v0.20) (2015-03-27)
325
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.19...v0.20)
326
+
327
+ **Fixed bugs:**
328
+
329
+ - action :delete & action :destroy [\#186](https://github.com/chef/chef-provisioning/issues/186)
330
+ - support setting desired chef client version [\#148](https://github.com/chef/chef-provisioning/issues/148)
331
+ - Attributes are erased at re-converge when set in 'machine' resource [\#137](https://github.com/chef/chef-provisioning/issues/137)
332
+ - Machine\_batch converge action erases attributes created by recipes during the converge [\#116](https://github.com/chef/chef-provisioning/issues/116)
333
+ - Can't use Chef::Node::ImmutableMash in "attributes" attribute in the machine resource [\#21](https://github.com/chef/chef-provisioning/issues/21)
334
+
335
+ **Closed issues:**
336
+
337
+ - Can not destroy load balancers [\#307](https://github.com/chef/chef-provisioning/issues/307)
338
+ - machine\[\].create idempotency checks fails in freebsd [\#289](https://github.com/chef/chef-provisioning/issues/289)
339
+ - load\_balancer errors on :destroy action [\#278](https://github.com/chef/chef-provisioning/issues/278)
340
+ - machine\_execute seems not to have problems figuring out what driver to use? [\#201](https://github.com/chef/chef-provisioning/issues/201)
341
+
342
+ **Merged pull requests:**
343
+
344
+ - 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))
345
+ - Jk/empty lb [\#299](https://github.com/chef/chef-provisioning/pull/299) ([jkeiser](https://github.com/jkeiser))
346
+ - Create generic "spec\_registry" which will allow drivers to [\#297](https://github.com/chef/chef-provisioning/pull/297) ([jkeiser](https://github.com/jkeiser))
347
+ - Make with\_driver do ... end work [\#296](https://github.com/chef/chef-provisioning/pull/296) ([jkeiser](https://github.com/jkeiser))
348
+
349
+ ## [v0.19](https://github.com/chef/chef-provisioning/tree/v0.19) (2015-02-26)
350
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.18...v0.19)
351
+
352
+ **Fixed bugs:**
353
+
354
+ - chef-metal is nuking 'normal' attributes on every converge. [\#209](https://github.com/chef/chef-provisioning/issues/209)
355
+ - Initial chef-client run on workstation talking to hosted chef-server fails on creating client [\#59](https://github.com/chef/chef-provisioning/issues/59)
356
+
357
+ **Closed issues:**
358
+
359
+ - machine\_batch does not inherit option from with\_machine\_options [\#277](https://github.com/chef/chef-provisioning/issues/277)
360
+ - There doesn't seem to be a way to define provider specific settings for Vagrant [\#271](https://github.com/chef/chef-provisioning/issues/271)
361
+ - with\_data\_center method does not work with chef-provisioning [\#265](https://github.com/chef/chef-provisioning/issues/265)
362
+ - NoMethodError: undefined method `gsub' for nil:NilClass following net-ssh patch upgrade [\#263](https://github.com/chef/chef-provisioning/issues/263)
363
+ - Stuck at ssh for centos aws machine [\#257](https://github.com/chef/chef-provisioning/issues/257)
364
+ - Broken link and update in Documentation [\#252](https://github.com/chef/chef-provisioning/issues/252)
365
+ - visibility for machine\_options issue [\#246](https://github.com/chef/chef-provisioning/issues/246)
366
+
367
+ **Merged pull requests:**
368
+
369
+ - 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))
370
+ - Fix \#59: set node permissions correctly before converging [\#293](https://github.com/chef/chef-provisioning/pull/293) ([jkeiser](https://github.com/jkeiser))
371
+ - Remove some project noise files ;\) [\#291](https://github.com/chef/chef-provisioning/pull/291) ([fnichol](https://github.com/fnichol))
372
+ - Pass \[\] instead of nil when there are no machine specs [\#286](https://github.com/chef/chef-provisioning/pull/286) ([jkeiser](https://github.com/jkeiser))
373
+ - Add chef\_version, prerelease and install\_sh\_arguments to InstallSh [\#284](https://github.com/chef/chef-provisioning/pull/284) ([jkeiser](https://github.com/jkeiser))
374
+ - Add machine.chef\_config attribute to change client.rb [\#279](https://github.com/chef/chef-provisioning/pull/279) ([jkeiser](https://github.com/jkeiser))
375
+ - 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))
376
+
377
+ ## [v0.18](https://github.com/chef/chef-provisioning/tree/v0.18) (2015-01-27)
378
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.17...v0.18)
379
+
380
+ **Fixed bugs:**
381
+
382
+ - Runlist...doesn't...? [\#249](https://github.com/chef/chef-provisioning/issues/249)
383
+
384
+ **Closed issues:**
385
+
386
+ - Cannot associate Elastic IP with EC2 driver to machine [\#253](https://github.com/chef/chef-provisioning/issues/253)
387
+
388
+ **Merged pull requests:**
389
+
390
+ - Fix forward\_port when using net-ssh 2.9.2. [\#267](https://github.com/chef/chef-provisioning/pull/267) ([causton81](https://github.com/causton81))
391
+ - Destroy action to the image provider. [\#251](https://github.com/chef/chef-provisioning/pull/251) ([miguelcnf](https://github.com/miguelcnf))
392
+
393
+ ## [v0.17](https://github.com/chef/chef-provisioning/tree/v0.17) (2014-12-17)
394
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.16...v0.17)
395
+
396
+ **Fixed bugs:**
397
+
398
+ - Automatically create images data bag if needed [\#228](https://github.com/chef/chef-provisioning/issues/228)
399
+ - Vagrant Example Fails with Checksum Mismatch [\#206](https://github.com/chef/chef-provisioning/issues/206)
400
+ - Stuck waiting for Windows SSH access? [\#144](https://github.com/chef/chef-provisioning/issues/144)
401
+
402
+ **Closed issues:**
403
+
404
+ - error running the example [\#231](https://github.com/chef/chef-provisioning/issues/231)
405
+ - machine\_batch doesn't destroy [\#226](https://github.com/chef/chef-provisioning/issues/226)
406
+ - README shows incorrect require for using fog\_key\_pair [\#225](https://github.com/chef/chef-provisioning/issues/225)
407
+ - Error: Could not find a valid gem 'chef-provisioning-vagrant' [\#217](https://github.com/chef/chef-provisioning/issues/217)
408
+ - signal to generate a key raises errors in converge output [\#213](https://github.com/chef/chef-provisioning/issues/213)
409
+ - Machine destroy fails with "undefined local variable or method `iam\_endpoint'" [\#198](https://github.com/chef/chef-provisioning/issues/198)
410
+ - FAQ link in readme leads to 404 [\#192](https://github.com/chef/chef-provisioning/issues/192)
411
+ - Windows converge error: command 'mkdir -p /etc/chef' exited with code 127 [\#178](https://github.com/chef/chef-provisioning/issues/178)
412
+ - Way to not need an /etc/chef for provisioning chef-client run? [\#177](https://github.com/chef/chef-provisioning/issues/177)
413
+ - Error executing action 'destroy' on resource 'machine\_batch\[default\]' [\#152](https://github.com/chef/chef-provisioning/issues/152)
414
+ - Setting up local mode when embedding chef-metal [\#85](https://github.com/chef/chef-provisioning/issues/85)
415
+
416
+ **Merged pull requests:**
417
+
418
+ - Remove pry [\#248](https://github.com/chef/chef-provisioning/pull/248) ([jaym](https://github.com/jaym))
419
+ - Update to ignore .idea directories. [\#247](https://github.com/chef/chef-provisioning/pull/247) ([miguelcnf](https://github.com/miguelcnf))
420
+ - Change Metal to Provisioning [\#240](https://github.com/chef/chef-provisioning/pull/240) ([twellspring](https://github.com/twellspring))
421
+ - In simple example, require chef/provisioning [\#239](https://github.com/chef/chef-provisioning/pull/239) ([janeireton](https://github.com/janeireton))
422
+ - MEGA chef-provisioning-test-suite project dump [\#238](https://github.com/chef/chef-provisioning/pull/238) ([wrightp](https://github.com/wrightp))
423
+ - Fix ssh driver url [\#233](https://github.com/chef/chef-provisioning/pull/233) ([gravitystorm](https://github.com/gravitystorm))
424
+ - Flip logic on ssl peer validation [\#232](https://github.com/chef/chef-provisioning/pull/232) ([andrewelizondo](https://github.com/andrewelizondo))
425
+ - add chef-provisioning-crowbar to README.md [\#230](https://github.com/chef/chef-provisioning/pull/230) ([newgoliath](https://github.com/newgoliath))
426
+ - Update vSphere driver link. [\#229](https://github.com/chef/chef-provisioning/pull/229) ([cmluciano](https://github.com/cmluciano))
427
+ - Make machine\_batch convergent [\#227](https://github.com/chef/chef-provisioning/pull/227) ([jkeiser](https://github.com/jkeiser))
428
+ - Work with Chef 12 [\#224](https://github.com/chef/chef-provisioning/pull/224) ([jkeiser](https://github.com/jkeiser))
429
+
430
+ ## [v0.16](https://github.com/chef/chef-provisioning/tree/v0.16) (2014-11-05)
431
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.3...v0.16)
432
+
433
+ ## [v0.15.3](https://github.com/chef/chef-provisioning/tree/v0.15.3) (2014-11-05)
434
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.2...v0.15.3)
435
+
436
+ ## [v0.15.2](https://github.com/chef/chef-provisioning/tree/v0.15.2) (2014-11-04)
437
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15.1...v0.15.2)
438
+
439
+ **Closed issues:**
440
+
441
+ - config validation [\#223](https://github.com/chef/chef-provisioning/issues/223)
442
+ - create utility for generating chef-client command strings based on server, driver, platform, tests, etc [\#222](https://github.com/chef/chef-provisioning/issues/222)
443
+ - configurable os platform/version and mapping [\#221](https://github.com/chef/chef-provisioning/issues/221)
444
+ - chef-client error scanning [\#220](https://github.com/chef/chef-provisioning/issues/220)
445
+ - add azure driver test [\#219](https://github.com/chef/chef-provisioning/issues/219)
446
+ - Configure chef-provisioning-test-suite for Travis CI [\#218](https://github.com/chef/chef-provisioning/issues/218)
447
+ - Doubt in Server Provisioning through Chef metal, Vagrant and VBox [\#215](https://github.com/chef/chef-provisioning/issues/215)
448
+ - Where is chef-provisioning-fog? [\#214](https://github.com/chef/chef-provisioning/issues/214)
449
+
450
+ **Merged pull requests:**
451
+
452
+ - Rename Chef Metal to Chef Provisioning [\#216](https://github.com/chef/chef-provisioning/pull/216) ([kanerogers](https://github.com/kanerogers))
453
+
454
+ ## [v0.15.1](https://github.com/chef/chef-provisioning/tree/v0.15.1) (2014-10-30)
455
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.15...v0.15.1)
456
+
457
+ **Closed issues:**
458
+
459
+ - Rename to chef-provisioning [\#210](https://github.com/chef/chef-provisioning/issues/210)
460
+
461
+ ## [v0.15](https://github.com/chef/chef-provisioning/tree/v0.15) (2014-10-29)
462
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14.2...v0.15)
463
+
464
+ **Fixed bugs:**
465
+
466
+ - machine.tag does not add tag to AWS \(only the node\) [\#165](https://github.com/chef/chef-provisioning/issues/165)
467
+ - with\_chef\_local\_server isn't working with metal 0.14.2 [\#159](https://github.com/chef/chef-provisioning/issues/159)
468
+ - Remove default parallelism [\#124](https://github.com/chef/chef-provisioning/issues/124)
469
+ - Server provesioning through Vagrant behind Corporate Firewall using Chef Metal. [\#121](https://github.com/chef/chef-provisioning/issues/121)
470
+ - machine\_file connects as vagrant [\#120](https://github.com/chef/chef-provisioning/issues/120)
471
+ - 'action :converge\_only' exception [\#90](https://github.com/chef/chef-provisioning/issues/90)
472
+ - Unable to use Vagrant driver behind corporate http proxy [\#74](https://github.com/chef/chef-provisioning/issues/74)
473
+
474
+ **Closed issues:**
475
+
476
+ - FFI\_Yajl::ParseError: parse error: premature EOF when using with\_chef\_server [\#204](https://github.com/chef/chef-provisioning/issues/204)
477
+ - Azure Support [\#191](https://github.com/chef/chef-provisioning/issues/191)
478
+ - QUESTION: Multiple machine tags [\#188](https://github.com/chef/chef-provisioning/issues/188)
479
+ - ChecksumMismatch error running example with Vagrant provider [\#183](https://github.com/chef/chef-provisioning/issues/183)
480
+ - Can I send user data to AWS when creating an instance from an AMI [\#182](https://github.com/chef/chef-provisioning/issues/182)
481
+ - Net::HTTPServerException: 404 "Object Not Found" [\#181](https://github.com/chef/chef-provisioning/issues/181)
482
+ - undefined method `\<\<' for \#\<Chef::EventDispatch::EventsOutputStream:0x00000005431890\> [\#179](https://github.com/chef/chef-provisioning/issues/179)
483
+ - Can't connect to Windows machine running SSH [\#175](https://github.com/chef/chef-provisioning/issues/175)
484
+ - custom bootstrap? [\#169](https://github.com/chef/chef-provisioning/issues/169)
485
+ - Is the -j option working correctly with metal? [\#168](https://github.com/chef/chef-provisioning/issues/168)
486
+ - Can I run more than one chef-client at once? [\#166](https://github.com/chef/chef-provisioning/issues/166)
487
+ - with\_chef\_local\_server can't find vendored cookbook [\#163](https://github.com/chef/chef-provisioning/issues/163)
488
+ - Not handling metadata.rb dependencies correctly? [\#161](https://github.com/chef/chef-provisioning/issues/161)
489
+ - with\_chef\_local\_server can't find cookbook in cookbook\_path [\#160](https://github.com/chef/chef-provisioning/issues/160)
490
+ - Converging after creating - undefined method 'split' for nil:NilClass [\#158](https://github.com/chef/chef-provisioning/issues/158)
491
+ - Provisioning machines at a later time after creating [\#156](https://github.com/chef/chef-provisioning/issues/156)
492
+ - Convergence error - Permission denied @ dir\_s\_mkdir [\#154](https://github.com/chef/chef-provisioning/issues/154)
493
+ - Annoying SSL warning when creating new machine [\#150](https://github.com/chef/chef-provisioning/issues/150)
494
+ - "SSH did not come up" timeout [\#146](https://github.com/chef/chef-provisioning/issues/146)
495
+ - Proxy blocking installations. [\#145](https://github.com/chef/chef-provisioning/issues/145)
496
+ - Chef-metal-fog with digital ocean doesn't seem to like large ssh keys [\#140](https://github.com/chef/chef-provisioning/issues/140)
497
+
498
+ **Merged pull requests:**
499
+
500
+ - Chef provisioning [\#211](https://github.com/chef/chef-provisioning/pull/211) ([jkeiser](https://github.com/jkeiser))
501
+ - Require data bag resources [\#208](https://github.com/chef/chef-provisioning/pull/208) ([raskchanky](https://github.com/raskchanky))
502
+ - Support for resources that are backed by data bags [\#205](https://github.com/chef/chef-provisioning/pull/205) ([johnewart](https://github.com/johnewart))
503
+ - Add a Gitter chat badge to README.md [\#199](https://github.com/chef/chef-provisioning/pull/199) ([gitter-badger](https://github.com/gitter-badger))
504
+ - Load balancer and data center support work [\#196](https://github.com/chef/chef-provisioning/pull/196) ([johnewart](https://github.com/johnewart))
505
+ - 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))
506
+ - Winrm bump [\#194](https://github.com/chef/chef-provisioning/pull/194) ([mwrock](https://github.com/mwrock))
507
+ - YARDoc updates [\#193](https://github.com/chef/chef-provisioning/pull/193) ([johnewart](https://github.com/johnewart))
508
+ - do not verify ssl because we only use http [\#164](https://github.com/chef/chef-provisioning/pull/164) ([hh](https://github.com/hh))
509
+ - Added proxy support for metadata download [\#162](https://github.com/chef/chef-provisioning/pull/162) ([ndobson](https://github.com/ndobson))
510
+
511
+ ## [v0.14.2](https://github.com/chef/chef-provisioning/tree/v0.14.2) (2014-09-04)
512
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14.1...v0.14.2)
513
+
514
+ **Fixed bugs:**
515
+
516
+ - Some node names don't seem to work \(car and sun\) [\#129](https://github.com/chef/chef-provisioning/issues/129)
517
+ - 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)
518
+ - Error on machine\_batch if running chef as different user [\#111](https://github.com/chef/chef-provisioning/issues/111)
519
+ - Chef 11.12.8 incompatible with cheffish 0.7 [\#106](https://github.com/chef/chef-provisioning/issues/106)
520
+ - with\_machine\_options does not honor :key\_name [\#91](https://github.com/chef/chef-provisioning/issues/91)
521
+ - nil machine object raise expection in dry-run [\#54](https://github.com/chef/chef-provisioning/issues/54)
522
+ - After creating the node/client ec2 attributes are not available [\#34](https://github.com/chef/chef-provisioning/issues/34)
523
+ - 'with\_chef\_server' bootstrap permissions for client.pem and client.rb [\#32](https://github.com/chef/chef-provisioning/issues/32)
524
+
525
+ **Closed issues:**
526
+
527
+ - Possible to use different ports for parallel chef-zero runs? [\#155](https://github.com/chef/chef-provisioning/issues/155)
528
+ - SCP did not finish successfully \(1\) [\#151](https://github.com/chef/chef-provisioning/issues/151)
529
+ - cannot load such file -- chef\_metal/driver\_init/fog [\#149](https://github.com/chef/chef-provisioning/issues/149)
530
+ - Chef::Exceptions::ContentLengthMismatch: Response body length 65536 does not match HTTP Content-Length header 88744. [\#139](https://github.com/chef/chef-provisioning/issues/139)
531
+ - Dependency solver overloaded [\#112](https://github.com/chef/chef-provisioning/issues/112)
532
+ - 0.13 issue: Unable to resolve dependencies: cheffish requires chef-zero \(~\> 2.2\) [\#105](https://github.com/chef/chef-provisioning/issues/105)
533
+
534
+ **Merged pull requests:**
535
+
536
+ - pass timeout from execution\_options to winrm set\_timeout [\#153](https://github.com/chef/chef-provisioning/pull/153) ([mwrock](https://github.com/mwrock))
537
+ - Remove Chef 11.14 alpha note in readme [\#136](https://github.com/chef/chef-provisioning/pull/136) ([viglesiasce](https://github.com/viglesiasce))
538
+ - Handle Host Down and Network Unreachable [\#127](https://github.com/chef/chef-provisioning/pull/127) ([viglesiasce](https://github.com/viglesiasce))
539
+
540
+ ## [v0.14.1](https://github.com/chef/chef-provisioning/tree/v0.14.1) (2014-08-19)
541
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.14...v0.14.1)
542
+
543
+ **Closed issues:**
544
+
545
+ - perform convergence talking to chef-zero on the node \(ala test-kitchen\) [\#122](https://github.com/chef/chef-provisioning/issues/122)
546
+
547
+ ## [v0.14](https://github.com/chef/chef-provisioning/tree/v0.14) (2014-08-18)
548
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.13...v0.14)
549
+
550
+ **Closed issues:**
551
+
552
+ - Creating clusters in Vagrant with chef-metal yields a Net::SSH::Exception [\#123](https://github.com/chef/chef-provisioning/issues/123)
553
+ - Error running Vagrant example on Windows 7 [\#118](https://github.com/chef/chef-provisioning/issues/118)
554
+ - Make an image factory [\#109](https://github.com/chef/chef-provisioning/issues/109)
555
+
556
+ **Merged pull requests:**
557
+
558
+ - Get machine images working with multiple machines [\#119](https://github.com/chef/chef-provisioning/pull/119) ([johnewart](https://github.com/johnewart))
559
+ - add VPC related comments to docs for AWS provider [\#117](https://github.com/chef/chef-provisioning/pull/117) ([andrewgoktepe](https://github.com/andrewgoktepe))
560
+ - Machine image fixes [\#113](https://github.com/chef/chef-provisioning/pull/113) ([johnewart](https://github.com/johnewart))
561
+ - Machine image [\#110](https://github.com/chef/chef-provisioning/pull/110) ([jkeiser](https://github.com/jkeiser))
562
+
563
+ ## [v0.13](https://github.com/chef/chef-provisioning/tree/v0.13) (2014-07-15)
564
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.7.1...v0.13)
565
+
566
+ ## [v0.7.1](https://github.com/chef/chef-provisioning/tree/v0.7.1) (2014-07-15)
567
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.6.1...v0.7.1)
568
+
569
+ **Fixed bugs:**
570
+
571
+ - Are there plans to make the fog gem an "opt in"? [\#63](https://github.com/chef/chef-provisioning/issues/63)
572
+
573
+ **Closed issues:**
574
+
575
+ - undefined method `parallel\_do' [\#101](https://github.com/chef/chef-provisioning/issues/101)
576
+ - Bootstrapping Windows against chef-zero [\#96](https://github.com/chef/chef-provisioning/issues/96)
577
+ - Changing the runlist of a machine [\#95](https://github.com/chef/chef-provisioning/issues/95)
578
+ - Allow for indirect connectivity to nodes in driver interface [\#93](https://github.com/chef/chef-provisioning/issues/93)
579
+
580
+ **Merged pull requests:**
581
+
582
+ - add docs for providers [\#104](https://github.com/chef/chef-provisioning/pull/104) ([MrMMorris](https://github.com/MrMMorris))
583
+ - Add workaround for Hosted Chef servers to README [\#103](https://github.com/chef/chef-provisioning/pull/103) ([MrMMorris](https://github.com/MrMMorris))
584
+ - include bootstrap\_proxy key into convergence\_options [\#102](https://github.com/chef/chef-provisioning/pull/102) ([SIGUSR2](https://github.com/SIGUSR2))
585
+ - winrm fixes [\#100](https://github.com/chef/chef-provisioning/pull/100) ([mwrock](https://github.com/mwrock))
586
+ - waffle.io Badge [\#92](https://github.com/chef/chef-provisioning/pull/92) ([waffle-iron](https://github.com/waffle-iron))
587
+
588
+ ## [v0.6.1](https://github.com/chef/chef-provisioning/tree/v0.6.1) (2014-06-18)
589
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.12.1...v0.6.1)
590
+
591
+ ## [v0.12.1](https://github.com/chef/chef-provisioning/tree/v0.12.1) (2014-06-18)
592
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.12...v0.12.1)
593
+
594
+ **Closed issues:**
595
+
596
+ - Failure with action :setup and machine\_batch [\#83](https://github.com/chef/chef-provisioning/issues/83)
597
+
598
+ ## [v0.12](https://github.com/chef/chef-provisioning/tree/v0.12) (2014-06-18)
599
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.4...v0.12)
600
+
601
+ **Closed issues:**
602
+
603
+ - Less SSH Trash output [\#87](https://github.com/chef/chef-provisioning/issues/87)
604
+ - 403 error when registering the new node as a client [\#80](https://github.com/chef/chef-provisioning/issues/80)
605
+
606
+ **Merged pull requests:**
607
+
608
+ - Fix incorrect timeline/blog post date in README.md [\#86](https://github.com/chef/chef-provisioning/pull/86) ([mikedillion](https://github.com/mikedillion))
609
+
610
+ ## [v0.5.4](https://github.com/chef/chef-provisioning/tree/v0.5.4) (2014-06-10)
611
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.3...v0.5.4)
612
+
613
+ **Merged pull requests:**
614
+
615
+ - Typo fix in README [\#84](https://github.com/chef/chef-provisioning/pull/84) ([jalessio](https://github.com/jalessio))
616
+ - fixing ssl verify mode value from none to verify\_none [\#82](https://github.com/chef/chef-provisioning/pull/82) ([mwrock](https://github.com/mwrock))
617
+ - 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))
618
+
619
+ ## [v0.5.3](https://github.com/chef/chef-provisioning/tree/v0.5.3) (2014-06-05)
620
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.2...v0.5.3)
621
+
622
+ ## [v0.11.2](https://github.com/chef/chef-provisioning/tree/v0.11.2) (2014-06-04)
623
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.2...v0.11.2)
624
+
625
+ ## [v0.5.2](https://github.com/chef/chef-provisioning/tree/v0.5.2) (2014-06-04)
626
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.1...v0.5.2)
627
+
628
+ **Fixed bugs:**
629
+
630
+ - Non-Ubuntu AWS SSH Does not work [\#69](https://github.com/chef/chef-provisioning/issues/69)
631
+
632
+ **Closed issues:**
633
+
634
+ - with\_chef\_local\_server :port gets you two listening chef-zero instances [\#79](https://github.com/chef/chef-provisioning/issues/79)
635
+
636
+ ## [v0.11.1](https://github.com/chef/chef-provisioning/tree/v0.11.1) (2014-06-04)
637
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.1...v0.11.1)
638
+
639
+ **Closed issues:**
640
+
641
+ - ERROR: undefined method `config\_for\_url' for ChefMetal:Module [\#73](https://github.com/chef/chef-provisioning/issues/73)
642
+
643
+ ## [v0.5.1](https://github.com/chef/chef-provisioning/tree/v0.5.1) (2014-06-04)
644
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11...v0.5.1)
645
+
646
+ ## [v0.11](https://github.com/chef/chef-provisioning/tree/v0.11) (2014-06-04)
647
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.11...v0.11)
648
+
649
+ **Closed issues:**
650
+
651
+ - Add '--config-file-jail .' to the example given where you first spin up a box. [\#77](https://github.com/chef/chef-provisioning/issues/77)
652
+ - dependency chef-metal-vagrant [\#76](https://github.com/chef/chef-provisioning/issues/76)
653
+ - provisioner\_options not valid anymore? [\#75](https://github.com/chef/chef-provisioning/issues/75)
654
+
655
+ ## [v0.11.beta.11](https://github.com/chef/chef-provisioning/tree/v0.11.beta.11) (2014-06-03)
656
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.6...v0.11.beta.11)
657
+
658
+ ## [v0.5.beta.6](https://github.com/chef/chef-provisioning/tree/v0.5.beta.6) (2014-06-03)
659
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.10...v0.5.beta.6)
660
+
661
+ ## [v0.11.beta.10](https://github.com/chef/chef-provisioning/tree/v0.11.beta.10) (2014-06-03)
662
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.5...v0.11.beta.10)
663
+
664
+ ## [v0.5.beta.5](https://github.com/chef/chef-provisioning/tree/v0.5.beta.5) (2014-06-03)
665
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.9...v0.5.beta.5)
666
+
667
+ ## [v0.11.beta.9](https://github.com/chef/chef-provisioning/tree/v0.11.beta.9) (2014-06-03)
668
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.8...v0.11.beta.9)
669
+
670
+ ## [v0.11.beta.8](https://github.com/chef/chef-provisioning/tree/v0.11.beta.8) (2014-06-03)
671
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.4...v0.11.beta.8)
672
+
673
+ ## [v0.5.beta.4](https://github.com/chef/chef-provisioning/tree/v0.5.beta.4) (2014-06-03)
674
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.7...v0.5.beta.4)
675
+
676
+ **Closed issues:**
677
+
678
+ - Documentation of Using Chef Profiles: bug or feature? [\#72](https://github.com/chef/chef-provisioning/issues/72)
679
+ - chefspec tests see machines as machine\_batch [\#66](https://github.com/chef/chef-provisioning/issues/66)
680
+ - Machines are converging twice [\#62](https://github.com/chef/chef-provisioning/issues/62)
681
+ - How can i use 'secret\_file' from workstation knife config [\#33](https://github.com/chef/chef-provisioning/issues/33)
682
+ - Question: Is there an example for 'with\_chef\_server' [\#13](https://github.com/chef/chef-provisioning/issues/13)
683
+ - Consider using the newer lxc-download template [\#12](https://github.com/chef/chef-provisioning/issues/12)
684
+ - Any reasons this is packaged as a gem and not HWRPs? [\#9](https://github.com/chef/chef-provisioning/issues/9)
685
+ - Does chef-metal currently support Openstack? [\#5](https://github.com/chef/chef-provisioning/issues/5)
686
+ - provisioner\_option directive overwrites defaults [\#3](https://github.com/chef/chef-provisioning/issues/3)
687
+
688
+ ## [v0.11.beta.7](https://github.com/chef/chef-provisioning/tree/v0.11.beta.7) (2014-05-31)
689
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.3...v0.11.beta.7)
690
+
691
+ ## [v0.5.beta.3](https://github.com/chef/chef-provisioning/tree/v0.5.beta.3) (2014-05-31)
692
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.6...v0.5.beta.3)
693
+
694
+ **Closed issues:**
695
+
696
+ - Problems with with\_chef\_server [\#67](https://github.com/chef/chef-provisioning/issues/67)
697
+
698
+ ## [v0.11.beta.6](https://github.com/chef/chef-provisioning/tree/v0.11.beta.6) (2014-05-29)
699
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.5...v0.11.beta.6)
700
+
701
+ **Closed issues:**
702
+
703
+ - The run list from machine resource is not saved on node. [\#35](https://github.com/chef/chef-provisioning/issues/35)
704
+
705
+ **Merged pull requests:**
706
+
707
+ - Add options argument to SSH gateway [\#60](https://github.com/chef/chef-provisioning/pull/60) ([marcusn](https://github.com/marcusn))
708
+
709
+ ## [v0.11.beta.5](https://github.com/chef/chef-provisioning/tree/v0.11.beta.5) (2014-05-28)
710
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.4...v0.11.beta.5)
711
+
712
+ ## [v0.11.beta.4](https://github.com/chef/chef-provisioning/tree/v0.11.beta.4) (2014-05-28)
713
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta.2...v0.11.beta.4)
714
+
715
+ ## [v0.5.beta.2](https://github.com/chef/chef-provisioning/tree/v0.5.beta.2) (2014-05-28)
716
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.3...v0.5.beta.2)
717
+
718
+ ## [v0.11.beta.3](https://github.com/chef/chef-provisioning/tree/v0.11.beta.3) (2014-05-28)
719
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta.2...v0.11.beta.3)
720
+
721
+ **Merged pull requests:**
722
+
723
+ - typo editing [\#58](https://github.com/chef/chef-provisioning/pull/58) ([bdupras](https://github.com/bdupras))
724
+ - vmware typos [\#57](https://github.com/chef/chef-provisioning/pull/57) ([bdupras](https://github.com/bdupras))
725
+
726
+ ## [v0.11.beta.2](https://github.com/chef/chef-provisioning/tree/v0.11.beta.2) (2014-05-24)
727
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.11.beta...v0.11.beta.2)
728
+
729
+ ## [v0.11.beta](https://github.com/chef/chef-provisioning/tree/v0.11.beta) (2014-05-23)
730
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5.beta...v0.11.beta)
731
+
732
+ ## [v0.5.beta](https://github.com/chef/chef-provisioning/tree/v0.5.beta) (2014-05-23)
733
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10.2...v0.5.beta)
734
+
735
+ **Closed issues:**
736
+
737
+ - SoftLayer provisioning options? [\#56](https://github.com/chef/chef-provisioning/issues/56)
738
+ - Error executing action `converge` on resource 'machine\_batch\[default\]' : Name Required [\#52](https://github.com/chef/chef-provisioning/issues/52)
739
+ - New nodes don't have permissions to update themselves [\#11](https://github.com/chef/chef-provisioning/issues/11)
740
+
741
+ **Merged pull requests:**
742
+
743
+ - Grant Transport support for ssh\_gateway used with jump hosts [\#53](https://github.com/chef/chef-provisioning/pull/53) ([JonathanSerafini](https://github.com/JonathanSerafini))
744
+
745
+ ## [v0.10.2](https://github.com/chef/chef-provisioning/tree/v0.10.2) (2014-05-02)
746
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10.1...v0.10.2)
747
+
748
+ ## [v0.10.1](https://github.com/chef/chef-provisioning/tree/v0.10.1) (2014-05-02)
749
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.10...v0.10.1)
750
+
751
+ **Closed issues:**
752
+
753
+ - Error executing action `converge` on resource 'machine\_batch\[default\]' [\#51](https://github.com/chef/chef-provisioning/issues/51)
754
+
755
+ ## [v0.10](https://github.com/chef/chef-provisioning/tree/v0.10) (2014-05-01)
756
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.4...v0.10)
757
+
758
+ **Merged pull requests:**
759
+
760
+ - Update gem dependencies to use refactored chef\_metal\_fog [\#50](https://github.com/chef/chef-provisioning/pull/50) ([mikesplain](https://github.com/mikesplain))
761
+ - re-raise Net::SCP error when fails to download [\#49](https://github.com/chef/chef-provisioning/pull/49) ([carltonstedman](https://github.com/carltonstedman))
762
+
763
+ ## [v0.9.4](https://github.com/chef/chef-provisioning/tree/v0.9.4) (2014-04-24)
764
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.3...v0.9.4)
765
+
766
+ ## [v0.9.3](https://github.com/chef/chef-provisioning/tree/v0.9.3) (2014-04-14)
767
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.2...v0.9.3)
768
+
769
+ ## [v0.9.2](https://github.com/chef/chef-provisioning/tree/v0.9.2) (2014-04-13)
770
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9.1...v0.9.2)
771
+
772
+ ## [v0.9.1](https://github.com/chef/chef-provisioning/tree/v0.9.1) (2014-04-12)
773
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.9...v0.9.1)
774
+
775
+ **Closed issues:**
776
+
777
+ - machine converge action fails with chef-zero [\#47](https://github.com/chef/chef-provisioning/issues/47)
778
+
779
+ ## [v0.9](https://github.com/chef/chef-provisioning/tree/v0.9) (2014-04-11)
780
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8.2...v0.9)
781
+
782
+ **Closed issues:**
783
+
784
+ - Support for already-provisioned machines - enhancement request [\#41](https://github.com/chef/chef-provisioning/issues/41)
785
+
786
+ **Merged pull requests:**
787
+
788
+ - Apply the same fix from machine\_file to machine\_execute [\#48](https://github.com/chef/chef-provisioning/pull/48) ([irvingpop](https://github.com/irvingpop))
789
+
790
+ ## [v0.8.2](https://github.com/chef/chef-provisioning/tree/v0.8.2) (2014-04-09)
791
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8.1...v0.8.2)
792
+
793
+ ## [v0.8.1](https://github.com/chef/chef-provisioning/tree/v0.8.1) (2014-04-09)
794
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.8...v0.8.1)
795
+
796
+ **Closed issues:**
797
+
798
+ - show machine chef-client run output - enhancement request [\#40](https://github.com/chef/chef-provisioning/issues/40)
799
+
800
+ **Merged pull requests:**
801
+
802
+ - New ohai hints feature allowing the creation hints. [\#38](https://github.com/chef/chef-provisioning/pull/38) ([ligature](https://github.com/ligature))
803
+
804
+ ## [v0.8](https://github.com/chef/chef-provisioning/tree/v0.8) (2014-04-08)
805
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.7...v0.8)
806
+
807
+ **Closed issues:**
808
+
809
+ - machine\_file enhancement\(s\) request [\#39](https://github.com/chef/chef-provisioning/issues/39)
810
+
811
+ **Merged pull requests:**
812
+
813
+ - Add a SUPER SIMPLE machine\_execute resource [\#46](https://github.com/chef/chef-provisioning/pull/46) ([irvingpop](https://github.com/irvingpop))
814
+
815
+ ## [v0.7](https://github.com/chef/chef-provisioning/tree/v0.7) (2014-04-06)
816
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.6...v0.7)
817
+
818
+ **Merged pull requests:**
819
+
820
+ - cookbooks should have their name in metadata [\#45](https://github.com/chef/chef-provisioning/pull/45) ([jtimberman](https://github.com/jtimberman))
821
+
822
+ ## [v0.6](https://github.com/chef/chef-provisioning/tree/v0.6) (2014-04-04)
823
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.5...v0.6)
824
+
825
+ **Merged pull requests:**
826
+
827
+ - Grant the node's client read+update permissions [\#44](https://github.com/chef/chef-provisioning/pull/44) ([dafyddcrosby](https://github.com/dafyddcrosby))
828
+
829
+ ## [v0.5](https://github.com/chef/chef-provisioning/tree/v0.5) (2014-04-04)
830
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.4...v0.5)
831
+
832
+ **Closed issues:**
833
+
834
+ - machine\_file :download fails because provider is undefined [\#42](https://github.com/chef/chef-provisioning/issues/42)
835
+
836
+ **Merged pull requests:**
837
+
838
+ - Add owner, group and mode attributes to machine\_file [\#43](https://github.com/chef/chef-provisioning/pull/43) ([irvingpop](https://github.com/irvingpop))
839
+ - Dt/driver surgery [\#36](https://github.com/chef/chef-provisioning/pull/36) ([jkeiser](https://github.com/jkeiser))
840
+ - Ec2 fixes [\#27](https://github.com/chef/chef-provisioning/pull/27) ([ligature](https://github.com/ligature))
841
+
842
+ ## [v0.4](https://github.com/chef/chef-provisioning/tree/v0.4) (2014-03-29)
843
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.3.1...v0.4)
844
+
845
+ **Closed issues:**
846
+
847
+ - Minimum fog version suggestion \('ubuntu' user hardcoded in AWS SSH\) [\#28](https://github.com/chef/chef-provisioning/issues/28)
848
+ - fog\_provisioner hardcoded to public\_ip\_address [\#20](https://github.com/chef/chef-provisioning/issues/20)
849
+ - ec2 availability\_zone ignored [\#19](https://github.com/chef/chef-provisioning/issues/19)
850
+
851
+ **Merged pull requests:**
852
+
853
+ - 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))
854
+ - Fix typo 'pey-pair-name' -\> 'key-pair-name' [\#30](https://github.com/chef/chef-provisioning/pull/30) ([dafyddcrosby](https://github.com/dafyddcrosby))
855
+ - Remove unused variable provisioner\_options [\#26](https://github.com/chef/chef-provisioning/pull/26) ([dafyddcrosby](https://github.com/dafyddcrosby))
856
+ - 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))
857
+ - Added new private\_ip compute\_options attribute. [\#23](https://github.com/chef/chef-provisioning/pull/23) ([ligature](https://github.com/ligature))
858
+ - 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))
859
+ - Initial Openstack support [\#15](https://github.com/chef/chef-provisioning/pull/15) ([cstewart87](https://github.com/cstewart87))
860
+
861
+ ## [v0.3.1](https://github.com/chef/chef-provisioning/tree/v0.3.1) (2014-03-18)
862
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.3...v0.3.1)
863
+
864
+ **Closed issues:**
865
+
866
+ - undefined method `synchronize' for nil:NilClass [\#18](https://github.com/chef/chef-provisioning/issues/18)
867
+
868
+ **Merged pull requests:**
869
+
870
+ - initialize right mutex. use ssl if required [\#17](https://github.com/chef/chef-provisioning/pull/17) ([ranjib](https://github.com/ranjib))
871
+ - Fix to\_sym error parsing bootstrap\_options [\#16](https://github.com/chef/chef-provisioning/pull/16) ([RoboticCheese](https://github.com/RoboticCheese))
872
+
873
+ ## [v0.3](https://github.com/chef/chef-provisioning/tree/v0.3) (2014-03-18)
874
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.2.1...v0.3)
875
+
876
+ **Closed issues:**
877
+
878
+ - Syntax for specifying flavor/image? [\#10](https://github.com/chef/chef-provisioning/issues/10)
879
+
880
+ **Merged pull requests:**
881
+
882
+ - Fix copypaste typo from vagrant to ec2 [\#14](https://github.com/chef/chef-provisioning/pull/14) ([dafyddcrosby](https://github.com/dafyddcrosby))
883
+
884
+ ## [v0.2.1](https://github.com/chef/chef-provisioning/tree/v0.2.1) (2014-03-07)
885
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.2...v0.2.1)
886
+
887
+ ## [v0.2](https://github.com/chef/chef-provisioning/tree/v0.2) (2014-03-04)
888
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v0.1...v0.2)
889
+
890
+ **Merged pull requests:**
891
+
892
+ - Update URLs of GH repo [\#8](https://github.com/chef/chef-provisioning/pull/8) ([StephenKing](https://github.com/StephenKing))
893
+ - Typo in README.md [\#7](https://github.com/chef/chef-provisioning/pull/7) ([StephenKing](https://github.com/StephenKing))
894
+ - support for lxc [\#6](https://github.com/chef/chef-provisioning/pull/6) ([ranjib](https://github.com/ranjib))
895
+ - Requirements [\#4](https://github.com/chef/chef-provisioning/pull/4) ([jkeiser](https://github.com/jkeiser))
896
+
897
+ ## [v0.1](https://github.com/chef/chef-provisioning/tree/v0.1) (2013-12-21)
898
+
899
+
886
900
  \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*