beaker 4.26.0 → 4.29.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c39df762f99d0590a8a754edc8d6a3a411137df0980823ac7d008eda11f3a81d
4
- data.tar.gz: 9e43461bed058372c69307cd73e69b0d8e72998a93fcd5dae345cb9a96aa09c7
3
+ metadata.gz: dbfaa8f41aaa3ee0ef3400002bed63eccc4bbf4a1057b047f85610fbb30fa677
4
+ data.tar.gz: 942d0e998c84ca98160a49da29608010c8ec42d4c1a175946ff5d31a69f0a991
5
5
  SHA512:
6
- metadata.gz: 9abeaeb61ef396755e86fc5659ff252d7d7a3bf9fee664fab97411bce22313912e254708cd64ded4c6501d10d853ac2b5c58806be109113d6ba885350b87a7d5
7
- data.tar.gz: a1e6c0542a97715a9d0cf50247b3625fc5e9936137a37235374cc0853e15b0b6726838034f4c5da8327bd00bdd2bf056310754c1993bbe26f4114ebe5501acea
6
+ metadata.gz: 78f4703fbd41da566acc7a674f3694c7d756bfae560f5ff8c00dbc240db7725de3ccc40c01e2c412564ea56d0f94eac8573b8d98c5b1a743b52890bc8341ccf0
7
+ data.tar.gz: a605d125585bf3ddc1dab03216b8056c9aadb26d662074bb15e96594ca3868c08552c06b25a767449af3c31d3099f6f00599274eb2c229995711311a1d11e799
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "13:00"
8
+ open-pull-requests-limit: 10
@@ -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'
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,30 @@
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
+ - "3.0"
19
+ name: Ruby ${{ matrix.ruby }}
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - name: Install Ruby ${{ matrix.ruby }}
23
+ uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: ${{ matrix.ruby }}
26
+ bundler-cache: true
27
+ - name: Build docs
28
+ run: bundle exec rake yard
29
+ - name: Run tests
30
+ run: bundle exec rake spec
data/.rspec CHANGED
@@ -1,3 +1,4 @@
1
1
  --format documentation
2
2
  --color
3
3
  --tty
4
+ --fail-fast
data/CHANGELOG.md CHANGED
@@ -20,43 +20,101 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
20
20
  - Fixed - for any bug fixes.
21
21
  - Security - in case of vulnerabilities.
22
22
 
23
- # [Unreleased](https://github.com/puppetlabs/beaker/compare/4.25.0...master)
23
+ # [4.29.0](https://github.com/voxpupuli/beaker/compare/4.28.1...4.29.0) - 19-05-2021
24
24
 
25
- # [4.25.0](https://github.com/puppetlabs/beaker/compare/4.24.0...4.25.0)
25
+ ### Added
26
+
27
+ - Ruby 3.0 support
28
+
29
+ # [4.28.1](https://github.com/voxpupuli/beaker/compare/4.28.0...4.28.1) - 03-10-2021
30
+
31
+ ### Fixed
32
+
33
+ - Updated the ssh_preference example
34
+ - Fixed various spec tests
35
+ - Updated the `which` command to try `type -P` before falling back to `which`
36
+ for systems that may not have `which` installed
37
+
38
+ # [4.28.0](https://github.com/voxpupuli/beaker/compare/4.27.1...4.28.0) - 12-21-2020
39
+
40
+ ### Changed
41
+
42
+ - Arch Linux: Update box before installing packages ([#1688](https://github.com/voxpupuli/beaker/pull/1688))
43
+ - Move the entire workflow to Github Actions ([#1678](https://github.com/voxpupuli/beaker/pull/1678))
44
+ - Allow fakefs dependency in version >= 1 < 2 ([#1687](https://github.com/voxpupuli/beaker/pull/1687))
45
+
46
+ ### Fixed
47
+
48
+ - Fix License text and SPDX code ([#1681](https://github.com/voxpupuli/beaker/pull/1678))
49
+
50
+ # [4.27.1](https://github.com/voxpupuli/beaker/compare/4.27.0...4.27.1) - 09-29-2020
51
+
52
+ ### Changed
53
+
54
+ - Update net-scp requirement from "~> 1.2" to ">= 1.2, < 4.0"
55
+
56
+ ### Fixed
57
+
58
+ - Handle systems going back in time after reboot
59
+ - Enhanced error handling during the reboot sequence
60
+ - Fixed time check logic during reboot
61
+ - Wrap paths around "" on pswindows
62
+
63
+ # [4.27.0](https://github.com/voxpupuli/beaker/compare/4.26.0...4.27.0) - 07-24-2020
64
+
65
+ ### Changed
66
+
67
+ - Updated dependency versions and minimum Ruby version in gemspec to Ruby 2.4, which is the minimum
68
+ version Beaker will run with.
69
+ - Added Travis unit testing and disabled Jenkins integrations in preparation for transferring the
70
+ repo to Vox Pupuli
71
+
72
+
73
+ # [4.26.0](https://github.com/voxpupuli/beaker/compare/4.25.0...4.26.0)
74
+
75
+ ### Changed
76
+
77
+ - Fixed deprecated SSH option handling for `verify_ssh_key` being passed into Net::SSH. #1655
78
+
79
+ ### Removed
80
+
81
+ - Removed deprecated use of `paranoid` flag with Net::SSH. #1655
82
+
83
+ # [4.25.0](https://github.com/voxpupuli/beaker/compare/4.24.0...4.25.0)
26
84
 
27
85
  ### Added
28
86
 
29
- - Execution of Beaker directly through ruby on localhost #1637 ([#1637](https://github.com/puppetlabs/beaker/pull/1637))
87
+ - Execution of Beaker directly through ruby on localhost #1637 ([#1637](https://github.com/voxpupuli/beaker/pull/1637))
30
88
 
31
89
  ### Fixed
32
90
 
33
- - Reliability improvements to the `Host#reboot` method ([#1656](https://github.com/puppetlabs/beaker/pull/1656)) ([#1659](https://github.com/puppetlabs/beaker/pull/1659))
91
+ - Reliability improvements to the `Host#reboot` method ([#1656](https://github.com/voxpupuli/beaker/pull/1656)) ([#1659](https://github.com/voxpupuli/beaker/pull/1659))
34
92
 
35
- # [4.24.0](https://github.com/puppetlabs/beaker/compare/4.23.0...4.24.0) - 2020-06-05
93
+ # [4.24.0](https://github.com/voxpupuli/beaker/compare/4.23.0...4.24.0) - 2020-06-05
36
94
 
37
95
  ### Added
38
96
 
39
- - Host method which ([#1651](https://github.com/puppetlabs/beaker/pull/1651))
97
+ - Host method which ([#1651](https://github.com/voxpupuli/beaker/pull/1651))
40
98
 
41
99
  ### Fixed
42
100
 
43
- - Fixed implementation for cat and file_exists? host methods for PSWindows ([#1654](https://github.com/puppetlabs/beaker/pull/1654))
44
- - Fixed implementation for mkdir_p host method for PSWindows ([#1657](https://github.com/puppetlabs/beaker/pull/1657))
101
+ - Fixed implementation for cat and file_exists? host methods for PSWindows ([#1654](https://github.com/voxpupuli/beaker/pull/1654))
102
+ - Fixed implementation for mkdir_p host method for PSWindows ([#1657](https://github.com/voxpupuli/beaker/pull/1657))
45
103
 
46
- # [4.23.2](https://github.com/puppetlabs/beaker/compare/4.23.1...4.23.2)
104
+ # [4.23.2](https://github.com/voxpupuli/beaker/compare/4.23.1...4.23.2)
47
105
 
48
106
  ### Fixed
49
107
 
50
108
  - Fixed Beaker's behavior when the `strict_host_key_checking` option is
51
109
  provided in the SSH config and Net-SSH > 5 is specified. (#1652)
52
110
 
53
- # [4.23.1](https://github.com/puppetlabs/beaker/compare/4.23.0...4.23.1)
111
+ # [4.23.1](https://github.com/voxpupuli/beaker/compare/4.23.0...4.23.1)
54
112
 
55
113
  ### Changed/Removed
56
114
 
57
115
  - Reversed the quoting changes on Unix from #1644 in favor of only quoting on Windows. (#1650)
58
116
 
59
- # [4.23.0](https://github.com/puppetlabs/beaker/compare/4.22.1...4.23.0)
117
+ # [4.23.0](https://github.com/voxpupuli/beaker/compare/4.22.1...4.23.0)
60
118
 
61
119
  ### Added
62
120
 
@@ -73,137 +131,137 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
73
131
  - Use Base64 UTF-16LE encoding for commands (#1626)
74
132
  - Fix `tmpdir` method for Powershell on Windows (#1645)
75
133
 
76
- # [4.22.1](https://github.com/puppetlabs/beaker/compare/4.22.0...4.22.1)
134
+ # [4.22.1](https://github.com/voxpupuli/beaker/compare/4.22.0...4.22.1)
77
135
 
78
136
  ### Fixed
79
137
 
80
- - Removed single quotes around paths for file operation commands on `Host` https://github.com/puppetlabs/beaker/pull/1642
138
+ - Removed single quotes around paths for file operation commands on `Host` https://github.com/voxpupuli/beaker/pull/1642
81
139
 
82
- # [4.22.0](https://github.com/puppetlabs/beaker/compare/4.21.0...4.22.0) - 2020-05-08
140
+ # [4.22.0](https://github.com/voxpupuli/beaker/compare/4.21.0...4.22.0) - 2020-05-08
83
141
 
84
142
  ### Added
85
143
 
86
- - Host methods chmod and modified_at. ([#1638](https://github.com/puppetlabs/beaker/pull/1638))
144
+ - Host methods chmod and modified_at. ([#1638](https://github.com/voxpupuli/beaker/pull/1638))
87
145
 
88
146
  ### Removed
89
147
 
90
- - Support for EL-5. ([#1639](https://github.com/puppetlabs/beaker/pull/1639)) ([#1640](https://github.com/puppetlabs/beaker/pull/1640))
148
+ - Support for EL-5. ([#1639](https://github.com/voxpupuli/beaker/pull/1639)) ([#1640](https://github.com/voxpupuli/beaker/pull/1640))
91
149
 
92
- # [4.21.0](https://github.com/puppetlabs/beaker/compare/4.20.0...4.21.0) - 2020-03-31
150
+ # [4.21.0](https://github.com/voxpupuli/beaker/compare/4.20.0...4.21.0) - 2020-03-31
93
151
 
94
152
  ### Added
95
153
 
96
- - Empty file `/etc/environment` while preparing ssh environment on Ubuntu 20.04 to keep the current behavior and consider all variables from `~/.ssh/environment`. ([#1635](https://github.com/puppetlabs/beaker/pull/1635))
154
+ - Empty file `/etc/environment` while preparing ssh environment on Ubuntu 20.04 to keep the current behavior and consider all variables from `~/.ssh/environment`. ([#1635](https://github.com/voxpupuli/beaker/pull/1635))
97
155
 
98
- # [4.20.0](https://github.com/puppetlabs/beaker/compare/4.19.0...4.20.0) - 2020-03-19
156
+ # [4.20.0](https://github.com/voxpupuli/beaker/compare/4.19.0...4.20.0) - 2020-03-19
99
157
 
100
158
  ### Added
101
159
 
102
- - Vagrant RSync/SSH settings will now be picked up if set via beaker-vagrant ([#1634](https://github.com/puppetlabs/beaker/pull/1634) and [beaker-vagrant#28](https://github.com/puppetlabs/beaker-vagrant/pull/28))
160
+ - Vagrant RSync/SSH settings will now be picked up if set via beaker-vagrant ([#1634](https://github.com/voxpupuli/beaker/pull/1634) and [beaker-vagrant#28](https://github.com/voxpupuli/beaker-vagrant/pull/28))
103
161
 
104
- # [4.19.0](https://github.com/puppetlabs/beaker/compare/4.18.0...4.19.0) - 2020-03-13
162
+ # [4.19.0](https://github.com/voxpupuli/beaker/compare/4.18.0...4.19.0) - 2020-03-13
105
163
 
106
164
  ### Added
107
165
 
108
- - `apt-transport-https` package will now be installed on Debian-based systems as part of the prebuilt process. ([#1631](https://github.com/puppetlabs/beaker/pull/1631))
109
- - Ubuntu 19.10 and 20.04 code name handling. ([#1632](https://github.com/puppetlabs/beaker/pull/1632))
166
+ - `apt-transport-https` package will now be installed on Debian-based systems as part of the prebuilt process. ([#1631](https://github.com/voxpupuli/beaker/pull/1631))
167
+ - Ubuntu 19.10 and 20.04 code name handling. ([#1632](https://github.com/voxpupuli/beaker/pull/1632))
110
168
 
111
169
  ### Changed
112
170
 
113
- - The `wait_time`, `max_connection_tries`, and `uptime_retries` parameters have been added to `Host::Unix::Exec.reboot`. This allows for more fine-grained control over how the reboot is handled. ([#1625](https://github.com/puppetlabs/beaker/pull/1625))
171
+ - The `wait_time`, `max_connection_tries`, and `uptime_retries` parameters have been added to `Host::Unix::Exec.reboot`. This allows for more fine-grained control over how the reboot is handled. ([#1625](https://github.com/voxpupuli/beaker/pull/1625))
114
172
 
115
173
  ### Fixed
116
174
 
117
- - In `hosts.yml`, `packaging_platform` will now default to `platform` if unspecified. This fixed a bug where beaker would fail unless you specified both values in your config, even if both values were identical. ([#1628](https://github.com/puppetlabs/beaker/pull/1628))
118
- - `version_is_less` will now correctly handle builds and RCs when used in version numbers. ([#1630](https://github.com/puppetlabs/beaker/pull/1630))
175
+ - In `hosts.yml`, `packaging_platform` will now default to `platform` if unspecified. This fixed a bug where beaker would fail unless you specified both values in your config, even if both values were identical. ([#1628](https://github.com/voxpupuli/beaker/pull/1628))
176
+ - `version_is_less` will now correctly handle builds and RCs when used in version numbers. ([#1630](https://github.com/voxpupuli/beaker/pull/1630))
119
177
 
120
178
  ### Security
121
179
  - Update `rake` to `~> 12.0`, which currently resolves to `12.3.3` to remediate [CVE-2020-8130](https://nvd.nist.gov/vuln/detail/CVE-2020-8130)
122
180
 
123
- # [4.18.0](https://github.com/puppetlabs/beaker/compare/4.17.0...4.18.0) - 2020-02-26
181
+ # [4.18.0](https://github.com/voxpupuli/beaker/compare/4.17.0...4.18.0) - 2020-02-26
124
182
  ### Changed
125
183
  - Thor dependency bumped to >=1.0.1 <2.0
126
184
 
127
- # [4.17.0](https://github.com/puppetlabs/beaker/compare/4.16.0...4.17.0) - 2020-02-20
185
+ # [4.17.0](https://github.com/voxpupuli/beaker/compare/4.16.0...4.17.0) - 2020-02-20
128
186
 
129
187
  ### Added
130
188
 
131
- - Windows support in `host_helpers` ([#1622](https://github.com/puppetlabs/beaker/pull/1622))
132
- - EL 8 support ([#1623](https://github.com/puppetlabs/beaker/pull/1623))
189
+ - Windows support in `host_helpers` ([#1622](https://github.com/voxpupuli/beaker/pull/1622))
190
+ - EL 8 support ([#1623](https://github.com/voxpupuli/beaker/pull/1623))
133
191
 
134
- # [4.16.0](https://github.com/puppetlabs/beaker/compare/4.15.0...4.16.0) - 2020-02-05
192
+ # [4.16.0](https://github.com/voxpupuli/beaker/compare/4.15.0...4.16.0) - 2020-02-05
135
193
 
136
194
  ### Added
137
195
 
138
- - release section to README ([#1618](https://github.com/puppetlabs/beaker/pull/1618))
139
- - false return if `link_exists?` raises an error ([#1613](https://github.com/puppetlabs/beaker/pull/1613))
196
+ - release section to README ([#1618](https://github.com/voxpupuli/beaker/pull/1618))
197
+ - false return if `link_exists?` raises an error ([#1613](https://github.com/voxpupuli/beaker/pull/1613))
140
198
 
141
199
  ### Fixed
142
200
 
143
- - `host.reboot` uses `uptime` rather than `ping` to check host status ([#1619](https://github.com/puppetlabs/beaker/pull/1619))
201
+ - `host.reboot` uses `uptime` rather than `ping` to check host status ([#1619](https://github.com/voxpupuli/beaker/pull/1619))
144
202
 
145
- # [4.15.0](https://github.com/puppetlabs/beaker/compare/4.14.1...4.15.0) - 2020-01-30
203
+ # [4.15.0](https://github.com/voxpupuli/beaker/compare/4.14.1...4.15.0) - 2020-01-30
146
204
 
147
205
  ### Added
148
206
 
149
207
  - macOS 10.15 Catalina support (BKR-1621)
150
208
 
151
- # [4.14.1](https://github.com/puppetlabs/beaker/compare/4.14.0...4.14.1) - 2019-11-18
209
+ # [4.14.1](https://github.com/voxpupuli/beaker/compare/4.14.0...4.14.1) - 2019-11-18
152
210
 
153
211
  ### Fixed
154
212
 
155
213
  - `fips_mode?` detection (#1607)
156
214
 
157
- # [4.14.0](https://github.com/puppetlabs/beaker/compare/4.13.1...4.14.0) - 2019-11-12
215
+ # [4.14.0](https://github.com/voxpupuli/beaker/compare/4.13.1...4.14.0) - 2019-11-12
158
216
 
159
217
  ### Added
160
218
 
161
219
  - Pre-built steps output stacktraces when aborted (QENG-7466)
162
220
 
163
- # [4.13.1](https://github.com/puppetlabs/beaker/compare/4.13.0...4.13.1) - 2019-10-07
221
+ # [4.13.1](https://github.com/voxpupuli/beaker/compare/4.13.0...4.13.1) - 2019-10-07
164
222
 
165
223
  ### Fixed
166
224
 
167
225
  - Use correct platform variant for FIPS repo configs download (BKR-1616)
168
226
 
169
- # [4.13.0](https://github.com/puppetlabs/beaker/compare/4.12.0...4.13.0) - 2019-09-16
227
+ # [4.13.0](https://github.com/voxpupuli/beaker/compare/4.12.0...4.13.0) - 2019-09-16
170
228
 
171
229
  ### Added
172
230
 
173
231
  - Host `enable_remote_rsyslog` method (QENG-7466)
174
232
 
175
- # [4.12.0](https://github.com/puppetlabs/beaker/compare/4.11.1...4.12.0) - 2019-08-14
233
+ # [4.12.0](https://github.com/voxpupuli/beaker/compare/4.11.1...4.12.0) - 2019-08-14
176
234
 
177
235
  ### Added
178
236
 
179
237
  - redhatfips as a recognized platform (PE-27037)
180
238
 
181
- # [4.11.1](https://github.com/puppetlabs/beaker/compare/4.11.0...4.11.1) - 2019-08-13
239
+ # [4.11.1](https://github.com/voxpupuli/beaker/compare/4.11.0...4.11.1) - 2019-08-13
182
240
 
183
241
  ### Changed
184
242
 
185
243
  - `host.down?`'s wait from a fibonacci to a constant wait (BKR-1595)
186
244
 
187
- # [4.11.0](https://github.com/puppetlabs/beaker/compare/4.10.0...4.11.0) - 2019-07-22
245
+ # [4.11.0](https://github.com/voxpupuli/beaker/compare/4.10.0...4.11.0) - 2019-07-22
188
246
 
189
247
  ### Added
190
248
 
191
249
  - FIPS detection host method (BKR-1604)
192
250
  - PassTest exception catching for standard reporting
193
251
 
194
- # [4.10.0](https://github.com/puppetlabs/beaker/compare/4.9.0...4.10.0) - 2019-07-01
252
+ # [4.10.0](https://github.com/voxpupuli/beaker/compare/4.9.0...4.10.0) - 2019-07-01
195
253
 
196
254
  ### Added
197
255
 
198
256
  - Down & Up Checking to Host#reboot (BKR-1595)
199
257
 
200
- # [4.9.0](https://github.com/puppetlabs/beaker/compare/4.8.0...4.9.0) - 2019-06-19
258
+ # [4.9.0](https://github.com/voxpupuli/beaker/compare/4.8.0...4.9.0) - 2019-06-19
201
259
 
202
260
  ### Changed
203
261
 
204
262
  - SSH Connection failure backoff shortened (BKR-1599)
205
263
 
206
- # [4.8.0](https://github.com/puppetlabs/beaker/compare/4.7.0...4.8.0) - 2019-04-17
264
+ # [4.8.0](https://github.com/voxpupuli/beaker/compare/4.7.0...4.8.0) - 2019-04-17
207
265
 
208
266
  ### Added
209
267
 
@@ -214,7 +272,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
214
272
 
215
273
  - Remove "repos-pe" prefix for repo filenames
216
274
 
217
- # [4.7.0](https://github.com/puppetlabs/beaker/compare/4.6.0...4.7.0) - 2019-04-17
275
+ # [4.7.0](https://github.com/voxpupuli/beaker/compare/4.6.0...4.7.0) - 2019-04-17
218
276
 
219
277
  ### Added
220
278
 
@@ -228,19 +286,19 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
228
286
  - Change behavior of ruby versioning to accept job-parameter RUBY\_VER
229
287
  - Change subcommand pre-suite to install ruby 2.3.1
230
288
 
231
- # [4.6.0](https://github.com/puppetlabs/beaker/compare/4.5.0...4.6.0) - 2019.03.07
289
+ # [4.6.0](https://github.com/voxpupuli/beaker/compare/4.5.0...4.6.0) - 2019.03.07
232
290
 
233
291
  ### Added
234
292
 
235
293
  - Codename for Debian 10 'Buster'
236
294
 
237
- # [4.5.0](https://github.com/puppetlabs/beaker/compare/4.4.0...4.5.0) - 2019.01.23
295
+ # [4.5.0](https://github.com/voxpupuli/beaker/compare/4.4.0...4.5.0) - 2019.01.23
238
296
 
239
297
  ### Changed
240
298
 
241
299
  - Do not mirror profile.d on Debian (BKR-1559)
242
300
 
243
- # [4.4.0](https://github.com/puppetlabs/beaker/compare/4.3.0...4.4.0) - 2019.01.09
301
+ # [4.4.0](https://github.com/voxpupuli/beaker/compare/4.3.0...4.4.0) - 2019.01.09
244
302
 
245
303
  ### Added
246
304
 
@@ -252,14 +310,14 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
252
310
 
253
311
  - Replace ntpdate with crony on RHEL-8 (BKR-1555)
254
312
 
255
- # [4.3.0](https://github.com/puppetlabs/beaker/compare/4.2.0...4.3.0) - 2018.12.12
313
+ # [4.3.0](https://github.com/voxpupuli/beaker/compare/4.2.0...4.3.0) - 2018.12.12
256
314
 
257
315
  ### Added
258
316
 
259
317
  - Use zypper to install RPM packages on SLES (PA-2336)
260
318
  - Add only-fails capability to beaker (BKR-1523)
261
319
 
262
- # [4.2.0](https://github.com/puppetlabs/beaker/compare/4.1.0...4.2.0) - 2018.11.28
320
+ # [4.2.0](https://github.com/voxpupuli/beaker/compare/4.1.0...4.2.0) - 2018.11.28
263
321
 
264
322
  ### Added
265
323
 
@@ -276,7 +334,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
276
334
  - Recursively remove unpersisted subcommand options (BKR-1549)
277
335
 
278
336
 
279
- # [4.1.0](https://github.com/puppetlabs/beaker/compare/4.0.0...4.1.0) - 2018.10.25
337
+ # [4.1.0](https://github.com/voxpupuli/beaker/compare/4.0.0...4.1.0) - 2018.10.25
280
338
 
281
339
  ### Added
282
340
 
@@ -287,7 +345,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
287
345
  - Added additional tests for EL-like systems and added 'redhat' support where necessary
288
346
  - Test if puppet module is installed in '/' and avoid stripping of path seperator
289
347
 
290
- # [4.0.0](https://github.com/puppetlabs/beaker/compare/3.37.0...4.0.0) - 2018-08-06
348
+ # [4.0.0](https://github.com/voxpupuli/beaker/compare/3.37.0...4.0.0) - 2018-08-06
291
349
 
292
350
  ### Fixed
293
351
 
@@ -313,7 +371,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
313
371
 
314
372
  - `PEDefaults` has been moved to `beaker-pe`
315
373
 
316
- # [3.37.0](https://github.com/puppetlabs/beaker/compare/3.36.0...3.37.0) - 2018-07-11
374
+ # [3.37.0](https://github.com/voxpupuli/beaker/compare/3.36.0...3.37.0) - 2018-07-11
317
375
 
318
376
  ### Fixed
319
377
 
@@ -328,7 +386,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
328
386
  - `beaker-pe` is no longer automagically included. See [the upgrade guide](/docs/how_to/upgrade_from_3_to_4.md}) for more info
329
387
  - `beaker-puppet` is no longer required as a dependency
330
388
 
331
- # [3.36.0](https://github.com/puppetlabs/beaker/compare/3.35.0...3.36.0) - 2018-06-18
389
+ # [3.36.0](https://github.com/voxpupuli/beaker/compare/3.35.0...3.36.0) - 2018-06-18
332
390
 
333
391
  ### Fixed
334
392
 
@@ -342,7 +400,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
342
400
  - Glossary for project jargon in [`docs/concepts/glossary.md`](docs/concepts/glossary.md)
343
401
  - Use AIX 6.1 packages everywhere for puppet6
344
402
 
345
- # [3.35.0](https://github.com/puppetlabs/beaker/compare/3.34.0...3.35.0) - 2018-05-16
403
+ # [3.35.0](https://github.com/voxpupuli/beaker/compare/3.34.0...3.35.0) - 2018-05-16
346
404
 
347
405
  ### Fixed
348
406
 
@@ -353,7 +411,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
353
411
 
354
412
  - Added optional ability to use ERB in nodeset YAML files
355
413
 
356
- # [3.34.0](https://github.com/puppetlabs/beaker/compare/3.33.0...3.34.0) - 2018-03-26
414
+ # [3.34.0](https://github.com/voxpupuli/beaker/compare/3.33.0...3.34.0) - 2018-03-26
357
415
 
358
416
  ### Fixed
359
417
 
@@ -363,13 +421,13 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
363
421
 
364
422
  - Codename for Ubuntu 18.04 'Bionic'
365
423
 
366
- # [3.33.0](https://github.com/puppetlabs/beaker/compare/3.32.0...3.33.0) - 2018-03-07
424
+ # [3.33.0](https://github.com/voxpupuli/beaker/compare/3.32.0...3.33.0) - 2018-03-07
367
425
 
368
426
  ### Changed
369
427
 
370
428
  - Use relative paths for beaker exec
371
429
 
372
- # [3.32.0](https://github.com/puppetlabs/beaker/compare/3.31.0...3.32.0) - 2018-02-22
430
+ # [3.32.0](https://github.com/voxpupuli/beaker/compare/3.31.0...3.32.0) - 2018-02-22
373
431
 
374
432
  ### Changed
375
433
 
@@ -381,7 +439,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
381
439
 
382
440
  - Added missing beaker options for subcommand passthorugh
383
441
 
384
- # [3.31.0](https://github.com/puppetlabs/beaker/compare/3.30.0...3.31.0) - 2018-01-22
442
+ # [3.31.0](https://github.com/voxpupuli/beaker/compare/3.30.0...3.31.0) - 2018-01-22
385
443
 
386
444
  ### Changed
387
445
 
@@ -391,7 +449,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
391
449
 
392
450
  - Add macOS 10.13 support
393
451
 
394
- # [3.30.0](https://github.com/puppetlabs/beaker/compare/3.29.0...3.30.0) - 2018-01-10
452
+ # [3.30.0](https://github.com/voxpupuli/beaker/compare/3.29.0...3.30.0) - 2018-01-10
395
453
 
396
454
  ### Changed
397
455
 
@@ -405,30 +463,30 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
405
463
 
406
464
  - Load project options from .beaker.yml
407
465
 
408
- # [3.29.0](https://github.com/puppetlabs/beaker/compare/3.28.0...3.29.0) - 2017-11-16
466
+ # [3.29.0](https://github.com/voxpupuli/beaker/compare/3.28.0...3.29.0) - 2017-11-16
409
467
 
410
468
  ### Added
411
469
 
412
470
  - Adding default to read fog credentials
413
471
 
414
- # [3.28.0](https://github.com/puppetlabs/beaker/compare/3.27.0...3.28.0) - 2017-11-01
472
+ # [3.28.0](https://github.com/voxpupuli/beaker/compare/3.27.0...3.28.0) - 2017-11-01
415
473
 
416
474
  ### Fixed
417
475
 
418
476
  - corruption of `opts[:ignore]` when using `rsync`
419
477
 
420
- # [3.27.0](https://github.com/puppetlabs/beaker/compare/3.26.0...3.27.0) - 2017-10-19
478
+ # [3.27.0](https://github.com/voxpupuli/beaker/compare/3.26.0...3.27.0) - 2017-10-19
421
479
 
422
480
  ### Added
423
481
 
424
482
  - support amazon as a platform
425
483
  - add codenames for MacOS 10.13 and Ubuntu Artful
426
484
 
427
- # [3.26.0](https://github.com/puppetlabs/beaker/compare/3.25.0...3.26.0) - 2017-10-05
485
+ # [3.26.0](https://github.com/voxpupuli/beaker/compare/3.25.0...3.26.0) - 2017-10-05
428
486
 
429
487
  ### Added
430
488
 
431
489
  - concept of `manual_test` and `manual_step`
432
490
 
433
- # [3.25.0](https://github.com/puppetlabs/beaker/compare/3.24.0...3.25.0) - 2017-09-26
491
+ # [3.25.0](https://github.com/voxpupuli/beaker/compare/3.24.0...3.25.0) - 2017-09-26
434
492