chef-provisioning 2.0.1 → 2.0.2

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