beaker 4.28.0 → 4.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '042089398937fe9ae306b0fa0e4f86f4ff4a1fb1c73bc986beb1a75f11d71d38'
4
- data.tar.gz: 6d17864b513e99ecb311534a582a058e7ebcab9f8d525df29f5ec722210870ed
3
+ metadata.gz: 0f1cace175ace50c7737ff2962cd6f7bddb7037cb7e9fe8ecc638d4acdc088a7
4
+ data.tar.gz: 81d573163a08a3b7a2d0b63039a2e41202c70fc9c3909247b8f897b2ed84016b
5
5
  SHA512:
6
- metadata.gz: ccdb8c321acd3dda9a015916f0c576d77b42c9a546cafe08f8a8b37e8e0fac59e593530d6eb2d631527de28a4c685b8c715f1be13024cceee42f075fd4d867e5
7
- data.tar.gz: 01676fb8b0461b1dcfc363bbabf405e4af1e93449f025f6f3dd3b70103076862ccfc3e688e1b2fe1ebc03842f5734e5a6c802caca05028ddb0d3b43ca5e6ef87
6
+ metadata.gz: 6a8506c9f3f460f1e64cb35ea4abd992c284b64b3d9f28c914186e8a8c35d59aa30ff0c15f8d7069b8b789c9b69b47c8234045b2eb5aad6cacc53b455dc10ae4
7
+ data.tar.gz: 22edf3d35e3d9c5c38b3eb2dc925e73dd355ceec5e3a60614190fc66f2010776f05dafd0b6d7fff792d17b0c3b8c2e4768d6baba1213457f195c426f9eeebf6f
@@ -7,16 +7,25 @@ on:
7
7
  jobs:
8
8
  release:
9
9
  runs-on: ubuntu-latest
10
- if: github.repository == 'voxpupuli/beaker'
10
+ if: github.repository_owner == 'voxpupuli'
11
11
  steps:
12
12
  - uses: actions/checkout@v2
13
- - name: Install Ruby 2.7
13
+ - name: Install Ruby 3.0
14
14
  uses: ruby/setup-ruby@v1
15
15
  with:
16
- ruby-version: '2.7'
16
+ ruby-version: '3.0'
17
+ env:
18
+ BUNDLE_WITHOUT: release
17
19
  - name: Build gem
18
20
  run: gem build *.gemspec
19
- - name: Publish gem
21
+ - name: Publish gem to rubygems.org
20
22
  run: gem push *.gem
21
23
  env:
22
24
  GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
25
+ - name: Setup GitHub packages access
26
+ run: |
27
+ mkdir -p ~/.gem
28
+ echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
29
+ chmod 0600 ~/.gem/credentials
30
+ - name: Publish gem to GitHub packages
31
+ run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
@@ -4,18 +4,24 @@ on:
4
4
  - pull_request
5
5
  - push
6
6
 
7
+ env:
8
+ BUNDLE_WITHOUT: release
9
+
7
10
  jobs:
8
11
  test:
9
12
  runs-on: ubuntu-latest
10
13
  strategy:
11
14
  fail-fast: false
12
15
  matrix:
13
- ruby:
14
- - "2.4"
15
- - "2.5"
16
- - "2.6"
17
- - "2.7"
18
- name: Ruby ${{ matrix.ruby }}
16
+ include:
17
+ - ruby: "2.4"
18
+ - ruby: "2.5"
19
+ - ruby: "2.6"
20
+ - ruby: "2.7"
21
+ - ruby: "3.0"
22
+ coverage: "yes"
23
+ env:
24
+ COVERAGE: ${{ matrix.coverage }}
19
25
  steps:
20
26
  - uses: actions/checkout@v2
21
27
  - name: Install Ruby ${{ matrix.ruby }}
@@ -23,7 +29,5 @@ jobs:
23
29
  with:
24
30
  ruby-version: ${{ matrix.ruby }}
25
31
  bundler-cache: true
26
- - name: Build docs
27
- run: bundle exec rake yard
28
32
  - name: Run tests
29
33
  run: bundle exec rake spec
data/CHANGELOG.md CHANGED
@@ -1,28 +1,43 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ ## [4.30.0](https://github.com/voxpupuli/beaker/compare/4.29.1...4.30.0) (2021-07-21)
4
4
 
5
- The format is based on
6
- [Keep a Changelog](http://keepachangelog.com)
7
- & makes a strong effort to adhere to
8
- [Semantic Versioning](http://semver.org).
5
+ ### Fixed
6
+
7
+ - Fix Platform version string comparison for install_local_package ([#1712](https://github.com/voxpupuli/beaker/pull/1712))
8
+
9
+ ### Added
10
+
11
+ - Add initial opensuse support ([#1697](https://github.com/voxpupuli/beaker/pull/1697))
12
+ - Implement codecov reporting ([#1710](https://github.com/voxpupuli/beaker/pull/1710))
13
+
14
+ ### Changed
15
+
16
+ - beaker-abs: allow latest releases ([#1706](https://github.com/voxpupuli/beaker/pull/1706))
17
+ - Align release setup with other gems ([#1707](https://github.com/voxpupuli/beaker/pull/1707))
18
+
19
+ ## [4.29.1](https://github.com/voxpupuli/beaker/tree/4.29.1) (2021-05-26)
9
20
 
10
- Tracking in this Changelog began for this project in version 3.25.0.
11
- If you're looking for changes from before this, refer to the project's
12
- git logs & PR history.
21
+ ### Fixed
22
+
23
+ - Fixed `vagrant*` matching in the unix `get_ip()`
13
24
 
14
- The headers used in [Keep a Changelog](http://keepachangelog.com) are:
25
+ # [4.29.0](https://github.com/voxpupuli/beaker/compare/4.28.1...4.29.0) - 19-05-2021
15
26
 
16
- - Added - for new features.
17
- - Changed - for changes in existing functionality.
18
- - Deprecated - for soon-to-be removed features.
19
- - Removed - for now removed features.
20
- - Fixed - for any bug fixes.
21
- - Security - in case of vulnerabilities.
27
+ ### Added
22
28
 
23
- # [Unreleased](https://github.com/puppetlabs/beaker/compare/4.28.0...master)
29
+ - Ruby 3.0 support
24
30
 
25
- # [4.28.0](https://github.com/puppetlabs/beaker/compare/4.27.1...4.28.0) - 12-21-2020
31
+ # [4.28.1](https://github.com/voxpupuli/beaker/compare/4.28.0...4.28.1) - 03-10-2021
32
+
33
+ ### Fixed
34
+
35
+ - Updated the ssh_preference example
36
+ - Fixed various spec tests
37
+ - Updated the `which` command to try `type -P` before falling back to `which`
38
+ for systems that may not have `which` installed
39
+
40
+ # [4.28.0](https://github.com/voxpupuli/beaker/compare/4.27.1...4.28.0) - 12-21-2020
26
41
 
27
42
  ### Changed
28
43
 
@@ -34,7 +49,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
34
49
 
35
50
  - Fix License text and SPDX code ([#1681](https://github.com/voxpupuli/beaker/pull/1678))
36
51
 
37
- # [4.27.1](https://github.com/puppetlabs/beaker/compare/4.27.0...4.27.1) - 09-29-2020
52
+ # [4.27.1](https://github.com/voxpupuli/beaker/compare/4.27.0...4.27.1) - 09-29-2020
38
53
 
39
54
  ### Changed
40
55
 
@@ -47,7 +62,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
47
62
  - Fixed time check logic during reboot
48
63
  - Wrap paths around "" on pswindows
49
64
 
50
- # [4.27.0](https://github.com/puppetlabs/beaker/compare/4.26.0...4.27.0) - 07-24-2020
65
+ # [4.27.0](https://github.com/voxpupuli/beaker/compare/4.26.0...4.27.0) - 07-24-2020
51
66
 
52
67
  ### Changed
53
68
 
@@ -57,7 +72,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
57
72
  repo to Vox Pupuli
58
73
 
59
74
 
60
- # [4.26.0](https://github.com/puppetlabs/beaker/compare/4.25.0...4.26.0)
75
+ # [4.26.0](https://github.com/voxpupuli/beaker/compare/4.25.0...4.26.0)
61
76
 
62
77
  ### Changed
63
78
 
@@ -67,41 +82,41 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
67
82
 
68
83
  - Removed deprecated use of `paranoid` flag with Net::SSH. #1655
69
84
 
70
- # [4.25.0](https://github.com/puppetlabs/beaker/compare/4.24.0...4.25.0)
85
+ # [4.25.0](https://github.com/voxpupuli/beaker/compare/4.24.0...4.25.0)
71
86
 
72
87
  ### Added
73
88
 
74
- - Execution of Beaker directly through ruby on localhost #1637 ([#1637](https://github.com/puppetlabs/beaker/pull/1637))
89
+ - Execution of Beaker directly through ruby on localhost #1637 ([#1637](https://github.com/voxpupuli/beaker/pull/1637))
75
90
 
76
91
  ### Fixed
77
92
 
78
- - Reliability improvements to the `Host#reboot` method ([#1656](https://github.com/puppetlabs/beaker/pull/1656)) ([#1659](https://github.com/puppetlabs/beaker/pull/1659))
93
+ - Reliability improvements to the `Host#reboot` method ([#1656](https://github.com/voxpupuli/beaker/pull/1656)) ([#1659](https://github.com/voxpupuli/beaker/pull/1659))
79
94
 
80
- # [4.24.0](https://github.com/puppetlabs/beaker/compare/4.23.0...4.24.0) - 2020-06-05
95
+ # [4.24.0](https://github.com/voxpupuli/beaker/compare/4.23.0...4.24.0) - 2020-06-05
81
96
 
82
97
  ### Added
83
98
 
84
- - Host method which ([#1651](https://github.com/puppetlabs/beaker/pull/1651))
99
+ - Host method which ([#1651](https://github.com/voxpupuli/beaker/pull/1651))
85
100
 
86
101
  ### Fixed
87
102
 
88
- - Fixed implementation for cat and file_exists? host methods for PSWindows ([#1654](https://github.com/puppetlabs/beaker/pull/1654))
89
- - Fixed implementation for mkdir_p host method for PSWindows ([#1657](https://github.com/puppetlabs/beaker/pull/1657))
103
+ - Fixed implementation for cat and file_exists? host methods for PSWindows ([#1654](https://github.com/voxpupuli/beaker/pull/1654))
104
+ - Fixed implementation for mkdir_p host method for PSWindows ([#1657](https://github.com/voxpupuli/beaker/pull/1657))
90
105
 
91
- # [4.23.2](https://github.com/puppetlabs/beaker/compare/4.23.1...4.23.2)
106
+ # [4.23.2](https://github.com/voxpupuli/beaker/compare/4.23.1...4.23.2)
92
107
 
93
108
  ### Fixed
94
109
 
95
110
  - Fixed Beaker's behavior when the `strict_host_key_checking` option is
96
111
  provided in the SSH config and Net-SSH > 5 is specified. (#1652)
97
112
 
98
- # [4.23.1](https://github.com/puppetlabs/beaker/compare/4.23.0...4.23.1)
113
+ # [4.23.1](https://github.com/voxpupuli/beaker/compare/4.23.0...4.23.1)
99
114
 
100
115
  ### Changed/Removed
101
116
 
102
117
  - Reversed the quoting changes on Unix from #1644 in favor of only quoting on Windows. (#1650)
103
118
 
104
- # [4.23.0](https://github.com/puppetlabs/beaker/compare/4.22.1...4.23.0)
119
+ # [4.23.0](https://github.com/voxpupuli/beaker/compare/4.22.1...4.23.0)
105
120
 
106
121
  ### Added
107
122
 
@@ -118,137 +133,137 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
118
133
  - Use Base64 UTF-16LE encoding for commands (#1626)
119
134
  - Fix `tmpdir` method for Powershell on Windows (#1645)
120
135
 
121
- # [4.22.1](https://github.com/puppetlabs/beaker/compare/4.22.0...4.22.1)
136
+ # [4.22.1](https://github.com/voxpupuli/beaker/compare/4.22.0...4.22.1)
122
137
 
123
138
  ### Fixed
124
139
 
125
- - Removed single quotes around paths for file operation commands on `Host` https://github.com/puppetlabs/beaker/pull/1642
140
+ - Removed single quotes around paths for file operation commands on `Host` https://github.com/voxpupuli/beaker/pull/1642
126
141
 
127
- # [4.22.0](https://github.com/puppetlabs/beaker/compare/4.21.0...4.22.0) - 2020-05-08
142
+ # [4.22.0](https://github.com/voxpupuli/beaker/compare/4.21.0...4.22.0) - 2020-05-08
128
143
 
129
144
  ### Added
130
145
 
131
- - Host methods chmod and modified_at. ([#1638](https://github.com/puppetlabs/beaker/pull/1638))
146
+ - Host methods chmod and modified_at. ([#1638](https://github.com/voxpupuli/beaker/pull/1638))
132
147
 
133
148
  ### Removed
134
149
 
135
- - Support for EL-5. ([#1639](https://github.com/puppetlabs/beaker/pull/1639)) ([#1640](https://github.com/puppetlabs/beaker/pull/1640))
150
+ - Support for EL-5. ([#1639](https://github.com/voxpupuli/beaker/pull/1639)) ([#1640](https://github.com/voxpupuli/beaker/pull/1640))
136
151
 
137
- # [4.21.0](https://github.com/puppetlabs/beaker/compare/4.20.0...4.21.0) - 2020-03-31
152
+ # [4.21.0](https://github.com/voxpupuli/beaker/compare/4.20.0...4.21.0) - 2020-03-31
138
153
 
139
154
  ### Added
140
155
 
141
- - 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))
156
+ - 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))
142
157
 
143
- # [4.20.0](https://github.com/puppetlabs/beaker/compare/4.19.0...4.20.0) - 2020-03-19
158
+ # [4.20.0](https://github.com/voxpupuli/beaker/compare/4.19.0...4.20.0) - 2020-03-19
144
159
 
145
160
  ### Added
146
161
 
147
- - 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))
162
+ - 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))
148
163
 
149
- # [4.19.0](https://github.com/puppetlabs/beaker/compare/4.18.0...4.19.0) - 2020-03-13
164
+ # [4.19.0](https://github.com/voxpupuli/beaker/compare/4.18.0...4.19.0) - 2020-03-13
150
165
 
151
166
  ### Added
152
167
 
153
- - `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))
154
- - Ubuntu 19.10 and 20.04 code name handling. ([#1632](https://github.com/puppetlabs/beaker/pull/1632))
168
+ - `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))
169
+ - Ubuntu 19.10 and 20.04 code name handling. ([#1632](https://github.com/voxpupuli/beaker/pull/1632))
155
170
 
156
171
  ### Changed
157
172
 
158
- - 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))
173
+ - 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))
159
174
 
160
175
  ### Fixed
161
176
 
162
- - 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))
163
- - `version_is_less` will now correctly handle builds and RCs when used in version numbers. ([#1630](https://github.com/puppetlabs/beaker/pull/1630))
177
+ - 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))
178
+ - `version_is_less` will now correctly handle builds and RCs when used in version numbers. ([#1630](https://github.com/voxpupuli/beaker/pull/1630))
164
179
 
165
180
  ### Security
166
181
  - 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)
167
182
 
168
- # [4.18.0](https://github.com/puppetlabs/beaker/compare/4.17.0...4.18.0) - 2020-02-26
183
+ # [4.18.0](https://github.com/voxpupuli/beaker/compare/4.17.0...4.18.0) - 2020-02-26
169
184
  ### Changed
170
185
  - Thor dependency bumped to >=1.0.1 <2.0
171
186
 
172
- # [4.17.0](https://github.com/puppetlabs/beaker/compare/4.16.0...4.17.0) - 2020-02-20
187
+ # [4.17.0](https://github.com/voxpupuli/beaker/compare/4.16.0...4.17.0) - 2020-02-20
173
188
 
174
189
  ### Added
175
190
 
176
- - Windows support in `host_helpers` ([#1622](https://github.com/puppetlabs/beaker/pull/1622))
177
- - EL 8 support ([#1623](https://github.com/puppetlabs/beaker/pull/1623))
191
+ - Windows support in `host_helpers` ([#1622](https://github.com/voxpupuli/beaker/pull/1622))
192
+ - EL 8 support ([#1623](https://github.com/voxpupuli/beaker/pull/1623))
178
193
 
179
- # [4.16.0](https://github.com/puppetlabs/beaker/compare/4.15.0...4.16.0) - 2020-02-05
194
+ # [4.16.0](https://github.com/voxpupuli/beaker/compare/4.15.0...4.16.0) - 2020-02-05
180
195
 
181
196
  ### Added
182
197
 
183
- - release section to README ([#1618](https://github.com/puppetlabs/beaker/pull/1618))
184
- - false return if `link_exists?` raises an error ([#1613](https://github.com/puppetlabs/beaker/pull/1613))
198
+ - release section to README ([#1618](https://github.com/voxpupuli/beaker/pull/1618))
199
+ - false return if `link_exists?` raises an error ([#1613](https://github.com/voxpupuli/beaker/pull/1613))
185
200
 
186
201
  ### Fixed
187
202
 
188
- - `host.reboot` uses `uptime` rather than `ping` to check host status ([#1619](https://github.com/puppetlabs/beaker/pull/1619))
203
+ - `host.reboot` uses `uptime` rather than `ping` to check host status ([#1619](https://github.com/voxpupuli/beaker/pull/1619))
189
204
 
190
- # [4.15.0](https://github.com/puppetlabs/beaker/compare/4.14.1...4.15.0) - 2020-01-30
205
+ # [4.15.0](https://github.com/voxpupuli/beaker/compare/4.14.1...4.15.0) - 2020-01-30
191
206
 
192
207
  ### Added
193
208
 
194
209
  - macOS 10.15 Catalina support (BKR-1621)
195
210
 
196
- # [4.14.1](https://github.com/puppetlabs/beaker/compare/4.14.0...4.14.1) - 2019-11-18
211
+ # [4.14.1](https://github.com/voxpupuli/beaker/compare/4.14.0...4.14.1) - 2019-11-18
197
212
 
198
213
  ### Fixed
199
214
 
200
215
  - `fips_mode?` detection (#1607)
201
216
 
202
- # [4.14.0](https://github.com/puppetlabs/beaker/compare/4.13.1...4.14.0) - 2019-11-12
217
+ # [4.14.0](https://github.com/voxpupuli/beaker/compare/4.13.1...4.14.0) - 2019-11-12
203
218
 
204
219
  ### Added
205
220
 
206
221
  - Pre-built steps output stacktraces when aborted (QENG-7466)
207
222
 
208
- # [4.13.1](https://github.com/puppetlabs/beaker/compare/4.13.0...4.13.1) - 2019-10-07
223
+ # [4.13.1](https://github.com/voxpupuli/beaker/compare/4.13.0...4.13.1) - 2019-10-07
209
224
 
210
225
  ### Fixed
211
226
 
212
227
  - Use correct platform variant for FIPS repo configs download (BKR-1616)
213
228
 
214
- # [4.13.0](https://github.com/puppetlabs/beaker/compare/4.12.0...4.13.0) - 2019-09-16
229
+ # [4.13.0](https://github.com/voxpupuli/beaker/compare/4.12.0...4.13.0) - 2019-09-16
215
230
 
216
231
  ### Added
217
232
 
218
233
  - Host `enable_remote_rsyslog` method (QENG-7466)
219
234
 
220
- # [4.12.0](https://github.com/puppetlabs/beaker/compare/4.11.1...4.12.0) - 2019-08-14
235
+ # [4.12.0](https://github.com/voxpupuli/beaker/compare/4.11.1...4.12.0) - 2019-08-14
221
236
 
222
237
  ### Added
223
238
 
224
239
  - redhatfips as a recognized platform (PE-27037)
225
240
 
226
- # [4.11.1](https://github.com/puppetlabs/beaker/compare/4.11.0...4.11.1) - 2019-08-13
241
+ # [4.11.1](https://github.com/voxpupuli/beaker/compare/4.11.0...4.11.1) - 2019-08-13
227
242
 
228
243
  ### Changed
229
244
 
230
245
  - `host.down?`'s wait from a fibonacci to a constant wait (BKR-1595)
231
246
 
232
- # [4.11.0](https://github.com/puppetlabs/beaker/compare/4.10.0...4.11.0) - 2019-07-22
247
+ # [4.11.0](https://github.com/voxpupuli/beaker/compare/4.10.0...4.11.0) - 2019-07-22
233
248
 
234
249
  ### Added
235
250
 
236
251
  - FIPS detection host method (BKR-1604)
237
252
  - PassTest exception catching for standard reporting
238
253
 
239
- # [4.10.0](https://github.com/puppetlabs/beaker/compare/4.9.0...4.10.0) - 2019-07-01
254
+ # [4.10.0](https://github.com/voxpupuli/beaker/compare/4.9.0...4.10.0) - 2019-07-01
240
255
 
241
256
  ### Added
242
257
 
243
258
  - Down & Up Checking to Host#reboot (BKR-1595)
244
259
 
245
- # [4.9.0](https://github.com/puppetlabs/beaker/compare/4.8.0...4.9.0) - 2019-06-19
260
+ # [4.9.0](https://github.com/voxpupuli/beaker/compare/4.8.0...4.9.0) - 2019-06-19
246
261
 
247
262
  ### Changed
248
263
 
249
264
  - SSH Connection failure backoff shortened (BKR-1599)
250
265
 
251
- # [4.8.0](https://github.com/puppetlabs/beaker/compare/4.7.0...4.8.0) - 2019-04-17
266
+ # [4.8.0](https://github.com/voxpupuli/beaker/compare/4.7.0...4.8.0) - 2019-04-17
252
267
 
253
268
  ### Added
254
269
 
@@ -259,7 +274,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
259
274
 
260
275
  - Remove "repos-pe" prefix for repo filenames
261
276
 
262
- # [4.7.0](https://github.com/puppetlabs/beaker/compare/4.6.0...4.7.0) - 2019-04-17
277
+ # [4.7.0](https://github.com/voxpupuli/beaker/compare/4.6.0...4.7.0) - 2019-04-17
263
278
 
264
279
  ### Added
265
280
 
@@ -273,19 +288,19 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
273
288
  - Change behavior of ruby versioning to accept job-parameter RUBY\_VER
274
289
  - Change subcommand pre-suite to install ruby 2.3.1
275
290
 
276
- # [4.6.0](https://github.com/puppetlabs/beaker/compare/4.5.0...4.6.0) - 2019.03.07
291
+ # [4.6.0](https://github.com/voxpupuli/beaker/compare/4.5.0...4.6.0) - 2019.03.07
277
292
 
278
293
  ### Added
279
294
 
280
295
  - Codename for Debian 10 'Buster'
281
296
 
282
- # [4.5.0](https://github.com/puppetlabs/beaker/compare/4.4.0...4.5.0) - 2019.01.23
297
+ # [4.5.0](https://github.com/voxpupuli/beaker/compare/4.4.0...4.5.0) - 2019.01.23
283
298
 
284
299
  ### Changed
285
300
 
286
301
  - Do not mirror profile.d on Debian (BKR-1559)
287
302
 
288
- # [4.4.0](https://github.com/puppetlabs/beaker/compare/4.3.0...4.4.0) - 2019.01.09
303
+ # [4.4.0](https://github.com/voxpupuli/beaker/compare/4.3.0...4.4.0) - 2019.01.09
289
304
 
290
305
  ### Added
291
306
 
@@ -297,14 +312,14 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
297
312
 
298
313
  - Replace ntpdate with crony on RHEL-8 (BKR-1555)
299
314
 
300
- # [4.3.0](https://github.com/puppetlabs/beaker/compare/4.2.0...4.3.0) - 2018.12.12
315
+ # [4.3.0](https://github.com/voxpupuli/beaker/compare/4.2.0...4.3.0) - 2018.12.12
301
316
 
302
317
  ### Added
303
318
 
304
319
  - Use zypper to install RPM packages on SLES (PA-2336)
305
320
  - Add only-fails capability to beaker (BKR-1523)
306
321
 
307
- # [4.2.0](https://github.com/puppetlabs/beaker/compare/4.1.0...4.2.0) - 2018.11.28
322
+ # [4.2.0](https://github.com/voxpupuli/beaker/compare/4.1.0...4.2.0) - 2018.11.28
308
323
 
309
324
  ### Added
310
325
 
@@ -321,7 +336,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
321
336
  - Recursively remove unpersisted subcommand options (BKR-1549)
322
337
 
323
338
 
324
- # [4.1.0](https://github.com/puppetlabs/beaker/compare/4.0.0...4.1.0) - 2018.10.25
339
+ # [4.1.0](https://github.com/voxpupuli/beaker/compare/4.0.0...4.1.0) - 2018.10.25
325
340
 
326
341
  ### Added
327
342
 
@@ -332,7 +347,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
332
347
  - Added additional tests for EL-like systems and added 'redhat' support where necessary
333
348
  - Test if puppet module is installed in '/' and avoid stripping of path seperator
334
349
 
335
- # [4.0.0](https://github.com/puppetlabs/beaker/compare/3.37.0...4.0.0) - 2018-08-06
350
+ # [4.0.0](https://github.com/voxpupuli/beaker/compare/3.37.0...4.0.0) - 2018-08-06
336
351
 
337
352
  ### Fixed
338
353
 
@@ -358,7 +373,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
358
373
 
359
374
  - `PEDefaults` has been moved to `beaker-pe`
360
375
 
361
- # [3.37.0](https://github.com/puppetlabs/beaker/compare/3.36.0...3.37.0) - 2018-07-11
376
+ # [3.37.0](https://github.com/voxpupuli/beaker/compare/3.36.0...3.37.0) - 2018-07-11
362
377
 
363
378
  ### Fixed
364
379
 
@@ -373,7 +388,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
373
388
  - `beaker-pe` is no longer automagically included. See [the upgrade guide](/docs/how_to/upgrade_from_3_to_4.md}) for more info
374
389
  - `beaker-puppet` is no longer required as a dependency
375
390
 
376
- # [3.36.0](https://github.com/puppetlabs/beaker/compare/3.35.0...3.36.0) - 2018-06-18
391
+ # [3.36.0](https://github.com/voxpupuli/beaker/compare/3.35.0...3.36.0) - 2018-06-18
377
392
 
378
393
  ### Fixed
379
394
 
@@ -387,7 +402,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
387
402
  - Glossary for project jargon in [`docs/concepts/glossary.md`](docs/concepts/glossary.md)
388
403
  - Use AIX 6.1 packages everywhere for puppet6
389
404
 
390
- # [3.35.0](https://github.com/puppetlabs/beaker/compare/3.34.0...3.35.0) - 2018-05-16
405
+ # [3.35.0](https://github.com/voxpupuli/beaker/compare/3.34.0...3.35.0) - 2018-05-16
391
406
 
392
407
  ### Fixed
393
408
 
@@ -398,7 +413,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
398
413
 
399
414
  - Added optional ability to use ERB in nodeset YAML files
400
415
 
401
- # [3.34.0](https://github.com/puppetlabs/beaker/compare/3.33.0...3.34.0) - 2018-03-26
416
+ # [3.34.0](https://github.com/voxpupuli/beaker/compare/3.33.0...3.34.0) - 2018-03-26
402
417
 
403
418
  ### Fixed
404
419
 
@@ -408,13 +423,13 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
408
423
 
409
424
  - Codename for Ubuntu 18.04 'Bionic'
410
425
 
411
- # [3.33.0](https://github.com/puppetlabs/beaker/compare/3.32.0...3.33.0) - 2018-03-07
426
+ # [3.33.0](https://github.com/voxpupuli/beaker/compare/3.32.0...3.33.0) - 2018-03-07
412
427
 
413
428
  ### Changed
414
429
 
415
430
  - Use relative paths for beaker exec
416
431
 
417
- # [3.32.0](https://github.com/puppetlabs/beaker/compare/3.31.0...3.32.0) - 2018-02-22
432
+ # [3.32.0](https://github.com/voxpupuli/beaker/compare/3.31.0...3.32.0) - 2018-02-22
418
433
 
419
434
  ### Changed
420
435
 
@@ -426,7 +441,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
426
441
 
427
442
  - Added missing beaker options for subcommand passthorugh
428
443
 
429
- # [3.31.0](https://github.com/puppetlabs/beaker/compare/3.30.0...3.31.0) - 2018-01-22
444
+ # [3.31.0](https://github.com/voxpupuli/beaker/compare/3.30.0...3.31.0) - 2018-01-22
430
445
 
431
446
  ### Changed
432
447
 
@@ -436,7 +451,7 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
436
451
 
437
452
  - Add macOS 10.13 support
438
453
 
439
- # [3.30.0](https://github.com/puppetlabs/beaker/compare/3.29.0...3.30.0) - 2018-01-10
454
+ # [3.30.0](https://github.com/voxpupuli/beaker/compare/3.29.0...3.30.0) - 2018-01-10
440
455
 
441
456
  ### Changed
442
457
 
@@ -450,30 +465,33 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
450
465
 
451
466
  - Load project options from .beaker.yml
452
467
 
453
- # [3.29.0](https://github.com/puppetlabs/beaker/compare/3.28.0...3.29.0) - 2017-11-16
468
+ # [3.29.0](https://github.com/voxpupuli/beaker/compare/3.28.0...3.29.0) - 2017-11-16
454
469
 
455
470
  ### Added
456
471
 
457
472
  - Adding default to read fog credentials
458
473
 
459
- # [3.28.0](https://github.com/puppetlabs/beaker/compare/3.27.0...3.28.0) - 2017-11-01
474
+ # [3.28.0](https://github.com/voxpupuli/beaker/compare/3.27.0...3.28.0) - 2017-11-01
460
475
 
461
476
  ### Fixed
462
477
 
463
478
  - corruption of `opts[:ignore]` when using `rsync`
464
479
 
465
- # [3.27.0](https://github.com/puppetlabs/beaker/compare/3.26.0...3.27.0) - 2017-10-19
480
+ # [3.27.0](https://github.com/voxpupuli/beaker/compare/3.26.0...3.27.0) - 2017-10-19
466
481
 
467
482
  ### Added
468
483
 
469
484
  - support amazon as a platform
470
485
  - add codenames for MacOS 10.13 and Ubuntu Artful
471
486
 
472
- # [3.26.0](https://github.com/puppetlabs/beaker/compare/3.25.0...3.26.0) - 2017-10-05
487
+ # [3.26.0](https://github.com/voxpupuli/beaker/compare/3.25.0...3.26.0) - 2017-10-05
473
488
 
474
489
  ### Added
475
490
 
476
491
  - concept of `manual_test` and `manual_step`
477
492
 
478
- # [3.25.0](https://github.com/puppetlabs/beaker/compare/3.24.0...3.25.0) - 2017-09-26
493
+ # [3.25.0](https://github.com/voxpupuli/beaker/compare/3.24.0...3.25.0) - 2017-09-26
494
+
495
+
479
496
 
497
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*