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