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