beaker-hostgenerator 1.2.10 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6e8e91fce4675f5adad6c7a0f4a853a8a8c1af4cf33c6f3932d1d8d55469bea
4
- data.tar.gz: 775063d8a44fa06695ae651781fab90de3850144277d5bc14c7371929b146e7e
3
+ metadata.gz: f3e4326354ac2f461c9d42ce6f2fbd7cc457b27653c054f1a0555d4d0efdff0f
4
+ data.tar.gz: 5931c224850c934fe091a3b473a2bf47a102b700f3fe06c77c39ab2062eca9cd
5
5
  SHA512:
6
- metadata.gz: 6538e676d55d51bdf8e8d6f0f2c73857ddfff3d183b87b4ebdc5a18403b97ac35fcc6335c0750826274b779b809708c124b70b84fa496b51468a07de3b33db6f
7
- data.tar.gz: 2ee762fbb5585b54a079da11adf60f1cef9391c9ce965d8b36fdab54f22dba76baa7bb61db65d7c14e8c7be822e557269c70bb07f5e15c1f8c34db4c418b163a
6
+ metadata.gz: caf236c3caf1156f7062090dbb10a776350373bc4430612a509b4fa11a1ab662cc9e2cb3a36ccafdeae8ece1a292a465ad151d3241d091191fba370e36e3a4d3
7
+ data.tar.gz: 49b20acb26822cdfd7376c704c33f8581403d191419da42776f25a857190fb1454fa7dd6b42a0052fdfb97349bbcda61edc230a0e1818400343cee005baace12
@@ -0,0 +1,22 @@
1
+ name: Release
2
+
3
+ on:
4
+ create:
5
+ ref_type: tag
6
+
7
+ jobs:
8
+ release:
9
+ runs-on: ubuntu-latest
10
+ if: github.repository == 'voxpupuli/beaker-hostgenerator'
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Install Ruby 2.7
14
+ uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: '2.7'
17
+ - name: Build gem
18
+ run: gem build *.gemspec
19
+ - name: Publish gem
20
+ run: gem push *.gem
21
+ env:
22
+ GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
@@ -0,0 +1,27 @@
1
+ name: Test
2
+
3
+ on:
4
+ - pull_request
5
+ - push
6
+
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ ruby:
14
+ - "2.4"
15
+ - "2.5"
16
+ - "2.6"
17
+ - "2.7"
18
+ name: Ruby ${{ matrix.ruby }}
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - name: Install Ruby ${{ matrix.ruby }}
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby }}
25
+ bundler-cache: true
26
+ - name: Run tests
27
+ run: bundle exec rake test:spec
data/CHANGELOG.md CHANGED
@@ -1,10 +1,317 @@
1
- # Change Log
1
+ # Changelog
2
+
2
3
  All notable changes to this project will be documented in this file.
3
4
 
4
- This project makes a strong effort to adhere to [Semantic
5
- Versioning](http://semver.org).
5
+ ## [1.6.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.6.0) (2021-08-17)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.5.0...1.6.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Generate Ubuntu ABS, vmpooler, and Docker templates on the fly [\#218](https://github.com/voxpupuli/beaker-hostgenerator/pull/218) ([ekohl](https://github.com/ekohl))
12
+
13
+ **Fixed bugs:**
14
+
15
+ - Set up Debian 11 on Docker [\#220](https://github.com/voxpupuli/beaker-hostgenerator/pull/220) ([ekohl](https://github.com/ekohl))
16
+
17
+ ## [1.5.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.5.0) (2021-06-14)
18
+
19
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.4.0...1.5.0)
20
+
21
+ **Implemented enhancements:**
22
+
23
+ - Ensure amd64 containers are pulled when needed [\#214](https://github.com/voxpupuli/beaker-hostgenerator/pull/214) ([genebean](https://github.com/genebean))
24
+ - Add Fedora 34 support [\#212](https://github.com/voxpupuli/beaker-hostgenerator/pull/212) ([GabrielNagy](https://github.com/GabrielNagy))
25
+
26
+ **Fixed bugs:**
27
+
28
+ - Fix oracle image name [\#215](https://github.com/voxpupuli/beaker-hostgenerator/pull/215) ([genebean](https://github.com/genebean))
29
+ - Avoid activesupport deep\_merge conflict [\#213](https://github.com/voxpupuli/beaker-hostgenerator/pull/213) ([GabrielNagy](https://github.com/GabrielNagy))
30
+
31
+ ## [1.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.4.0) (2021-05-11)
32
+
33
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.3.0...1.4.0)
34
+
35
+ **Implemented enhancements:**
36
+
37
+ - \(IMAGES-1273\) add support for Debian 11 amd64 [\#210](https://github.com/voxpupuli/beaker-hostgenerator/pull/210) ([ciprianbadescu](https://github.com/ciprianbadescu))
38
+ - Add support for redhat8-POWER \(el-8-ppc64le\) [\#208](https://github.com/voxpupuli/beaker-hostgenerator/pull/208) ([GabrielNagy](https://github.com/GabrielNagy))
39
+
40
+ **Merged pull requests:**
41
+
42
+ - Deal with nil when merging [\#209](https://github.com/voxpupuli/beaker-hostgenerator/pull/209) ([ekohl](https://github.com/ekohl))
43
+
44
+ ## [1.3.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.3.0) (2021-04-15)
45
+
46
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.10...1.3.0)
47
+
48
+ **Implemented enhancements:**
49
+
50
+ - Modify osx11.2 to osx11 [\#206](https://github.com/voxpupuli/beaker-hostgenerator/pull/206) ([BobosilaVictor](https://github.com/BobosilaVictor))
51
+ - Add support for OpenSuSE 42 and 15 [\#202](https://github.com/voxpupuli/beaker-hostgenerator/pull/202) ([ekohl](https://github.com/ekohl))
52
+ - Add Fedora 33 support [\#198](https://github.com/voxpupuli/beaker-hostgenerator/pull/198) ([ekohl](https://github.com/ekohl))
53
+
54
+ **Closed issues:**
55
+
56
+ - Please add support for OpenSUSE Leap 42.3 and OpenSUSE Leap 15 [\#151](https://github.com/voxpupuli/beaker-hostgenerator/issues/151)
57
+
58
+ **Merged pull requests:**
59
+
60
+ - \(IMAGES-1266\) Add macOS 11.2 Big Sur support [\#205](https://github.com/voxpupuli/beaker-hostgenerator/pull/205) ([GabrielNagy](https://github.com/GabrielNagy))
61
+ - parser: replace obsolete URI.decode with CGI.unescape [\#204](https://github.com/voxpupuli/beaker-hostgenerator/pull/204) ([kenyon](https://github.com/kenyon))
62
+ - Allow newer development dependencies [\#201](https://github.com/voxpupuli/beaker-hostgenerator/pull/201) ([ekohl](https://github.com/ekohl))
63
+ - Convert from Travis to Github Actions [\#200](https://github.com/voxpupuli/beaker-hostgenerator/pull/200) ([ekohl](https://github.com/ekohl))
64
+ - \(maint\) Remove existing codeowners [\#199](https://github.com/voxpupuli/beaker-hostgenerator/pull/199) ([lucywyman](https://github.com/lucywyman))
65
+ - Generate Fedora and CentOS data where possible [\#194](https://github.com/voxpupuli/beaker-hostgenerator/pull/194) ([ekohl](https://github.com/ekohl))
66
+
67
+ ## [1.2.10](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.10) (2020-11-20)
68
+
69
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.9...1.2.10)
70
+
71
+ **Merged pull requests:**
72
+
73
+ - \(maint\) Fix for PEZ builds [\#197](https://github.com/voxpupuli/beaker-hostgenerator/pull/197) ([nmburgan](https://github.com/nmburgan))
74
+
75
+ ## [1.2.9](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.9) (2020-11-20)
76
+
77
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.8...1.2.9)
78
+
79
+ **Merged pull requests:**
80
+
81
+ - \(maint\) Update for removal of enterprise-dist master [\#196](https://github.com/voxpupuli/beaker-hostgenerator/pull/196) ([nmburgan](https://github.com/nmburgan))
82
+ - \(IMAGES-1238\) add ubuntu2004-AARCH64 platform [\#195](https://github.com/voxpupuli/beaker-hostgenerator/pull/195) ([ciprianbadescu](https://github.com/ciprianbadescu))
83
+
84
+ ## [1.2.8](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.8) (2020-09-29)
85
+
86
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.7...1.2.8)
87
+
88
+ **Merged pull requests:**
89
+
90
+ - \(maint\) Add support for pe builds in main directory [\#193](https://github.com/voxpupuli/beaker-hostgenerator/pull/193) ([underscorgan](https://github.com/underscorgan))
91
+ - Add Fedora 32 + fix Fedora Vagrant box name [\#184](https://github.com/voxpupuli/beaker-hostgenerator/pull/184) ([ekohl](https://github.com/ekohl))
92
+
93
+ ## [1.2.7](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.7) (2020-09-09)
94
+
95
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.6...1.2.7)
96
+
97
+ **Merged pull requests:**
98
+
99
+ - \(IMAGES-1230\) Add support for RedHat 8 ARM64 [\#192](https://github.com/voxpupuli/beaker-hostgenerator/pull/192) ([GabrielNagy](https://github.com/GabrielNagy))
100
+ - Add .travis.yml [\#189](https://github.com/voxpupuli/beaker-hostgenerator/pull/189) ([genebean](https://github.com/genebean))
101
+ - Add Dependabot to keep thins up to date [\#186](https://github.com/voxpupuli/beaker-hostgenerator/pull/186) ([genebean](https://github.com/genebean))
102
+
103
+ ## [1.2.6](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.6) (2020-06-19)
104
+
105
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.5...1.2.6)
106
+
107
+ **Merged pull requests:**
108
+
109
+ - \(IMAGES-1195\) Add support for Fedora 32 [\#185](https://github.com/voxpupuli/beaker-hostgenerator/pull/185) ([Dorin-Pleava](https://github.com/Dorin-Pleava))
110
+ - Install glibc-langpack-en on CentOS 8 [\#183](https://github.com/voxpupuli/beaker-hostgenerator/pull/183) ([ekohl](https://github.com/ekohl))
111
+
112
+ ## [1.2.5](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.5) (2020-03-20)
113
+
114
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.4...1.2.5)
115
+
116
+ **Merged pull requests:**
117
+
118
+ - \(IMAGES-1184\) add ubuntu2004-64 [\#181](https://github.com/voxpupuli/beaker-hostgenerator/pull/181) ([ciprianbadescu](https://github.com/ciprianbadescu))
119
+
120
+ ## [1.2.4](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.4) (2020-03-09)
121
+
122
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.3...1.2.4)
123
+
124
+ **Merged pull requests:**
125
+
126
+ - install apt-transport-https on debian 8 and debian 9 [\#180](https://github.com/voxpupuli/beaker-hostgenerator/pull/180) ([Dan33l](https://github.com/Dan33l))
127
+ - Use debian/buster64 for Vagrant [\#177](https://github.com/voxpupuli/beaker-hostgenerator/pull/177) ([ekohl](https://github.com/ekohl))
128
+
129
+ ## [1.2.3](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.3) (2020-02-13)
130
+
131
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.2...1.2.3)
132
+
133
+ **Merged pull requests:**
134
+
135
+ - \(maint\) Update PE master version [\#179](https://github.com/voxpupuli/beaker-hostgenerator/pull/179) ([cthorn42](https://github.com/cthorn42))
136
+
137
+ ## [1.2.2](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.2) (2020-01-30)
138
+
139
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.1...1.2.2)
140
+
141
+ **Merged pull requests:**
142
+
143
+ - \(IMAGES-1170\) Add macOS 10.15 Catalina platform [\#178](https://github.com/voxpupuli/beaker-hostgenerator/pull/178) ([GabrielNagy](https://github.com/GabrielNagy))
144
+
145
+ ## [1.2.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.1) (2020-01-09)
146
+
147
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.2.0...1.2.1)
148
+
149
+ **Merged pull requests:**
150
+
151
+ - \(PE-27608\) Master branch PEZ logic [\#176](https://github.com/voxpupuli/beaker-hostgenerator/pull/176) ([cthorn42](https://github.com/cthorn42))
152
+
153
+ ## [1.2.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.2.0) (2019-12-20)
154
+
155
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.44...1.2.0)
156
+
157
+ **Merged pull requests:**
158
+
159
+ - PE-27608 Update for master branch [\#175](https://github.com/voxpupuli/beaker-hostgenerator/pull/175) ([shaigy](https://github.com/shaigy))
160
+
161
+ ## [1.1.44](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.44) (2019-11-15)
162
+
163
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.43...1.1.44)
164
+
165
+ **Merged pull requests:**
166
+
167
+ - \(IMAGES-1155\) Add support for Fedora 31 [\#174](https://github.com/voxpupuli/beaker-hostgenerator/pull/174) ([luchihoratiu](https://github.com/luchihoratiu))
168
+ - \(RE-12859\) Migrate from enterprise.delivery.puppetlabs.net to Artifactory [\#171](https://github.com/voxpupuli/beaker-hostgenerator/pull/171) ([mwaggett](https://github.com/mwaggett))
169
+
170
+ ## [1.1.43](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.43) (2019-10-30)
171
+
172
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.42...1.1.43)
173
+
174
+ **Fixed bugs:**
175
+
176
+ - \(maint\) fix cisco-9k/cisco-n9k typo [\#173](https://github.com/voxpupuli/beaker-hostgenerator/pull/173) ([DavidS](https://github.com/DavidS))
177
+
178
+ **Merged pull requests:**
179
+
180
+ - \(BKR-1613\) update docker commands for CentOS 8 [\#172](https://github.com/voxpupuli/beaker-hostgenerator/pull/172) ([ciprianbadescu](https://github.com/ciprianbadescu))
181
+
182
+ ## [1.1.42](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.42) (2019-10-14)
183
+
184
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.41...1.1.42)
185
+
186
+ **Merged pull requests:**
187
+
188
+ - \(FM-8341\) Align with changes to Cisco in NSPooler [\#169](https://github.com/voxpupuli/beaker-hostgenerator/pull/169) ([da-ar](https://github.com/da-ar))
189
+
190
+ ## [1.1.41](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.41) (2019-10-09)
191
+
192
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.40...1.1.41)
193
+
194
+ **Merged pull requests:**
195
+
196
+ - \(IMAGES-1150\) add CentOS 8 [\#170](https://github.com/voxpupuli/beaker-hostgenerator/pull/170) ([ciprianbadescu](https://github.com/ciprianbadescu))
197
+
198
+ ## [1.1.40](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.40) (2019-10-01)
199
+
200
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.39...1.1.40)
201
+
202
+ **Merged pull requests:**
203
+
204
+ - \(maint\) fix windowsfips definition [\#168](https://github.com/voxpupuli/beaker-hostgenerator/pull/168) ([gimmyxd](https://github.com/gimmyxd))
205
+
206
+ ## [1.1.39](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.39) (2019-09-17)
207
+
208
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.38...1.1.39)
209
+
210
+ **Merged pull requests:**
211
+
212
+ - \(MAINT\) remove markdown requirement [\#167](https://github.com/voxpupuli/beaker-hostgenerator/pull/167) ([kevpl](https://github.com/kevpl))
213
+ - \(IMAGES-1139\) rename windows fips [\#166](https://github.com/voxpupuli/beaker-hostgenerator/pull/166) ([gimmyxd](https://github.com/gimmyxd))
214
+
215
+ ## [1.1.38](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.38) (2019-09-04)
216
+
217
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.37...1.1.38)
218
+
219
+ **Merged pull requests:**
220
+
221
+ - \(IMAGES-1139\) BHG support for winfips-2012r2-x64 [\#165](https://github.com/voxpupuli/beaker-hostgenerator/pull/165) ([Dorin-Pleava](https://github.com/Dorin-Pleava))
222
+ - \(MAINT\) Add CODEOWNERS file [\#164](https://github.com/voxpupuli/beaker-hostgenerator/pull/164) ([mchllweeks](https://github.com/mchllweeks))
223
+
224
+ ## [1.1.37](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.37) (2019-08-15)
225
+
226
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.36...1.1.37)
227
+
228
+ **Merged pull requests:**
229
+
230
+ - Revert "\(PE-27037\) Use redhatfips-7-x86\_64 for fips platform" [\#163](https://github.com/voxpupuli/beaker-hostgenerator/pull/163) ([mchllweeks](https://github.com/mchllweeks))
231
+
232
+ ## [1.1.36](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.36) (2019-08-14)
233
+
234
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.35...1.1.36)
235
+
236
+ **Merged pull requests:**
237
+
238
+ - \(PE-27037\) Use redhatfips-7-x86\_64 for fips platform [\#162](https://github.com/voxpupuli/beaker-hostgenerator/pull/162) ([nmburgan](https://github.com/nmburgan))
239
+
240
+ ## [1.1.35](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.35) (2019-08-05)
241
+
242
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.34...1.1.35)
243
+
244
+ **Merged pull requests:**
245
+
246
+ - \(QENG-7199\) add cisco-n7k to data [\#161](https://github.com/voxpupuli/beaker-hostgenerator/pull/161) ([kevpl](https://github.com/kevpl))
247
+
248
+ ## [1.1.34](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.34) (2019-08-02)
249
+
250
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.33...1.1.34)
251
+
252
+ **Merged pull requests:**
253
+
254
+ - \(MAINT\) Add locale to vmpooler Jap/French defs [\#160](https://github.com/voxpupuli/beaker-hostgenerator/pull/160) ([jcoconnor](https://github.com/jcoconnor))
255
+
256
+ ## [1.1.33](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.33) (2019-08-01)
257
+
258
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.32...1.1.33)
259
+
260
+ **Merged pull requests:**
261
+
262
+ - Add docker\_image\_commands to debian10 with docker [\#159](https://github.com/voxpupuli/beaker-hostgenerator/pull/159) ([Dan33l](https://github.com/Dan33l))
263
+
264
+ ## [1.1.32](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.32) (2019-07-02)
265
+
266
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.31...1.1.32)
267
+
268
+ **Merged pull requests:**
269
+
270
+ - \(IMAGES-1125\) Add new Windows 10 and 2019 Definitions [\#158](https://github.com/voxpupuli/beaker-hostgenerator/pull/158) ([jcoconnor](https://github.com/jcoconnor))
271
+
272
+ ## [1.1.31](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.31) (2019-06-13)
273
+
274
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.30...1.1.31)
275
+
276
+ **Merged pull requests:**
277
+
278
+ - \(PE-26509\) Add support for pe\_compiler role [\#157](https://github.com/voxpupuli/beaker-hostgenerator/pull/157) ([nmburgan](https://github.com/nmburgan))
6
279
 
7
- ## [1.1.26] - 2019-02-19
280
+ ## [1.1.30](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.30) (2019-06-11)
281
+
282
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.29...1.1.30)
283
+
284
+ **Merged pull requests:**
285
+
286
+ - \(QENG-6980\) Add OS version to template [\#156](https://github.com/voxpupuli/beaker-hostgenerator/pull/156) ([mattkirby](https://github.com/mattkirby))
287
+
288
+ ## [1.1.29](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.29) (2019-05-23)
289
+
290
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.28...1.1.29)
291
+
292
+ **Merged pull requests:**
293
+
294
+ - \(QENG-6980\) Fix name for c3650 [\#155](https://github.com/voxpupuli/beaker-hostgenerator/pull/155) ([mattkirby](https://github.com/mattkirby))
295
+ - \(IMAGES-1116\) Add beaker-hostgenerator support for Fedora 30 \(amd64\) [\#154](https://github.com/voxpupuli/beaker-hostgenerator/pull/154) ([GabrielNagy](https://github.com/GabrielNagy))
296
+
297
+ ## [1.1.28](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.28) (2019-05-10)
298
+
299
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.27...1.1.28)
300
+
301
+ **Merged pull requests:**
302
+
303
+ - \(QENG-7134\) Individualize cisco IOS platforms [\#153](https://github.com/voxpupuli/beaker-hostgenerator/pull/153) ([smcelmurry](https://github.com/smcelmurry))
304
+
305
+ ## [1.1.27](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.1.27) (2019-04-25)
306
+
307
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.1.26...1.1.27)
308
+
309
+ **Merged pull requests:**
310
+
311
+ - \(QENG-6980\) Add support for Cisco ios [\#152](https://github.com/voxpupuli/beaker-hostgenerator/pull/152) ([mattkirby](https://github.com/mattkirby))
312
+ - \(IMAGES-1053\) Add beaker-hostgenerator support for Windows2016 French x86\_64 [\#150](https://github.com/voxpupuli/beaker-hostgenerator/pull/150) ([gimmyxd](https://github.com/gimmyxd))
313
+
314
+ ## [1.1.26](https://github.com/voxpupuli/modulesync/tree/1.1.26) (2019-02-19)
8
315
  - Add platform
9
316
  - debian10-64
10
317
  - debian10-32
@@ -54,330 +361,1735 @@ Versioning](http://semver.org).
54
361
  - Add platforms:
55
362
  - panos61-64
56
363
  - panos71-64
57
- - panos81-64
364
+ ## Details
58
365
 
59
- ## [1.1.14] - 2018-07-13
60
- - Add docker image commands for Ubuntu 18.04
61
- - Add platform:
62
- - sles15-64
366
+ ### 0.9.0 - 7 Jun, 2017 (06b6a0da)
63
367
 
64
- ## [1.1.13] - 2018-06-01
65
- - pin fakefs to < 0.14.0 for ruby 2.2
66
- - Add platforms:
67
- - windows2019-64
68
- - windows2019-6432
368
+ * (GEM) update beaker-hostgenerator version to 0.9.0 (06b6a0da)
69
369
 
70
- ## [1.1.12] - 2018-04-24
71
- - Add platforms:
72
- - vro71-64
73
- - vro74-64
370
+ * Merge pull request #80 from puppetlabs/prepare-for-release (b7a83889)
74
371
 
75
- ## [1.1.11] - 2018-04-23
76
- - Add platform:
77
- - fedora28-64
78
372
 
79
- ## [1.1.10] - 2018-04-09
80
- - Added docker hypervisor support
373
+ ```
374
+ Merge pull request #80 from puppetlabs/prepare-for-release
81
375
 
82
- ## [1.1.9] - 2018-03-29
83
- - Rename platforms redhat-fips packaging_platform to redhatfips
376
+ (MAINT) Update CHANGELOG for 0.9.0 release
377
+ ```
378
+ * (MAINT) Update CHANGELOG for 0.9.0 release (aae2e698)
84
379
 
85
- ## [1.1.8] - 2018-03-22
86
- - Add platforms:
87
- - ubuntu1804-64
88
- - vro73-64
380
+ * (MAINT) Fix rendering issue in README and update TOC (bc92bd07)
89
381
 
90
- ## [1.1.7] - 2018-02-05
91
- - Add platform:
92
- - fedora27-64
382
+ * (QENG-4945) Add support for arbitrary lists (e75f1e7e)
93
383
 
94
- ## [1.1.6] - 2018-01-19
95
- - Add platform:
96
- - redhatfips7-64
97
384
 
98
- ## [1.1.5] - 2018-01-05
99
- - Add support for amazon7 (AmazonLinux v2)
385
+ ```
386
+ (QENG-4945) Add support for arbitrary lists
100
387
 
101
- ## [1.1.4] - 2017-11-15
102
- - Update abs template string for AARCH64
388
+ Before, we had no way to add lists to configurations. This adds
389
+ a new bracket syntax within arbitrary settings in order to parse out any lists the user may want to
390
+ add in.
391
+ ```
392
+ * Merge pull request #79 from puppetlabs/qeng-5041 (990b6081)
103
393
 
104
- ## [1.1.3] - 2017-10-27
105
- - Add platforms:
106
- - osx1013-64
107
- - redhat7-AARCH64
108
- - windows2012r2_core-64
109
- - windows2012r2_core-6432
110
- - windows2016_core-64
111
- - windows2016_core-6432
112
- - Fix to platform:
113
- - amazon6-64
114
-
115
- ## [1.1.2] - 2017-10-13
116
- - Add platform:
117
- - cisconxhw-64
118
394
 
119
- ## [1.1.1] - 2017-9-27
120
- - Add platform:
121
- - amazon-6-x86_64
395
+ ```
396
+ Merge pull request #79 from puppetlabs/qeng-5041
122
397
 
123
- ## [1.1.0] - 2017-9-7
124
- - Add new 'packaging_platform' value to the OSes we build packages for to
125
- support new install methods in Beaker.
398
+ (QENG-5041) Add vRO to support platforms
399
+ ```
400
+ * (QENG-5041) Add vRO to support platforms (22b7c670)
126
401
 
127
- ## [1.0.2] - 2017-8-21
128
- - Add platforms:
129
- - sles-12-power8
130
- - fedora-26-x86_64
131
-
132
- ## [1.0.1] - 2017-8-14
133
- - Support empty string as the value of version by returning nil from pe_dir()
134
- - Support unparseable/unknown versions by returning empty string from pe_dir()
135
-
136
- ## [1.0.0] - 2017-8-14
137
- - Rewrite pe_dir() to provide RC builds and to determine build source just from
138
- the pe_version format.
139
-
140
- Previously, source was either archives/releases if version and family
141
- were the exact same string, otherwise ci-ready.
142
-
143
- Recently we have added archives/internal which houses rc tagged builds
144
- long term (ci-ready has a two-week life span). These internal archive
145
- releases let us test rc builds for internal consumption, but introduced
146
- a third source.
147
-
148
- Fourth source, actually, I'd forgotten that we already had dev version
149
- strings with PEZ in them that need to be sourced from
150
- feature/ci-ready...
151
-
152
- The patch bases everything off the version because the four cases are
153
- mutually exclusive, and the previous determination of a release source
154
- based on version == family doesn't make sense for anything but a release
155
- version. (If you supplied dev builds for both, for example, you
156
- would get a host config trying to lookup a dev build in archive/releases
157
- where it would not be found...)
158
-
159
- This patch keeps the behavior of returning nil if either version or
160
- family is nil so as to preserve a fallback behavior that would have
161
- Beaker instead pick up pe_dir from environment variables: BEAKER_PE_DIR
162
- or pe_dist_dir.
163
-
164
- - Drop use of pe_family/pe_upgrade_family
165
-
166
- The pe_family and pe_upgrade_family environment variables were only
167
- being used as a means of signaling that we want pe_dir to be
168
- archives/releases. (If pe_version and pe_family were equal, we'd return
169
- archives/releases for pe_dir). This behavior was changed in the
170
- previous commit to instead base the tarball source on the version string
171
- format.
172
-
173
- The only other behavior that passing family had was that if either
174
- verison or family were nil, pe_dir would be nil. So theoretically, if
175
- you only set pe_version to some valid version, you would get a beaker
176
- config with no pe_dir set, and Beaker could then set pe_dir based on
177
- BEAKER_PE_DIR or pe_dist_dir environment variables.
178
-
179
- This commit removes family so that we can clean up pipelines which would
180
- otherwise be setting pe_family just for the purpose of avoiding this
181
- behavior.
182
-
183
- It is potentially a breaking change if someone was relying on the
184
- absence of pe_family to allow Beaker to set pe_dir as mentioned above.
185
-
186
- ## [0.10.3] - 2017-7-26
187
- - Change ubuntu1604-POWER platform from 'ubuntu-16.04-power8' to
188
- 'ubuntu-16.04-ppc64el'
189
- - Change redhat7-POWER platform from 'redhat-7.3-power8' to 'el-7-ppc64le'
190
-
191
- ## [0.10.2] - 2017-7-20
192
- - Change redhat7-POWER platform and template values from 'rhel-7.3-power8' to
193
- 'redhat-7.3-power8'
194
-
195
- ## [0.10.1] - 2017-7-7
196
- - Add platforms:
197
- - rhel-7.3-power8
198
- - ubuntu-16.04-power8
199
-
200
- ## [0.10.0] - 2017-7-7
201
- - Add map data structure support to arbitrary settings, which previously only
202
- supported lists and primitives. Maps and lists can be combined.
203
-
204
- ## [0.9.0] - 2017-6-7
205
- - Add list data structure support to arbitrary settings, which previously only
206
- supported primitive data types.
207
- - Add ability to override default hypervisor settings in the global config
208
- section.
209
- - Add support for hardware platforms to the ABS hypervisor.
210
- - Add platforms:
211
- - vro6-64
212
- - vro7-64
213
402
 
214
- ## [0.8.4] - 2017-4-6
215
- - Add platform:
216
- - windows2012r2_wmf5-64
403
+ ```
404
+ (QENG-5041) Add vRO to support platforms
217
405
 
218
- ## [0.8.3] - 2017-2-7
219
- - Add platform:
220
- - aix-7.2-power
221
- - Remove warning about changing platform defaults in 1.0 release
222
- - Change from using STDERR to $stderr for Ruby redirection purposes
406
+ This adds both vro-6-x86_64 and vro-7-x86_64. The templates
407
+ already exist within vmpooler
408
+ ```
409
+ * Merge pull request #77 from puppetlabs/fix-default-config-hypervisors (988476e1)
223
410
 
224
- ## [0.8.2] - 2017-1-3
225
- - Add platforms:
226
- - fedora25-32
227
- - fedora25-64
228
- - ubuntu1610-32
229
- - ubuntu1610-64
230
-
231
- ## [0.8.1] - 2016-12-21
232
- - Add platforms with Japanese language support:
233
- - windows2012r2_ja-64
234
- - windows2012r2_ja-6432
235
- - Don't include test files in the gem. This will greatly reduce the overall size
236
- of the beaker-hostgenerator gem as it will no longer include the 500+ test fixtures.
237
-
238
- ## [0.8.0] - 2016-10-4
239
- - Improved whitespace support in global and host settings. Spaces are no longer
240
- removed, so input must be quoted, escaped, or URL-encoded appropriately.
241
-
242
- ## [0.7.4] - 2016-9-26
243
- - Add platforms:
244
- - OSX 10.12
245
- - Windows 2016
246
- - Support for CI.next:
247
- - Add AlwaysBeScheduling hypervisor
248
- - Add CLI flag '--templates-only' to reduce the generated output to include
249
- only the template values from the HOSTS
250
-
251
- ## [0.7.3] - 2016-8-11
252
- - Add platform:
253
- - HuaweiOS 6 powerpc
254
411
 
255
- ## [0.7.2] - 2016-7-13
256
- - Automatically URL-decode input to support usage in HTTP URLs, such as Jenkins.
412
+ ```
413
+ Merge pull request #77 from puppetlabs/fix-default-config-hypervisors
257
414
 
258
- ## [0.7.1] - 2016-6-29
259
- - Add platforms:
260
- - Fedora 24 x86_64 and i386
261
- - Redhat 6 s390x
262
- - Redhat 7 s390x
263
- - SLES 11 s390x
264
- - SLES 12 s390x
265
-
266
- ## [0.7.0] - 2016-6-13
267
- - Add optional '--global-config' CLI argument to support arbitrary values in the
268
- general CONFIG section of host files.
269
- - Add '--version' CLI flag to print out the library version to stdout.
270
- - Remove requirement that only valid (read: built-in) hypervisors are generated
271
- by allowing any arbitrary string to be specified as the hypervisor. If the
272
- hypervisor specified is not a built-in one there will be no additional
273
- hypervisor-specific configuration generated.
274
- - Add platforms:
275
- - aix-5.3-power
276
- - aix-6.1-power
277
- - aix-7.1-power
278
- - solaris-10-sparc
279
- - solaris-11-sparc
415
+ (maint) The hypervisor defaults are not overwritable
416
+ ```
417
+ * Merge pull request #76 from puppetlabs/qeng4965/add-abs-hardware-support (874f473f)
280
418
 
281
- ## [0.6.0] - 2016-05-11
282
- - Add new 'none' hypervisor implementation to support static, non-provisioned hosts.
283
- - Add support for arbitrary, per-host key=value settings.
284
419
 
285
- ## [0.5.0] - 2016-03-30
286
- - Add platforms:
287
- - Ubuntu 16.06 x86 and x86_64
288
- - Fix platforms:
289
- - Cisco XR and NXOS
290
-
291
- ## [0.4.0] - 2016-02-05
292
- - Add new optional parameters to CLI:
293
- --pe_upgrade_dir UPGRADE_PATH
294
- Explicitly set pe_upgrade_dir attribute on generated hosts.
295
- --pe_upgrade_ver UPGRADE_VERSION
296
- Explicitly set pe_upgrade_ver attribute on generated hosts.
297
- --pe_dir PATH
298
- Explicitly set pe_dir attribute on generated hosts.
299
- --pe_ver VERSION
300
- Explicitly set pe_ver attribute on generated hosts.
301
-
302
- - Implement data-driven testing approach that separates test logic from test
303
- data to improve coverage on important code path (BeakerHostGenerator::CLI).
304
-
305
- ## [0.3.3] - 2016-02-04
306
- - Fix Cisco platforms by setting required parameters for the vmpooler templates.
307
-
308
- ## [0.3.2] - 2016-01-28
309
- - Change the way we generate the platform string for windows 10 hosts.
310
-
311
- ## [0.3.1] - 2015-12-31
312
- - Bug fix: Restrict OSINFO v1 to centos-only changes.
313
-
314
- ## [0.3.0] - 2015-12-30
315
- - Add --osinfo-version flag to allow users to select beaker-hostgenerator 1.x
316
- major versions of the OSINFO data structure.
317
- - Don't identify "centos" machines as "el" in the platform string.
318
-
319
- ## [0.2.1] - 2016-01-20
320
- - Fix platforms:
321
- - Cisco NXOS 5 (x86_64)
322
- - set Virtual Routing & Forwarding (vrf) to 'management'
323
- - set ssh username to 'beaker'
324
- - Cisco eXR 7 (x86_64)
325
- - set Virtual Routing & Forwarding (vrf) to 'management'
326
-
327
- ## [0.2.0] - 2015-12-22
328
- - Add platforms:
329
- - Cumulus 2.5 (x86_64)
330
- - Cisco NXOS 5 (x86_64)
331
- - Cisco eXR 7 (x86_64)
332
- - Fix platforms:
333
- - Arista 4 (i386); spec string previously did not include version number.
420
+ ```
421
+ Merge pull request #76 from puppetlabs/qeng4965/add-abs-hardware-support
334
422
 
335
- ## [0.1.0] - 2015-12-21
336
- - Add platforms:
337
- - Arista 4 (i386)
338
- - windows 2012r2 (x86_64); 32 bit agent
339
- - sets ruby_arch=x32
340
- - windows 2008r2 (x86_64); 32 bit agent
341
- - sets ruby_arch=x32
342
- - windows 2008 (x86_64); 32 bit agent
343
- - sets ruby_arch=x32
344
- - windows 2003r2 (x86_64); 32 bit agent
345
- - sets ruby_arch=x32
346
- - Set ruby_arch=x64 on a bunch of 64 bit windows platforms.
347
- - Allow beaker-hostgenerator to be called programmatically.
348
- - Fix bug in module/class namespaces that prevented both `beaker` and
349
- `beaker-hostgenerator` from being required.
350
-
351
- ## [0.0.1] - 2015-10-07
352
- Test beaker-hostgenerator release pipeline (not intended to be a functional
353
- release)
354
-
355
- # sqa-utils (old Gem)
356
-
357
- ## [Unreleased][unreleased]
358
- ### Changed
359
- - Updated this changelog for 0.13.3
360
-
361
- ## [0.13.3] - 2015-04-29
362
- - Add platforms:
363
- - Ubuntu 15.10 (i386, x86_64)
364
- - Windows 10 (i386, x86_64)
365
- - Fedora 23 (i386, x86_64)
366
- - Debian 9/Stretch (i386, x86_64)
367
- - OSX 10.11 El Capitan (x86_64)
368
- - Output --help message when no arguments provided (rather than error stack trace)
369
-
370
- ## [0.13.2] - 2015-04-29
371
- - Add platforms:
372
- - Ubuntu 15.04 (i386, x86_64)
373
- - Fedora 22 (i386, x86_64)
374
- - OSX 10.10 (x86_64)
375
-
376
- ## [0.13.0] - 2015-04-29
377
- - Add arbitrary role support.
378
- - Add ability to provide per-role configuration settings on each host. Can be
379
- disabled with --disable-role-config command line option.
380
- - Add command line option to disable default "agent" role.
381
- - Change "vcloud" hypervisior type to "vmpooler", remove unnecessary hypervisor
382
- configuration.
383
- - Add spec tests for nodespec parsing and role creation.
423
+ (QENG-4965) Add ABS support for hardware platforms
424
+ ```
425
+ * (MAINT) Delete duplicate keys from test helper hash (0fe2c0ac)
426
+
427
+ * (MAINT) Prefer underscores over dashes in file names (efe8b7b1)
428
+
429
+
430
+ ```
431
+ (MAINT) Prefer underscores over dashes in file names
432
+
433
+ Ruby prefers that you not use dashes in your .rb filenames, so this commit
434
+ renames abs-support.rb to abs_support.rb
435
+ ```
436
+ * (maint) The hypervisor defaults are not overwritable (1a44141b)
437
+
438
+
439
+ ```
440
+ (maint) The hypervisor defaults are not overwritable
441
+ Before this change the code would pull and merge the hypervisor defaults on top of any
442
+ user provided --global-config block. This reverses the logic to use defaults only
443
+ if the key is not specified in the --global-config section. This specifically
444
+ enables overwritting the pooling_api for the vmpooler hypervisor, as it is the
445
+ only one with a default global_config() method implementation. Also added it's
446
+ respective test
447
+ ```
448
+ * (QENG-4965) Add ABS support for hardware platforms (a9ddf44b)
449
+
450
+
451
+ ```
452
+ (QENG-4965) Add ABS support for hardware platforms
453
+
454
+ This commit makes the hardware platforms compatible with the ABS hypervisor and
455
+ the --templates-only switch to enable hardware support in Jenkins via ABS.
456
+ ```
457
+ ### <a name = "0.8.4">0.8.4 - 6 Apr, 2017 (77943fb2)
458
+
459
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.8.4 (77943fb2)
460
+
461
+ * (GEM) update beaker-hostgenerator version to 0.8.4 (d80eb358)
462
+
463
+ * Merge pull request #74 from puppetlabs/prepare-for-release (43405262)
464
+
465
+
466
+ ```
467
+ Merge pull request #74 from puppetlabs/prepare-for-release
468
+
469
+ (MAINT) Update CHANGELOG for 0.8.4 release
470
+ ```
471
+ * (MAINT) Update CHANGELOG for 0.8.4 release (26cd2eef)
472
+
473
+ * Merge pull request #73 from glennsarti/2012r2-wmf5 (d00a1d63)
474
+
475
+
476
+ ```
477
+ Merge pull request #73 from glennsarti/2012r2-wmf5
478
+
479
+ (MODULES-4667) Add Windows 2012R2 WMF5 VMPooler image
480
+ ```
481
+ * (MODULES-4667) Add Windows 2012R2 WMF5 VMPooler image (8b293890)
482
+
483
+
484
+ ```
485
+ (MODULES-4667) Add Windows 2012R2 WMF5 VMPooler image
486
+
487
+ This commit adds the win-2012r2-wmf5-x86_64 vmpooler image, which is a variation
488
+ on the Windows Sever 2012R2 64bit image.
489
+ ```
490
+ ### <a name = "0.8.3">0.8.3 - 7 Feb, 2017 (79e8d717)
491
+
492
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.8.3 (79e8d717)
493
+
494
+ * (GEM) update beaker-hostgenerator version to 0.8.3 (12bfa089)
495
+
496
+ * Merge pull request #72 from puppetlabs/maint/prepare-for-release (cc5a3ce6)
497
+
498
+
499
+ ```
500
+ Merge pull request #72 from puppetlabs/maint/prepare-for-release
501
+
502
+ (MAINT) Update CHANGELOG for 0.8.3 release
503
+ ```
504
+ * (MAINT) Update CHANGELOG for 0.8.3 release (6d3900a9)
505
+
506
+ * Merge pull request #71 from ferglor/BKR-1032 (cca29c01)
507
+
508
+
509
+ ```
510
+ Merge pull request #71 from ferglor/BKR-1032
511
+
512
+ (BKR-1032) Switched from using STDERR to $stderr
513
+ ```
514
+ * (BKR-1032) Switched from using STDERR to $stderr (7d4f8197)
515
+
516
+ * Merge pull request #70 from puppetlabs/qeng4019/remove-warning-message (087df5a5)
517
+
518
+
519
+ ```
520
+ Merge pull request #70 from puppetlabs/qeng4019/remove-warning-message
521
+
522
+ (QENG-4019) Remove warning message about changing defaults
523
+ ```
524
+ * (QENG-4019) Remove warning message about changing defaults (d3e19a40)
525
+
526
+
527
+ ```
528
+ (QENG-4019) Remove warning message about changing defaults
529
+
530
+ This warning message was added a while ago to inform users of an upcoming
531
+ breaking change. We're no longer certain that we'll be making the breaking
532
+ change though, so the warning is a bit misleading.
533
+
534
+ Furthermore, we're now trying to silence this message when beaker-hostgenerator
535
+ is used programatically within Beaker.
536
+
537
+ There will likely be more changes that are outlined in the linked ticket, such
538
+ as adding a new CLI switch to toggle between specific & generic platform names.
539
+ ```
540
+ * Merge pull request #68 from branan/pa-893-aix-7.2 (48b9eb04)
541
+
542
+
543
+ ```
544
+ Merge pull request #68 from branan/pa-893-aix-7.2
545
+
546
+ (PA-893) Add AIX 7.2
547
+ ```
548
+ * (PA-893) Add AIX 7.2 (8ff6a8c6)
549
+
550
+ ### <a name = "0.8.2">0.8.2 - 3 Jan, 2017 (a61487bf)
551
+
552
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.8.2 (a61487bf)
553
+
554
+ * (GEM) update beaker-hostgenerator version to 0.8.2 (b1ff2e54)
555
+
556
+ * Merge pull request #67 from puppetlabs/maint/prepare-for-release (214fcb06)
557
+
558
+
559
+ ```
560
+ Merge pull request #67 from puppetlabs/maint/prepare-for-release
561
+
562
+ (MAINT) Update CHANGELOG for 0.8.2 release
563
+ ```
564
+ * (MAINT) Update CHANGELOG for 0.8.2 release (b5f9684d)
565
+
566
+ * Merge pull request #66 from ScottGarman/ubuntu1610 (fb9dbbb1)
567
+
568
+
569
+ ```
570
+ Merge pull request #66 from ScottGarman/ubuntu1610
571
+
572
+ Add Ubuntu 16.10 platforms and test fixtures
573
+ ```
574
+ * (PA-716) Add Ubuntu 16.10 test fixtures (bb8233c3)
575
+
576
+ * (PA-716) Add support for Ubuntu 16.10 i386 and x86_64 platforms (d8ecc7d0)
577
+
578
+ * Merge pull request #65 from ScottGarman/fedora25 (eb42f28d)
579
+
580
+
581
+ ```
582
+ Merge pull request #65 from ScottGarman/fedora25
583
+
584
+ Add Fedora 25 platforms and test fixtures
585
+ ```
586
+ * (BKR-984) Add fedora25 test fixtures (76cd6543)
587
+
588
+
589
+ ```
590
+ (BKR-984) Add fedora25 test fixtures
591
+
592
+ These were generated by running rake generate:fixtures.
593
+ ```
594
+ * (BKR-984) Add support for Fedora 25 i386 and x86_64 platforms (ba50620c)
595
+
596
+ ### <a name = "0.8.1">0.8.1 - 21 Dec, 2016 (2648029d)
597
+
598
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.8.1 (2648029d)
599
+
600
+ * (GEM) update beaker-hostgenerator version to 0.8.1 (5466486c)
601
+
602
+ * Merge pull request #64 from puppetlabs/maint/prepare-for-release (2dd91be2)
603
+
604
+
605
+ ```
606
+ Merge pull request #64 from puppetlabs/maint/prepare-for-release
607
+
608
+ (MAINT) Update CHANGELOG for 0.8.1 release
609
+ ```
610
+ * (MAINT) Update CHANGELOG for 0.8.1 release (26a6d6a2)
611
+
612
+ * Merge pull request #63 from glennsarti/add-windows-2012r2-jp (55b13176)
613
+
614
+
615
+ ```
616
+ Merge pull request #63 from glennsarti/add-windows-2012r2-jp
617
+
618
+ (BKR-1013) Add Windows 2012R2 Japanese Template
619
+ ```
620
+ * (BKR-1013) Add Windows 2012R2 Japanese Template (e72e9401)
621
+
622
+
623
+ ```
624
+ (BKR-1013) Add Windows 2012R2 Japanese Template
625
+
626
+ This commit adds the Japanese Windows 2012 R2 VMPooler template in preparation
627
+ of testing non-US English systems in Beaker.
628
+ ```
629
+ * Merge pull request #62 from puppetlabs/maint_delete-acceptance-tests (16b0a3b2)
630
+
631
+
632
+ ```
633
+ Merge pull request #62 from puppetlabs/maint_delete-acceptance-tests
634
+
635
+ (MAINT) Remove acceptance testing
636
+ ```
637
+ * Merge pull request #61 from puppetlabs/maint_exclude-test-files-from-gem (f85e0376)
638
+
639
+
640
+ ```
641
+ Merge pull request #61 from puppetlabs/maint_exclude-test-files-from-gem
642
+
643
+ (MAINT) Delete test_files directive to keep fixtures out of the gem
644
+ ```
645
+ * (MAINT) Specify all dependencies in gemspec file (e0134744)
646
+
647
+
648
+ ```
649
+ (MAINT) Specify all dependencies in gemspec file
650
+
651
+ There was only 1 dependency still being specified in the Gemfile, so to clean
652
+ things up a little bit this commit just moves it over to the gemspec file
653
+ instead.
654
+
655
+ After all, we're building a gem (not an app) so we should prefer gemspec over
656
+ Gemfile.
657
+ ```
658
+ * (MAINT) Remove acceptance testing (39e43aef)
659
+
660
+
661
+ ```
662
+ (MAINT) Remove acceptance testing
663
+
664
+ This deletes everything related to acceptance testing.
665
+
666
+ We had no tests, and we have no intentions of adding any. We started to lay out
667
+ the groundwork for acceptance testing a while ago with the "acceptance/"
668
+ directory, `beaker` test dependency, and the `acceptance` Rake task.
669
+
670
+ This commit deletes that groundwork, as it is out of date and just getting in
671
+ the way at this point. If we decide to add acceptance tests in the future, it
672
+ will likely look different than this anyway.
673
+ ```
674
+ * (MAINT) Delete test_files directive to keep fixtures out of the gem (60559c93)
675
+
676
+
677
+ ```
678
+ (MAINT) Delete test_files directive to keep fixtures out of the gem
679
+
680
+ This gemspec directive `test_files` will cause the files it references to be
681
+ included in the built gem so they can be used during the `gem test` command.
682
+
683
+ We do not intend to support the ability for users to run `gem test`, and
684
+ furthermore this gem subcommand doesn't even exist anymore.
685
+ ```
686
+ * Merge pull request #60 from puppetlabs/maint_exclude-test-files-from-gem (27f0c177)
687
+
688
+
689
+ ```
690
+ Merge pull request #60 from puppetlabs/maint_exclude-test-files-from-gem
691
+
692
+ (MAINT) Exclude test files from built gem
693
+ ```
694
+ * (MAINT) Exclude test files from built gem (2dba0975)
695
+
696
+
697
+ ```
698
+ (MAINT) Exclude test files from built gem
699
+
700
+ This project has a TON of test fixtures that are not necessary in production,
701
+ yet we were still bundling them into the gem.
702
+
703
+ We don't need to include any of these, they were just making the resulting gem
704
+ significantly larger.
705
+ ```
706
+ * (MAINT) Remove 'features' from gemspec test files (3e16db88)
707
+
708
+
709
+ ```
710
+ (MAINT) Remove 'features' from gemspec test files
711
+
712
+ There is no 'features' directory or files so it doens't make sense in the
713
+ gemspec.
714
+ ```
715
+ * (MAINT) Add Gemfile.local to gitignore (a1f16380)
716
+
717
+ * (MAINT) Remove file encoding comment from gemspec file (3251469b)
718
+
719
+
720
+ ```
721
+ (MAINT) Remove file encoding comment from gemspec file
722
+
723
+ We don't need this for Ruby, it's only for your text editor, and it's annoying
724
+ as it causes some editors to prompt you for confirmation before opening the file
725
+ and parsing the encoding comment.
726
+ ```
727
+ * Merge pull request #59 from puppetlabs/theshanx-patch-1 (a365eb7a)
728
+
729
+
730
+ ```
731
+ Merge pull request #59 from puppetlabs/theshanx-patch-1
732
+
733
+ (maint) Add internal_list key to MAINTAINERS
734
+ ```
735
+ * (maint) Add internal_list key to MAINTAINERS (99fc75ee)
736
+
737
+
738
+ ```
739
+ (maint) Add internal_list key to MAINTAINERS
740
+
741
+ This change adds a reference to the Google group the maintainers are associated with.
742
+ ```
743
+ ### <a name = "0.8.0">0.8.0 - 4 Oct, 2016 (2e6dc11e)
744
+
745
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.8.0 (2e6dc11e)
746
+
747
+ * (GEM) update beaker-hostgenerator version to 0.8.0 (291854ec)
748
+
749
+ * Merge pull request #58 from puppetlabs/maint (82d9fc2a)
750
+
751
+
752
+ ```
753
+ Merge pull request #58 from puppetlabs/maint
754
+
755
+ (MAINT) Prepare for 0.8.0 release
756
+ ```
757
+ * (MAINT) Prepare for 0.8.0 release (a6346c24)
758
+
759
+ * Merge pull request #57 from puppetlabs/bk934/support-whitespace (93abe32c)
760
+
761
+
762
+ ```
763
+ Merge pull request #57 from puppetlabs/bk934/support-whitespace
764
+
765
+ (BKR-934) Allow for whitespace in settings
766
+ ```
767
+ * (BKR-934) Allow for whitespace in settings (487f3f65)
768
+
769
+
770
+ ```
771
+ (BKR-934) Allow for whitespace in settings
772
+
773
+ Previously all whitespace was automatically removed from all input. This
774
+ commit removes that behavior, allowing for values with whitespace in
775
+ them to be properly generated.
776
+
777
+ This change means users are responsible for properly quoting, escaping,
778
+ or URL-encoding the whitespace as necessary.
779
+ ```
780
+ ### <a name = "0.7.4">0.7.4 - 26 Sep, 2016 (1e102ccd)
781
+
782
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.7.4 (1e102ccd)
783
+
784
+ * (GEM) update beaker-hostgenerator version to 0.7.4 (09c62ae1)
785
+
786
+ * Merge pull request #56 from puppetlabs/maint (44882551)
787
+
788
+
789
+ ```
790
+ Merge pull request #56 from puppetlabs/maint
791
+
792
+ (MAINT) Prepare for 0.7.4 release
793
+ ```
794
+ * (QENG-4407) Return proper JSON map (88581c56)
795
+
796
+
797
+ ```
798
+ (QENG-4407) Return proper JSON map
799
+
800
+ Previously the --templates-only switch would output a custom CSV-style
801
+ format, plus it repeated platforms rather than tallying them up.
802
+
803
+ This commit changes the output format to be a JSON map, with the
804
+ platforms as keys and the total counts as values.
805
+ ```
806
+ * Merge pull request #53 from puppetlabs/add-maintainers-file (126620cf)
807
+
808
+
809
+ ```
810
+ Merge pull request #53 from puppetlabs/add-maintainers-file
811
+
812
+ (MAINT) Add MAINTAINERS file
813
+ ```
814
+ * (MAINT) Add MAINTAINERS file (b73a2ede)
815
+
816
+ * (MAINT) Prepare for 0.7.4 release (1cc9c3fc)
817
+
818
+ * Merge pull request #51 from puppetlabs/qeng4204/add-templates-only-cli (a7196b52)
819
+
820
+
821
+ ```
822
+ Merge pull request #51 from puppetlabs/qeng4204/add-templates-only-cli
823
+
824
+ (QENG-4204) Add CLI flag to only generate templates
825
+ ```
826
+ * (QENG-4204) Add CLI flag to only generate templates (7c4342f8)
827
+
828
+
829
+ ```
830
+ (QENG-4204) Add CLI flag to only generate templates
831
+
832
+ This adds a CLI switch '--templates-only' that will reduce the generated
833
+ output to include only the template values from the HOSTS.
834
+ ```
835
+ * Merge pull request #48 from puppetlabs/qeng4204/create-abs-hypervisor (ec1b80d2)
836
+
837
+
838
+ ```
839
+ Merge pull request #48 from puppetlabs/qeng4204/create-abs-hypervisor
840
+
841
+ (QENG-4204) Add AlwaysBeScheduling hypervisor
842
+ ```
843
+ * Merge pull request #50 from puppetlabs/qeng-4176 (aecb44a6)
844
+
845
+
846
+ ```
847
+ Merge pull request #50 from puppetlabs/qeng-4176
848
+
849
+ (QENG-4176 & QENG-4180) Add OSX 10.12 and Windows 2016
850
+ ```
851
+ * (QENG-4176 & QENG-4180) Add OSX 10.12 and Windows 2016 (0d8ad08a)
852
+
853
+
854
+ ```
855
+ (QENG-4176 & QENG-4180) Add OSX 10.12 and Windows 2016
856
+
857
+ Added OSX 10.12 (Sierra) and Windows Server 2016 to
858
+ supported beaker-hostgenerator platforms
859
+ ```
860
+ * (QENG-4204) Add AlwaysBeScheduling hypervisor (87559142)
861
+
862
+
863
+ ```
864
+ (QENG-4204) Add AlwaysBeScheduling hypervisor
865
+
866
+ This commit adds a new hypervisor called 'abs' that will support
867
+ generating configurations necessary for working with CI.next and the
868
+ AlwaysBeScheduling service.
869
+
870
+ Currently, the behavior of the abs hypervisor is basically the same as
871
+ the vmpooler hypervisor. The only difference is it doesn't fixup the
872
+ nodes to support old PE versions.
873
+
874
+ Having a built-in hypervisor for ABS alleviates the need for users to
875
+ manually override the hypervisor key on each node.
876
+ ```
877
+ ### <a name = "0.7.3">0.7.3 - 11 Aug, 2016 (87c75523)
878
+
879
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.7.3 (87c75523)
880
+
881
+ * (GEM) update beaker-hostgenerator version to 0.7.3 (9ad5f770)
882
+
883
+ * (maint) Update CHANGELOG for 0.7.3 release (9e9c1b82)
884
+
885
+ * Merge pull request #47 from puppetlabs/maint (165cd14a)
886
+
887
+
888
+ ```
889
+ Merge pull request #47 from puppetlabs/maint
890
+
891
+ (maint) Update CHANGELOG for 0.7.3 release
892
+ ```
893
+ * Merge pull request #46 from puppetlabs/qeng4179/add-huaweios6-platform (3a871959)
894
+
895
+
896
+ ```
897
+ Merge pull request #46 from puppetlabs/qeng4179/add-huaweios6-platform
898
+
899
+ (QENG-4179) Add HuaweiOS 6 platform
900
+ ```
901
+ * (QENG-4179) Add test HuaweiOS test fixtures (ba951da2)
902
+
903
+ * (QENG-4179) Add HuaweiOS 6 platform (4c9905c0)
904
+
905
+ * Merge pull request #45 from puppetlabs/maint (42b2e6f2)
906
+
907
+
908
+ ```
909
+ Merge pull request #45 from puppetlabs/maint
910
+
911
+ (MAINT) Add URL encoding references to README
912
+ ```
913
+ * (MAINT) Add URL encoding references to README (84dfdb29)
914
+
915
+ ### <a name = "0.7.2">0.7.2 - 13 Jul, 2016 (cee53bcc)
916
+
917
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.7.2 (cee53bcc)
918
+
919
+ * (GEM) update beaker-hostgenerator version to 0.7.2 (edc8971b)
920
+
921
+ * (MAINT) Update CHANGELOG for 0.7.2 release (f1270d44)
922
+
923
+ * Merge pull request #44 from nwolfe/maint/master/prepare-for-release (eb45282f)
924
+
925
+
926
+ ```
927
+ Merge pull request #44 from nwolfe/maint/master/prepare-for-release
928
+
929
+ (MAINT) Update CHANGELOG for 0.7.2 release
930
+ ```
931
+ * Merge pull request #43 from nwolfe/qeng4034/support-url-encoding (e4e55d3a)
932
+
933
+
934
+ ```
935
+ Merge pull request #43 from nwolfe/qeng4034/support-url-encoding
936
+
937
+ (QENG-4034) Automatically URL-decode raw input
938
+ ```
939
+ * (QENG-4034) Automatically URL-decode raw input (e6d1c1dc)
940
+
941
+
942
+ ```
943
+ (QENG-4034) Automatically URL-decode raw input
944
+
945
+ This commit adds a "pre-processing" step to the Parser that will always
946
+ attempt to URL-decode the input before parsing it. This behavior is
947
+ necessary to support specifying arbitrary settings in the input string
948
+ when the input ends up as part of an HTTP URL, such as almost every
949
+ usage we currently have in Jenkins.
950
+ ```
951
+ ### <a name = "0.7.1">0.7.1 - 29 Jun, 2016 (be332325)
952
+
953
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.7.1 (be332325)
954
+
955
+ * (GEM) update beaker-hostgenerator version to 0.7.1 (530baa09)
956
+
957
+ * Merge pull request #41 from nwolfe/maint/master/prepare-for-release (d576464b)
958
+
959
+
960
+ ```
961
+ Merge pull request #41 from nwolfe/maint/master/prepare-for-release
962
+
963
+ (MAINT) Update CHANGELOG for 0.7.1 release
964
+ ```
965
+ * Merge pull request #42 from nwolfe/maint/master/regenerate-fixture-for-new-platforms (1e1b7f47)
966
+
967
+
968
+ ```
969
+ Merge pull request #42 from nwolfe/maint/master/regenerate-fixture-for-new-platforms
970
+
971
+ (MAINT) Regenerate test fixtures for new platforms
972
+ ```
973
+ * (MAINT) Regenerate test fixtures for new platforms (cc4fa0ef)
974
+
975
+
976
+ ```
977
+ (MAINT) Regenerate test fixtures for new platforms
978
+
979
+ I blew away the whole fixtures/generated/ directory and regenerated them
980
+ all again, so the new platforms will be included and tested.
981
+ ```
982
+ * Merge pull request #39 from nwolfe/qeng3626-add-sles11-s390x (2155fb79)
983
+
984
+
985
+ ```
986
+ Merge pull request #39 from nwolfe/qeng3626-add-sles11-s390x
987
+
988
+ (QENG-3626) Add sles-11-s390x platform
989
+ ```
990
+ * Merge pull request #38 from puppetlabs/qeng-3815 (8bcbcfef)
991
+
992
+
993
+ ```
994
+ Merge pull request #38 from puppetlabs/qeng-3815
995
+
996
+ (QENG-3815) Adding sles12-s390x
997
+ ```
998
+ * Merge pull request #40 from puppetlabs/QENG-3960 (c0d76e1d)
999
+
1000
+
1001
+ ```
1002
+ Merge pull request #40 from puppetlabs/QENG-3960
1003
+
1004
+ (QENG-3960, QENG-3817, QENG-3816) - Updated for Fedora 24 (x86_64, i3…
1005
+ ```
1006
+ * (MAINT) Update CHANGELOG for 0.7.1 release (56b71af5)
1007
+
1008
+ * (QENG-3626) Add sles-11-s390x platform (c09b8a87)
1009
+
1010
+ * (QENG-3960, QENG-3817, QENG-3816) - Updated for Fedora 24 (x86_64, i386), el-7-s390x, and el-6-s390x (d88aba55)
1011
+
1012
+ * (QENG-3815) Adding sles12-s390x (a95646ea)
1013
+
1014
+
1015
+ ```
1016
+ (QENG-3815) Adding sles12-s390x
1017
+
1018
+ Adding sles12-s390x. No vmpooler
1019
+ ```
1020
+ ### <a name = "0.7.0">0.7.0 - 13 Jun, 2016 (f0aafe8d)
1021
+
1022
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.7.0 (f0aafe8d)
1023
+
1024
+ * (GEM) update beaker-hostgenerator version to 0.7.0 (4792554b)
1025
+
1026
+ * Merge pull request #36 from nwolfe/qeng3987/release-0.7.0 (11256701)
1027
+
1028
+
1029
+ ```
1030
+ Merge pull request #36 from nwolfe/qeng3987/release-0.7.0
1031
+
1032
+ (QENG-3987) Update CHANGELOG for 0.7.0 release
1033
+ ```
1034
+ * (QENG-3987) Update CHANGELOG for 0.7.0 release (2f9fa77c)
1035
+
1036
+ * Merge pull request #33 from nwolfe/qeng3811-add-aix-and-sparc-platforms (9e73e059)
1037
+
1038
+
1039
+ ```
1040
+ Merge pull request #33 from nwolfe/qeng3811-add-aix-and-sparc-platforms
1041
+
1042
+ (QENG-3811) Add AIX and Solaris SPARC platforms
1043
+ ```
1044
+ * Merge pull request #35 from nwolfe/maint/alphabetize-test-fixtures (26ae944e)
1045
+
1046
+
1047
+ ```
1048
+ Merge pull request #35 from nwolfe/maint/alphabetize-test-fixtures
1049
+
1050
+ (MAINT) Sort platforms alphabetically
1051
+ ```
1052
+ * Merge pull request #34 from nwolfe/qeng3946-support-arbitrary-hypervisors (4d018b46)
1053
+
1054
+
1055
+ ```
1056
+ Merge pull request #34 from nwolfe/qeng3946-support-arbitrary-hypervisors
1057
+
1058
+ (QENG-3946) Support arbitrary hypervisors
1059
+ ```
1060
+ * (QENG-3946) Support arbitrary hypervisors (cf62fc5e)
1061
+
1062
+
1063
+ ```
1064
+ (QENG-3946) Support arbitrary hypervisors
1065
+
1066
+ This commit allows unknown hypervisors to be specified by the user.
1067
+ Previously, if the hypervisor specified by the user was not one of the
1068
+ valid, built-in implementations then an error was thrown notifying the
1069
+ user that an invalid hypervisor was requested.
1070
+ Now, this is no longer an error, and instead the host generation will
1071
+ continue as normal but there will be no hypervisor-specific
1072
+ configuration. The name of the unknown hypervisor will be the value of
1073
+ the hypervisor configuration of the hosts.
1074
+
1075
+ To implement this, we can repurpose the special `Hypervisor::None`
1076
+ implementation to instead represent an unknown (but equally valid)
1077
+ hypervisor. The unknown name will now be the value of `hypervisor` in
1078
+ the generated config, where it used to be `hypervisor: none`.
1079
+
1080
+ For example:
1081
+ $ .. centos6-64{hypervisor=custom}
1082
+ ---
1083
+ HOSTS:
1084
+ centos6-64-1:
1085
+ pe_dir:
1086
+ pe_ver:
1087
+ pe_upgrade_dir:
1088
+ pe_upgrade_ver:
1089
+ platform: el-6-x86_64
1090
+ hypervisor: custom
1091
+ roles:
1092
+ - agent
1093
+ CONFIG:
1094
+ nfs_server: none
1095
+ consoleport: 443
1096
+ ```
1097
+ * (QENG-3811) Regenerate fixtures with new platforms (dbd40c80)
1098
+
1099
+
1100
+ ```
1101
+ (QENG-3811) Regenerate fixtures with new platforms
1102
+
1103
+ Our fixture generation isn't quite deterministic, and adding a new
1104
+ platform somehow causes unrelated platform fixtures to be changed.
1105
+
1106
+ This commit deletes the entire `test/fixtures/generated` directory and
1107
+ regenerates them anew, with new fixtures for the new AIX and Solaris
1108
+ SPARC platforms.
1109
+ ```
1110
+ * (QENG-3811) Add AIX and Solaris SPARC platforms (8c5eb30d)
1111
+
1112
+ * (MAINT) Regenerate test fixtures and isolate them (d17d2341)
1113
+
1114
+
1115
+ ```
1116
+ (MAINT) Regenerate test fixtures and isolate them
1117
+
1118
+ Since we sorted the platforms alphabetically, the fixture generation
1119
+ results in different filenames. Basically every time we modify
1120
+ Data#platforms() we should regenerate the fixtures so we have all
1121
+ platforms covered.
1122
+
1123
+ This moves the generated fixtures into a new directory called
1124
+ `test/fixtures/generated/` so it's easier to work with them and not have
1125
+ the manually created fixtures get in the way.
1126
+ ```
1127
+ * (MAINT) Sort platforms alphabetically (2376853e)
1128
+
1129
+
1130
+ ```
1131
+ (MAINT) Sort platforms alphabetically
1132
+
1133
+ Just so it's easier to navigate the large structure in the code.
1134
+ ```
1135
+ * Merge pull request #32 from nwolfe/qeng3808-alphanumeric-architectures (92eb8545)
1136
+
1137
+
1138
+ ```
1139
+ Merge pull request #32 from nwolfe/qeng3808-alphanumeric-architectures
1140
+
1141
+ (QENG-3808) Support uppercase alphanumeric architectures
1142
+ ```
1143
+ * Merge pull request #31 from nwolfe/qeng3377-fix-version-flag (7bedf39f)
1144
+
1145
+
1146
+ ```
1147
+ Merge pull request #31 from nwolfe/qeng3377-fix-version-flag
1148
+
1149
+ (QENG-3377) Add --version CLI flag
1150
+ ```
1151
+ * Merge pull request #30 from nwolfe/qeng3920-arbitrary-global-config-support (ffe6078a)
1152
+
1153
+
1154
+ ```
1155
+ Merge pull request #30 from nwolfe/qeng3920-arbitrary-global-config-support
1156
+
1157
+ (QENG-3920) Global host config CLI configuration support
1158
+ ```
1159
+ * (QENG-3808) Support uppercase alphanumeric architectures (0fc1ba77)
1160
+
1161
+
1162
+ ```
1163
+ (QENG-3808) Support uppercase alphanumeric architectures
1164
+
1165
+ This commit adds support for uppercase-only alphanumeric architecture
1166
+ bits in platform names. For example, we can support things like
1167
+ "POWER", "POWER7", "S390X" instead of just "32" or "64".
1168
+
1169
+ Uppercase letters allow for backwards compatibility when roles are
1170
+ specified, which come after the architecture bit. This implementation
1171
+ relies on the fact that the role and arbitrary role characters are
1172
+ only lowercase.
1173
+
1174
+ This allows us to distinguish between the architecture "POWER" and the
1175
+ role "m" when parsing the spec "POWERm", as in "aix71-POWERm".
1176
+ ```
1177
+ * (QENG-3377) Add --version CLI flag (2ddec220)
1178
+
1179
+
1180
+ ```
1181
+ (QENG-3377) Add --version CLI flag
1182
+
1183
+ This commit adds a -v/--version CLI flag to print the version number.
1184
+
1185
+ This also refactors the flow-of-control to remove the need for the
1186
+ SafeEarlyExit exception by moving all output-generating codepaths out of
1187
+ the initialize method and into the execute method, and teasing apart the
1188
+ --list and default generation codepaths. The execute method
1189
+ now chooses the code path based on the CLI options set in initialize.
1190
+
1191
+ While we no longer throw a SafeEarlyExit exception, it's effectively
1192
+ part of the API so we must wait until the appropriate time/release to
1193
+ delete it. Existing usages of it should not be broken with the changes
1194
+ in this commit.
1195
+ ```
1196
+ * (QENG-3920) Global host config CLI configuration support (151918d9)
1197
+
1198
+
1199
+ ```
1200
+ (QENG-3920) Global host config CLI configuration support
1201
+
1202
+ This commit adds CLI support for specifying global configuration
1203
+ settings that will be included in the CONFIG section.
1204
+
1205
+ For example:
1206
+
1207
+ $ beaker-hostgenerator --global-config {master=headless} redhat7-64m
1208
+ ---
1209
+ HOSTS:
1210
+ redhat7-64-1:
1211
+ pe_dir:
1212
+ pe_ver:
1213
+ pe_upgrade_dir:
1214
+ pe_upgrade_ver:
1215
+ hypervisor: vmpooler
1216
+ platform: el-7-x86_64
1217
+ template: redhat-7-x86_64
1218
+ roles:
1219
+ - agent
1220
+ - master
1221
+ CONFIG:
1222
+ nfs_server: none
1223
+ consoleport: 443
1224
+ master: headless
1225
+ pooling_api: http://vmpooler.delivery.puppetlabs.net/
1226
+ ```
1227
+ ### <a name = "0.6.0">0.6.0 - 11 May, 2016 (c807eb0d)
1228
+
1229
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.6.0 (c807eb0d)
1230
+
1231
+ * (GEM) update beaker-hostgenerator version to 0.6.0 (4a8ee90e)
1232
+
1233
+ * Merge pull request #29 from nwolfe/maint/master/prepare-for-release (7e0decc0)
1234
+
1235
+
1236
+ ```
1237
+ Merge pull request #29 from nwolfe/maint/master/prepare-for-release
1238
+
1239
+ (maint) Prepare for 0.6.0 release
1240
+ ```
1241
+ * (maint) Prepare for 0.6.0 release (c15c1bf6)
1242
+
1243
+ * Merge pull request #28 from nwolfe/qeng3276/none-hypervisor-and-host-settings (d105e4bd)
1244
+
1245
+
1246
+ ```
1247
+ Merge pull request #28 from nwolfe/qeng3276/none-hypervisor-and-host-settings
1248
+
1249
+ (QENG-3276) Add None hypervisor and per-host settings support
1250
+ ```
1251
+ * (QENG-3276) Minor refactorings; failing test fixture (b0926b22)
1252
+
1253
+
1254
+ ```
1255
+ (QENG-3276) Minor refactorings; failing test fixture
1256
+
1257
+ This commit includes the following minor refactorings based on feedback:
1258
+ * Inline if block surrounding arbitrary_settings['hostname']
1259
+ * Strip the `__` name prefix from `__generate_host_roles!` and make
1260
+ private; adjust spec test accordingly
1261
+ * Change test fixture `expected_exception` support to not use the
1262
+ dangerous `eval`, and added `per-host-settings/malformed-input.yaml`
1263
+ test fixture to exercise the support
1264
+ ```
1265
+ * (QENG-3276) Update CHANGELOG (0a170d42)
1266
+
1267
+
1268
+ ```
1269
+ (QENG-3276) Update CHANGELOG
1270
+
1271
+ This commit adds notes for the next release regarding the 'none'
1272
+ hypervisor and arbitrary key-value host settings support.
1273
+ ```
1274
+ * (QENG-3276) Add more parser tests for failures (b80d94ab)
1275
+
1276
+
1277
+ ```
1278
+ (QENG-3276) Add more parser tests for failures
1279
+
1280
+ This commit adds tests that validate the proper exceptions are thrown
1281
+ when invalid arbitrary host settings are provided.
1282
+
1283
+ This also expands host-setting support to include arbitrary whitespace
1284
+ to allow for more human-readable input.
1285
+ ```
1286
+ * (MAINT) Wire up expected_excpetion test fitxure support (78cccb14)
1287
+
1288
+
1289
+ ```
1290
+ (MAINT) Wire up expected_excpetion test fitxure support
1291
+
1292
+ This commits finishes the work necessary to support expected exceptions
1293
+ defined in the test fixture YAML files.
1294
+ ```
1295
+ * (QENG-3276) Move host role code into Roles module (78a2679e)
1296
+
1297
+
1298
+ ```
1299
+ (QENG-3276) Move host role code into Roles module
1300
+
1301
+ This commit moves the ROLES map and custom role config map out of the
1302
+ Data and Generator classes and into the Roles class.
1303
+ This also changes the implementation of custom role configuration from
1304
+ being a meta-programming method call into a standard map index.
1305
+ ```
1306
+ * (QENG-3276) Extract code into new Parser module (9764fd7e)
1307
+
1308
+
1309
+ ```
1310
+ (QENG-3276) Extract code into new Parser module
1311
+
1312
+ This commit moves the NODE_REGEX constant and handful of methods tightly
1313
+ coupled to it into a new module called Parser. This module is
1314
+ responsible for dealing with the raw user input string and turning it
1315
+ into data structures that the Generator and hypervisors can operate on.
1316
+ ```
1317
+ * (QENG-3276) Minor method refactoring (ce763dc0)
1318
+
1319
+
1320
+ ```
1321
+ (QENG-3276) Minor method refactoring
1322
+
1323
+ This commit renames a method, marks some methods as private, and
1324
+ extracts some logic into its own method.
1325
+ ```
1326
+ * (QENG-3276) Update README (fd99cc9f)
1327
+
1328
+
1329
+ ```
1330
+ (QENG-3276) Update README
1331
+
1332
+ This commit updates the README to include an example of the new 'none'
1333
+ hypervisor and per-host settings.
1334
+
1335
+ Also rename "Puppet Labs" references to just "Puppet".
1336
+ ```
1337
+ * (QENG-3276) Update CLI help/usage text (7d85dff4)
1338
+
1339
+
1340
+ ```
1341
+ (QENG-3276) Update CLI help/usage text
1342
+
1343
+ This commit updates the CLI help text to mention the new arbitrary host
1344
+ settings support, and include the list of valid hypervisors when the
1345
+ `--list` option is given.
1346
+ ```
1347
+ * (QENG-3276) Test fixtures for hypervisor and settings (34d4e649)
1348
+
1349
+
1350
+ ```
1351
+ (QENG-3276) Test fixtures for hypervisor and settings
1352
+
1353
+ This commit adds a couple hand-made test fixtures that exercise the new
1354
+ "none" hypervisor and arbitrary host settings support.
1355
+ ```
1356
+ * Merge pull request #27 from nwolfe/maint/master/decouple-generator-and-hypervisors (52293374)
1357
+
1358
+
1359
+ ```
1360
+ Merge pull request #27 from nwolfe/maint/master/decouple-generator-and-hypervisors
1361
+
1362
+ (maint) Decouple hypervisors from generator
1363
+ ```
1364
+ * (QENG-3276) Add None hypervisor and per-host settings support (ab38abef)
1365
+
1366
+
1367
+ ```
1368
+ (QENG-3276) Add None hypervisor and per-host settings support
1369
+
1370
+ This commit adds a new "none" hypervisor to support non-provisioned
1371
+ hosts. Non-provisioned hosts require a handful of other host settings to
1372
+ be specified in order for Beaker to use it properly, so this commit also
1373
+ adds support for arbitrary key-value host settings.
1374
+
1375
+ For example:
1376
+
1377
+ $ .. centos6-64m{hypervisor=none,hostname=my-host,vmhostname=othername}
1378
+ ---
1379
+ HOSTS:
1380
+ my-host:
1381
+ pe_dir:
1382
+ pe_ver:
1383
+ pe_upgrade_dir:
1384
+ pe_upgrade_ver:
1385
+ platform: el-6-x86_64
1386
+ hypervisor: none
1387
+ vmhostname: othername
1388
+ roles:
1389
+ - agent
1390
+ - master
1391
+ CONFIG:
1392
+ nfs_server: none
1393
+ consoleport: 443
1394
+ ```
1395
+ * (maint) Docstrings for new hypervisor architecture (9c35595f)
1396
+
1397
+
1398
+ ```
1399
+ (maint) Docstrings for new hypervisor architecture
1400
+
1401
+ This commit adds docstrings to modules and methods, specifically the
1402
+ BeakerHostGenerator::Hypervisor and BeakerHostGenerator::Data modules.
1403
+ ```
1404
+ * (maint) Generate multi-platform test fixtures (996578cb)
1405
+
1406
+
1407
+ ```
1408
+ (maint) Generate multi-platform test fixtures
1409
+
1410
+ To help with test coverage, this adds a directory full of generated
1411
+ test fixtures with multi-platform hosts in a form similar to
1412
+ "centos6-64m-debian8-32-sles12-64a". Two of the three hosts have a
1413
+ random role assigned.
1414
+ ```
1415
+ * (maint) New generated windows test fixtures (2591347e)
1416
+
1417
+
1418
+ ```
1419
+ (maint) New generated windows test fixtures
1420
+
1421
+ The rake task 'generate:fixtures' produced several new Windows fixtures.
1422
+ Perhaps we had previously updated the code to add support for more
1423
+ Windows platforms, but we forgot to re-generate the test fixtures?
1424
+ ```
1425
+ * (maint) Decouple hypervisors from generator (aa39202e)
1426
+
1427
+
1428
+ ```
1429
+ (maint) Decouple hypervisors from generator
1430
+
1431
+ This commit is a large refactor that teases apart the generate code from
1432
+ the hypervisor code.
1433
+
1434
+ Previously the VMPooler hypervisor class was a subclass of the Generator
1435
+ class, which was fine when there was only one hypervisor, but made it
1436
+ difficult to add support for per-host/multiple hypervisors.
1437
+
1438
+ Now, there's a 1-to-many relationship between the Generator
1439
+ (BeakerHostGenerator::Generator) and the
1440
+ Hypervisors (BeakerHostGenerator::Hypervisor).
1441
+
1442
+ The giant map of OSINFO data that was previously in the
1443
+ 'data/vmpooler.rb' has been promoted and moved into data.rb as the
1444
+ `osinfo` module function. The parts specific to the VMPooler hypervisor
1445
+ have been nested under submaps keyed by the name of the hypervisor,
1446
+ `:vmpooler`.
1447
+
1448
+ Adding support for a new hypervisor now requires implementing
1449
+ BeakerHostGenerator::Hypervisor::Interface, and adding any appropriate
1450
+ platform data as a submap to the OSINFO map in data.rb, keyed under a
1451
+ symbol named after the new hypervisor (e.g. `:my_hypervisor`).
1452
+
1453
+ The module function `BeakerHostGenerator::Data.get_platform_info` can
1454
+ then be used when implementing the hypervisor to extract the relevant
1455
+ platform data under the key `:my_hypervisor`.
1456
+ ```
1457
+ ### <a name = "0.5.0">0.5.0 - 31 Mar, 2016 (fa3ae0c8)
1458
+
1459
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.5.0 (fa3ae0c8)
1460
+
1461
+ * (GEM) update beaker-hostgenerator version to 0.5.0 (36291ea6)
1462
+
1463
+ * (MAINT) Update changelog for pending release. (5b2e75bf)
1464
+
1465
+ * Merge pull request #26 from puppetlabs/qeng-3489 (2b9b0ad4)
1466
+
1467
+
1468
+ ```
1469
+ Merge pull request #26 from puppetlabs/qeng-3489
1470
+
1471
+ (QENG-3489) Add Ubuntu 16.04 to beaker host generator data.
1472
+ ```
1473
+ * (MAINT) Fix borked test fixtures. (e5d60be4)
1474
+
1475
+ * (QENG-3489) Add Ubuntu 16.04 to vmpooler platform data. (23e10232)
1476
+
1477
+ * Merge pull request #25 from LuvCurves/remove_cisco_xr_ssh_user (50016446)
1478
+
1479
+
1480
+ ```
1481
+ Merge pull request #25 from LuvCurves/remove_cisco_xr_ssh_user
1482
+
1483
+ (maint) Remove ssh user from Cisco XR platform.
1484
+ ```
1485
+ * (maint) Remove ssh user from Cisco XR platform. (79fcd1cf)
1486
+
1487
+ * Merge pull request #24 from LuvCurves/BKR-706 (0c7c31cf)
1488
+
1489
+
1490
+ ```
1491
+ Merge pull request #24 from LuvCurves/BKR-706
1492
+
1493
+ (BKR-706) Update Cisco platforms to match beaker
1494
+ ```
1495
+ * (maint) Changed names based on Cisco recommendation (7b88434c)
1496
+
1497
+ * (BKR-706) Update Cisco platforms to match beaker (7c44bb80)
1498
+
1499
+ ### <a name = "0.4.0">0.4.0 - 10 Feb, 2016 (dc333b1c)
1500
+
1501
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.4.0 (dc333b1c)
1502
+
1503
+ * (GEM) update beaker-hostgenerator version to 0.4.0 (fe10edc1)
1504
+
1505
+ * (MAINT) Remove hard-coded gemspec date. (4770b013)
1506
+
1507
+ * Merge pull request #23 from puppetlabs/maint (f8b77852)
1508
+
1509
+
1510
+ ```
1511
+ Merge pull request #23 from puppetlabs/maint
1512
+
1513
+ (QENG-3466) Fix --list bug and write tests to prevent recurrences.
1514
+ ```
1515
+ * (MAINT) s/Errors/Exceptions/ in bin directory (b8b68c60)
1516
+
1517
+ * (MAINT) Better semantics for exception naming. (d0129893)
1518
+
1519
+ * (MAINT) Actually add new test. (f80192f3)
1520
+
1521
+ * (MAINT) Be more explicit in CHANGELOG (0a39fb6b)
1522
+
1523
+ * (MAINT) Write test for safe early exit behavior. (34866de1)
1524
+
1525
+
1526
+ ```
1527
+ (MAINT) Write test for safe early exit behavior.
1528
+
1529
+ Specifically, ensure that when passed the "--list" options,
1530
+ BeakerHostGenerator::CLI.initialize will raise the
1531
+ BeakerHostGenerator::Errors::SafeEarlyExit exception which is intended to be
1532
+ ignored by the script calling BeakerHostGenerator::CLI.initialize
1533
+ ```
1534
+ * (MAINT) Update CHANGELOG (bb52432b)
1535
+
1536
+ * (MAINT) Write tests to protect --list CLI behavior. (e523773f)
1537
+
1538
+ * (MAINT) Don't call 'exit' in BeakerHostGenerator::CLI class. (e3bac654)
1539
+
1540
+ * (MAINT) Fix bug introduced by eecc04c (865b04c2)
1541
+
1542
+ * Merge pull request #21 from puppetlabs/qeng-3370 (45bf2295)
1543
+
1544
+
1545
+ ```
1546
+ Merge pull request #21 from puppetlabs/qeng-3370
1547
+
1548
+ (QENG-3370) Add pe_* value CLI override options.
1549
+ ```
1550
+ * (QENG-3370) Use mixins instead of module method references. (eecc04c8)
1551
+
1552
+ * (QENG-3370) Address PR feedback. (19cc3a9b)
1553
+
1554
+ * (QENG-3370) Fix grammar no no. (4d7d5db3)
1555
+
1556
+ * Revert "(QENG-3370) Add .projectile (emacs plugin) path exclusion." (1db7dfcc)
1557
+
1558
+
1559
+ ```
1560
+ Revert "(QENG-3370) Add .projectile (emacs plugin) path exclusion."
1561
+
1562
+ This reverts commit 3dd4eb3a5488b55f6aae1d65db43e84c7c0ff625.
1563
+ ```
1564
+ * (QENG-3370) Fix fixtures after merging cisco changes from master branch. (e1c65ffc)
1565
+
1566
+ * Merge remote-tracking branch 'origin/master' into qeng-3370 (8559505b)
1567
+
1568
+ * (QENG-3370) Fix module constant initialization bug. (aa3e08cd)
1569
+
1570
+
1571
+ ```
1572
+ (QENG-3370) Fix module constant initialization bug.
1573
+
1574
+ Similar to the BeakerHostGenerator::Data::Vmpooler data initialization bug, this
1575
+ is something that would not typically show up during normal command line usage
1576
+ of beaker-hostgenerator because at that time there is typically only one
1577
+ reference made to the BeakerHostGenerator::Utils module constant. However during
1578
+ test fixture generation and rspec tests the modules were only loaded once so
1579
+ there was only one attempt to read in environment variables which led to
1580
+ inconsisten results depending on the order in which the fixtures were
1581
+ generated/tested.
1582
+ ```
1583
+ * (QENG-3370) Fix major bug in BeakerHostGenerator::Data::Vmpooler (f3359c8f)
1584
+
1585
+
1586
+ ```
1587
+ (QENG-3370) Fix major bug in BeakerHostGenerator::Data::Vmpooler
1588
+
1589
+ Since the OSINFO and OSINFO_BHGv1 module constants are only initialized once
1590
+ (during library load), do not refer directly to them using reference variables.
1591
+ Instead, initialize the osinfo variable directly on each call of get_osinfo and
1592
+ merge in the module constants as appropriate based on the given
1593
+ beaker-hostenerator version integer.
1594
+
1595
+ This bug never came up during normal command-line usage of beaker-hostgenerator
1596
+ because get_osinfo would never be expected to be called with both bhg_version=0
1597
+ and bhg_version=1. However, it came up both during generation of test fixtures
1598
+ and validation of those test fixtures in rspec since the module is only loaded
1599
+ once which led to the mutated value of the OSINFO module constant to persist
1600
+ across all initializations of the BeakerHostGenerator::CLI class.
1601
+ ```
1602
+ * (QENG-3370) Generate test cases for pe_{family,version} variable combinations. (99965b3f)
1603
+
1604
+ * (QENG-3370) Minor cleanup of new rspec test. (e9a77bb5)
1605
+
1606
+ * (QENG-3370) Use fixtures in rspec tests instead of minitest. (b401574d)
1607
+
1608
+
1609
+ ```
1610
+ (QENG-3370) Use fixtures in rspec tests instead of minitest.
1611
+
1612
+ This makes it possible to treat each individual fixture its own test case which
1613
+ improves the reporting and ensures that all fixtures are tested even if some
1614
+ fail.
1615
+
1616
+ Using a loop containing an assertion in minitest did not work for this purpose
1617
+ because a failed assertion caused the loop to break prematurely; it probably
1618
+ would have been possible to catch whatever the exception was and continue the
1619
+ loop but whatever. I already did this.
1620
+ ```
1621
+ * (QENG-3370) Rename options_string to arguments_string. (c6507fd4)
1622
+
1623
+ * (QENG-3370) Add documentation for test fixtures. (b6712a9b)
1624
+
1625
+ * (QENG-3370) Make it a little easier to generate fixtures. (a829a425)
1626
+
1627
+
1628
+ ```
1629
+ (QENG-3370) Make it a little easier to generate fixtures.
1630
+
1631
+ * Move FixtureGenerator class into test/utils/generator_helpers.rb
1632
+ * Create generate:test Rake task
1633
+ ```
1634
+ * (QENG-3370) Add assert_equal mismatch message. (11cbba23)
1635
+
1636
+ * (QENG-3370) Add .projectile (emacs plugin) path exclusion. (3dd4eb3a)
1637
+
1638
+ * (QENG-3370) Use YAML.load_file method. (0b353986)
1639
+
1640
+ * (QENG-3370) Don't use minitest to generate fixtures. (6c3a890f)
1641
+
1642
+ * (QENG-3370) Generate various option fixtures. (71e4efca)
1643
+
1644
+ * (QENG-3370) Add some fixtures and a test case to iterate over them. (722abcd5)
1645
+
1646
+ * (QENG-3370) Use enumerators to produce more diverse combinations of host roles. (2f913aec)
1647
+
1648
+ * (QENG-3370) Move helper methods into helper module. (f4fd1cf5)
1649
+
1650
+
1651
+ ```
1652
+ (QENG-3370) Move helper methods into helper module.
1653
+
1654
+ Unclutters the fixture generator class and maintains distinction between test
1655
+ and helper methods.
1656
+ ```
1657
+ * (QENG-3370) Create common method for generating options-based fixtures. (6be93ddc)
1658
+
1659
+
1660
+ ```
1661
+ (QENG-3370) Create common method for generating options-based fixtures.
1662
+
1663
+ This will make it easier to generate many many fixtures.
1664
+ ```
1665
+ * (QENG-3370) Add janky fixture generator. (88ac0341)
1666
+
1667
+
1668
+ ```
1669
+ (QENG-3370) Add janky fixture generator.
1670
+
1671
+ This script allows one to generate test fixtures using beaker-hostgenerator
1672
+ itself. Yay. The generated directory structure could use some more thought.
1673
+ ```
1674
+ * (QENG-3370) Move GeneratorTestHelpers into its own file. (f7d3f996)
1675
+
1676
+ * (QENG-3370) Use BeakerHostGenerator::CLI directly. (45a2f7e4)
1677
+
1678
+
1679
+ ```
1680
+ (QENG-3370) Use BeakerHostGenerator::CLI directly.
1681
+
1682
+ This may be necessary to ensure coverage checks can work correctly. Also, it
1683
+ makes sense to test at this since I know of at least one project that is doing
1684
+ something similar.
1685
+
1686
+ Not so sure about the way this is handling stderr though--just trying to avoid
1687
+ polluting the minitest console output.
1688
+ ```
1689
+ * (QENG-3770) Add GeneratorTestHelpers and default options test for test class. (388867d1)
1690
+
1691
+ * (QENG-3770) Stub out minitest for Generator class. (3af5796d)
1692
+
1693
+ * (QENG-3770) Get test:spec rake task to run minitest also. (436bb778)
1694
+
1695
+ * (QENG-3370) Add pe_* value CLI override options. (e321afc3)
1696
+
1697
+ ### <a name = "0.3.3">0.3.3 - 3 Feb, 2016 (41051da9)
1698
+
1699
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.3.3 (41051da9)
1700
+
1701
+ * (GEM) update beaker-hostgenerator version to 0.3.3 (34f5cee5)
1702
+
1703
+ * Merge pull request #20 from LuvCurves/master (9615ac0c)
1704
+
1705
+
1706
+ ```
1707
+ Merge pull request #20 from LuvCurves/master
1708
+
1709
+ (maint) Add better support for Cisco platforms
1710
+ ```
1711
+ * (MAINT) Update changelog. (bd675277)
1712
+
1713
+ * (maint) Add better support for Cisco platforms (f4ca866a)
1714
+
1715
+ ### <a name = "0.3.2">0.3.2 - 28 Jan, 2016 (299df8ec)
1716
+
1717
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.3.2 (299df8ec)
1718
+
1719
+ * (GEM) update beaker-hostgenerator version to 0.3.2 (1b73712d)
1720
+
1721
+ * Merge pull request #22 from Iristyle/update-win-10-platforms (b181cd18)
1722
+
1723
+
1724
+ ```
1725
+ Merge pull request #22 from Iristyle/update-win-10-platforms
1726
+
1727
+ (maint) Update Windows 10 platform names
1728
+ ```
1729
+ * (maint) Update Windows 10 platform names (27a26440)
1730
+
1731
+
1732
+ ```
1733
+ (maint) Update Windows 10 platform names
1734
+
1735
+ - Previous convention for Windows platforms is to always end in a -32
1736
+ or -64. There are some tests that rely on this naming scheme to
1737
+ properly identify a 32-bit or 64-bit OS.
1738
+
1739
+ For instance, a Puppet acceptance test relies on that convention when
1740
+ detecting the location of binaries per:
1741
+
1742
+ https://github.com/puppetlabs/puppet/blob/master/acceptance/tests/ensure_puppet-agent_paths.rb#L140-L143
1743
+
1744
+ Original commit that introduced these was
1745
+ 3d1be3833b0dd95d508d89ecbe76464524f578c3
1746
+ ```
1747
+ ### <a name = "0.3.1">0.3.1 - 30 Dec, 2015 (7a3f10ca)
1748
+
1749
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.3.1 (7a3f10ca)
1750
+
1751
+ * (GEM) update beaker-hostgenerator version to 0.3.1 (8f469a6f)
1752
+
1753
+ * Merge pull request #19 from puppetlabs/issue/qeng-3335-centos-only (a478482a)
1754
+
1755
+
1756
+ ```
1757
+ Merge pull request #19 from puppetlabs/issue/qeng-3335-centos-only
1758
+
1759
+ (QENG-3335) Restrict osinfo v1 to centos only changes
1760
+ ```
1761
+ * (QENG-3335) Restrict osinfo v1 to centos only changes (851f1b40)
1762
+
1763
+
1764
+ ```
1765
+ (QENG-3335) Restrict osinfo v1 to centos only changes
1766
+
1767
+ See https://tickets.puppetlabs.com/browse/BKR-662 for backstory.
1768
+ ```
1769
+ ### <a name = "0.3.0">0.3.0 - 30 Dec, 2015 (4b03eaf4)
1770
+
1771
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.3.0 (4b03eaf4)
1772
+
1773
+ * (GEM) update beaker-hostgenerator version to 0.3.0 (5bc2d40b)
1774
+
1775
+ * Merge pull request #18 from puppetlabs/qeng-3335 (323ed794)
1776
+
1777
+
1778
+ ```
1779
+ Merge pull request #18 from puppetlabs/qeng-3335
1780
+
1781
+ (QENG-3335) Don't identify centos as el in 'platform'
1782
+ ```
1783
+ * (QENG-3335) Fix typo in osinfo version deprecation message. (b4903f78)
1784
+
1785
+ * (QENG-3335) Fix the OSINFO deprecation warning. (e364bd97)
1786
+
1787
+
1788
+ ```
1789
+ (QENG-3335) Fix the OSINFO deprecation warning.
1790
+
1791
+ Assignment to the "warning" variable was incorrect, also it appears that one
1792
+ cannot print to STDERR within the OptionParser.new block...
1793
+ ```
1794
+ * (QENG-3335) Add OSINFO v0 deprecation warning. (4336126a)
1795
+
1796
+ * (QENG-3335) s/bgh/bhg/ s/BGH/BHG/ (bfb95f05)
1797
+
1798
+ * (QENG-3335) Cast osinfo-version to integer. (4e9d8088)
1799
+
1800
+ * (QENG-3335) Don't forget to use the bgh_version. (c9dec1b7)
1801
+
1802
+ * (QENG-3335) Actually, don't change the original datastructure name. (e1f4cd4a)
1803
+
1804
+ * (QENG-3335) Actually, use '--osinfo-version' flag instead. (391fdd68)
1805
+
1806
+ * (QENG-3335) Add 'enable-unambiguous-platform-names' flag. (888f8d40)
1807
+
1808
+ * (QENG-3335) Don't identify centos as el in 'platform' (520028e2)
1809
+
1810
+ * Merge pull request #17 from puppetlabs/maint (3fc629e4)
1811
+
1812
+
1813
+ ```
1814
+ Merge pull request #17 from puppetlabs/maint
1815
+
1816
+ (MAINT) Update Changelog for recent releases.
1817
+ ```
1818
+ * (MAINT) Update Changelog for recent releases. (2ae32038)
1819
+
1820
+ ### <a name = "0.2.0">0.2.0 - 22 Dec, 2015 (dfa33e5f)
1821
+
1822
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.2.0 (dfa33e5f)
1823
+
1824
+ * (GEM) update beaker-hostgenerator version to 0.2.0 (1194df93)
1825
+
1826
+ * Merge pull request #15 from puppetlabs/(QENG-3301)-Add-support-for-Cumulus-Linux (9a8e655c)
1827
+
1828
+
1829
+ ```
1830
+ Merge pull request #15 from puppetlabs/(QENG-3301)-Add-support-for-Cumulus-Linux
1831
+
1832
+ (QENG-3301) Add support for Cumulus Linux
1833
+ ```
1834
+ * Merge pull request #16 from puppetlabs/maint (982e7deb)
1835
+
1836
+
1837
+ ```
1838
+ Merge pull request #16 from puppetlabs/maint
1839
+
1840
+ (MAINT) Fix arista4 spec string.
1841
+ ```
1842
+ * Merge pull request #14 from puppetlabs/(QENG-3308)(QENG-3309)-Add-support-for-Cisco-platforms (bb18139d)
1843
+
1844
+
1845
+ ```
1846
+ Merge pull request #14 from puppetlabs/(QENG-3308)(QENG-3309)-Add-support-for-Cisco-platforms
1847
+
1848
+ (QENG-3308)(QENG-3309) Add support for Cisco platforms
1849
+ ```
1850
+ * (MAINT) Fix arista4 spec string. (6a7715a0)
1851
+
1852
+ * (QENG-3308) (QENG-3309) Add hardware platform signifier. (29bf775c)
1853
+
1854
+ * Updated platform strings based on comments. (6727a9dd)
1855
+
1856
+ * (QENG-3301) Add support for Cumulus Linux (a1a96d5a)
1857
+
1858
+ * (QENG-3308)(QENG-3309) Add support for Cisco platforms (c7cfbaa0)
1859
+
1860
+ * Merge pull request #12 from puppetlabs/maint (084ae0cf)
1861
+
1862
+
1863
+ ```
1864
+ Merge pull request #12 from puppetlabs/maint
1865
+
1866
+ Revert "(QENG-3309) Add support for Cisco wrlinux-7"
1867
+ ```
1868
+ * Revert "(QENG-3309) Add support for Cisco wrlinux-7" (3693133f)
1869
+
1870
+
1871
+ ```
1872
+ Revert "(QENG-3309) Add support for Cisco wrlinux-7"
1873
+
1874
+ This reverts commit 3e36da18e7bfeec2fa92295fa5f9959d45611eb4.
1875
+ ```
1876
+ * Merge pull request #11 from puppetlabs/(QENG-3309)-Add-support-for-Cisco-wrlinux-7 (0fdf80ec)
1877
+
1878
+
1879
+ ```
1880
+ Merge pull request #11 from puppetlabs/(QENG-3309)-Add-support-for-Cisco-wrlinux-7
1881
+
1882
+ (QENG-3309) Add support for Cisco wrlinux-7
1883
+ ```
1884
+ * (QENG-3309) Add support for Cisco wrlinux-7 (3e36da18)
1885
+
1886
+ ### <a name = "0.1.0">0.1.0 - 21 Dec, 2015 (474f4ccb)
1887
+
1888
+ * (HISTORY) update beaker-hostgenerator history for gem release 0.1.0 (474f4ccb)
1889
+
1890
+ * (GEM) update beaker-hostgenerator version to 0.1.0 (13477a89)
1891
+
1892
+ * Merge pull request #10 from joshcooper/ticket/master/QENG-3275-32bit-puppet-64bit-windows (b059a8c6)
1893
+
1894
+
1895
+ ```
1896
+ Merge pull request #10 from joshcooper/ticket/master/QENG-3275-32bit-puppet-64bit-windows
1897
+
1898
+ (QENG-3275) Add support for 32-bit puppet on 64-bit windows
1899
+ ```
1900
+ * (QENG-3275) Ensure ruby_arch matches install_32 (00b625e0)
1901
+
1902
+
1903
+ ```
1904
+ (QENG-3275) Ensure ruby_arch matches install_32
1905
+
1906
+ Previously, if then `pe_use_win32` environment variable was set, then
1907
+ the resulting host config for 64-bit windows OS's, would contain
1908
+ `ruby_arch: x64`, which contradicted `install_32: true`.
1909
+
1910
+ This commit ensures `ruby_arch: x86` in this particular case so that it
1911
+ is consistent with `install_32: true`.
1912
+ ```
1913
+ * Merge pull request #8 from puppetlabs/(QENG-3307)-Add-support-for-Arista (a9ffbade)
1914
+
1915
+
1916
+ ```
1917
+ Merge pull request #8 from puppetlabs/(QENG-3307)-Add-support-for-Arista
1918
+
1919
+ Added Arista support
1920
+ ```
1921
+ * Update vmpooler.rb (a72bb36f)
1922
+
1923
+ * Added Arista support (cf70e0ca)
1924
+
1925
+ * Merge pull request #7 from puppetlabs/qeng-3181 (ffd8b2d0)
1926
+
1927
+
1928
+ ```
1929
+ Merge pull request #7 from puppetlabs/qeng-3181
1930
+
1931
+ (QENG-3181) Add a 'genconfig2' command line tool with deprecation war…
1932
+ ```
1933
+ * Merge pull request #6 from puppetlabs/qeng-2438 (a98bc8c6)
1934
+
1935
+
1936
+ ```
1937
+ Merge pull request #6 from puppetlabs/qeng-2438
1938
+
1939
+ (QENG-2438) Improve beaker-hostgenerator documentation.
1940
+ ```
1941
+ * (QENG-2438) Fix typo in CONTRIBUTING.md (c58e8fee)
1942
+
1943
+ * (QENG-3275) Add hybrid Windows host configs for 32-bit puppet (f113ba1c)
1944
+
1945
+
1946
+ ```
1947
+ (QENG-3275) Add hybrid Windows host configs for 32-bit puppet
1948
+
1949
+ Add host configs for specifying 32-bit puppet on 64-bit Windows, e.g.
1950
+
1951
+ bundle exec beaker-hostgenerator windows2012r2-6432a
1952
+ ---
1953
+ HOSTS:
1954
+ windows2012r2-6432-1:
1955
+ ...
1956
+ platform: windows-2012r2-64
1957
+ template: win-2012r2-x86_64
1958
+ ruby_arch: x86
1959
+ roles:
1960
+ - agent
1961
+
1962
+ Updates `--list` update to describe 64, 32, and 6432 bits.
1963
+ ```
1964
+ * (QENG-3275) Default ruby_arch based on Windows arch (6b6c3595)
1965
+
1966
+
1967
+ ```
1968
+ (QENG-3275) Default ruby_arch based on Windows arch
1969
+
1970
+ Previously, Windows host configs did not contain `ruby_arch`, which
1971
+ puppet, facter, and pxp-agent rely on during acceptance tests to
1972
+ detect which version of ruby is running, as we support running either
1973
+ 32 or 64-bit puppet on 64-bit Windows.
1974
+
1975
+ This commit ensures `ruby_arch` is set to x64 for 64-bit Windows, and
1976
+ x86 for 32-bit Windows.
1977
+ ```
1978
+ * (QENG-3181) Add a 'genconfig2' command line tool with deprecation warning. (0adfab77)
1979
+
1980
+ * (QENG-2438) Add a CONTRIBUTING.md. (d1e8a747)
1981
+
1982
+
1983
+ ```
1984
+ (QENG-2438) Add a CONTRIBUTING.md.
1985
+
1986
+ Heavily modified version of Beaker's CONTRIBUTING.md
1987
+ ```
1988
+ * (QENG-2438) Improve beaker-hostgenerator documentation. (41b33040)
1989
+
1990
+ * Merge pull request #5 from joshcooper/ticket/master/QENG-3267-call-cli-programmatically (4dace64a)
1991
+
1992
+
1993
+ ```
1994
+ Merge pull request #5 from joshcooper/ticket/master/QENG-3267-call-cli-programmatically
1995
+
1996
+ (QENG-3267) Allow CLI to be called programmatically
1997
+ ```
1998
+ * Merge pull request #4 from joshcooper/ticket/maint/genconfig-typo (a69dc2b8)
1999
+
2000
+
2001
+ ```
2002
+ Merge pull request #4 from joshcooper/ticket/maint/genconfig-typo
2003
+
2004
+ (maint) Refer to new Beaker::Host::Generator::Data constant
2005
+ ```
2006
+ * Merge pull request #3 from puppetlabs/copy-edit-usage-docstring (b7c4f26e)
2007
+
2008
+
2009
+ ```
2010
+ Merge pull request #3 from puppetlabs/copy-edit-usage-docstring
2011
+
2012
+ Copy edit usage docstring
2013
+ ```
2014
+ * Merge pull request #2 from puppetlabs/readme-typo-fixed (c691c650)
2015
+
2016
+
2017
+ ```
2018
+ Merge pull request #2 from puppetlabs/readme-typo-fixed
2019
+
2020
+ README typo fixed
2021
+ ```
2022
+ * (QENG-3267) Add an execute method for programmatic execution (124e6504)
2023
+
2024
+
2025
+ ```
2026
+ (QENG-3267) Add an execute method for programmatic execution
2027
+
2028
+ Previously, it was not possible to execute the CLI and get back the
2029
+ output as a string.
2030
+
2031
+ This commit adds an `execute` method that does that, and modifies
2032
+ `execute!` to print what `execute` returns, as it did before.
2033
+ ```
2034
+ * (QENG-3267) Allow CLI to be called programmatically (b571680d)
2035
+
2036
+
2037
+ ```
2038
+ (QENG-3267) Allow CLI to be called programmatically
2039
+
2040
+ Previously, the CLI class relied on the global ARGV which prevented
2041
+ the CLI from being called programmatically.
2042
+
2043
+ This commit changes the initialize method to take an optional array of
2044
+ arguments. If none are provided, we use the global ARGV as we did
2045
+ before, although we make a duplicate of it, since we later mutate it,
2046
+ e.g. pushing "--help".
2047
+ ```
2048
+ * (QENG-3267) Reindent leading whitespace (0fcf55c5)
2049
+
2050
+
2051
+ ```
2052
+ (QENG-3267) Reindent leading whitespace
2053
+
2054
+ The previous commit eliminated two levels of indentation. This commit
2055
+ only reindents eliminating leading whitespace.
2056
+ ```
2057
+ * (QENG-3267) Rename Beaker::Host::Generator to BeakerHostGenerator (19455f66)
2058
+
2059
+
2060
+ ```
2061
+ (QENG-3267) Rename Beaker::Host::Generator to BeakerHostGenerator
2062
+
2063
+ Previously, we were using the Beaker::Host::Generator namespace, where
2064
+ Beaker::Host is a module, but beaker defines Beaker::Host to be a
2065
+ class, so you could not require both beaker and beaker-hostgenerator.
2066
+
2067
+ This commit renames the module namespace to BeakerHostGenerator so
2068
+ that it cannot collide with Beaker.
2069
+
2070
+ This is a backwards incompatible change if anyone is programmatically
2071
+ calling Beaker::Host::Generator, but I don't think anyone is.
2072
+ ```
2073
+ * (maint) Refer to new Beaker::Host::Generator::Data constant (082fe71c)
2074
+
2075
+
2076
+ ```
2077
+ (maint) Refer to new Beaker::Host::Generator::Data constant
2078
+
2079
+ Previously, trying to call `beaker-hostgenerator --list` would result
2080
+ in:
2081
+
2082
+ uninitialized constant Beaker::Host::Generator::Utils::GenConfig (NameError)
2083
+
2084
+ This commit updates the code to use the new constant name.
2085
+ ```
2086
+ * Copy edit usage docstring (98a5e0fe)
2087
+
2088
+ * README typo fixed (ba88e07e)
2089
+
2090
+ ### 0.0.1 - 7 Oct, 2015 (d99251e6)
2091
+
2092
+ * Initial release.
2093
+
2094
+
2095
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*