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