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