beaker 4.29.0 → 4.32.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: dbfaa8f41aaa3ee0ef3400002bed63eccc4bbf4a1057b047f85610fbb30fa677
4
- data.tar.gz: 942d0e998c84ca98160a49da29608010c8ec42d4c1a175946ff5d31a69f0a991
3
+ metadata.gz: 0c00ec9028362af1b8966b03ad80797dd3e1d2e16bee268482568f399cf94874
4
+ data.tar.gz: be92467b94636b65b1b2f37543ca26426d920f36e0182c12fe3fe8a98ef060e1
5
5
  SHA512:
6
- metadata.gz: 78f4703fbd41da566acc7a674f3694c7d756bfae560f5ff8c00dbc240db7725de3ccc40c01e2c412564ea56d0f94eac8573b8d98c5b1a743b52890bc8341ccf0
7
- data.tar.gz: a605d125585bf3ddc1dab03216b8056c9aadb26d662074bb15e96594ca3868c08552c06b25a767449af3c31d3099f6f00599274eb2c229995711311a1d11e799
6
+ metadata.gz: 4f65220ed8d6144a1a1438f91d7a79a0fb211ac1f3564167da1ceec48c588dc5b5b91c038e3b7ff513373e95d646eba2f47ff8b36e3f424f8450bc9d982e0cdc
7
+ data.tar.gz: 91c0890e82571154da9b32fd8a69a6d1545cd505922f24d0bf16e4f1c228c748ff9e2d74de74c5b8529c769b2e2179531645eb0a9f261e4580d09fb86e60bb1c
@@ -1,22 +1,32 @@
1
1
  name: Release
2
2
 
3
3
  on:
4
- create:
5
- ref_type: tag
4
+ push:
5
+ tags:
6
+ - '*'
6
7
 
7
8
  jobs:
8
9
  release:
9
10
  runs-on: ubuntu-latest
10
- if: github.repository == 'voxpupuli/beaker'
11
+ if: github.repository_owner == 'voxpupuli'
11
12
  steps:
12
13
  - uses: actions/checkout@v2
13
- - name: Install Ruby 2.7
14
+ - name: Install Ruby 3.0
14
15
  uses: ruby/setup-ruby@v1
15
16
  with:
16
- ruby-version: '2.7'
17
+ ruby-version: '3.0'
18
+ env:
19
+ BUNDLE_WITHOUT: release
17
20
  - name: Build gem
18
21
  run: gem build *.gemspec
19
- - name: Publish gem
22
+ - name: Publish gem to rubygems.org
20
23
  run: gem push *.gem
21
24
  env:
22
25
  GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
26
+ - name: Setup GitHub packages access
27
+ run: |
28
+ mkdir -p ~/.gem
29
+ echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
30
+ chmod 0600 ~/.gem/credentials
31
+ - name: Publish gem to GitHub packages
32
+ run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
@@ -4,19 +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
- - "3.0"
19
- 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 }}
20
25
  steps:
21
26
  - uses: actions/checkout@v2
22
27
  - name: Install Ruby ${{ matrix.ruby }}
@@ -24,7 +29,5 @@ jobs:
24
29
  with:
25
30
  ruby-version: ${{ matrix.ruby }}
26
31
  bundler-cache: true
27
- - name: Build docs
28
- run: bundle exec rake yard
29
32
  - name: Run tests
30
33
  run: bundle exec rake spec
data/CHANGELOG.md CHANGED
@@ -1,24 +1,46 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ ## [4.32.0](https://github.com/voxpupuli/beaker/tree/4.32.0) (2021-12-06)
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
+ - Arch Linux: install net-tools and openssh ([#1722](https://github.com/voxpupuli/beaker/pull/1722))
8
+
9
+ ### Added
9
10
 
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.
11
+ - Initial EL9 support ([#1719](https://github.com/voxpupuli/beaker/pull/1719))
12
+
13
+ ## [4.31.0](https://github.com/voxpupuli/beaker/tree/4.31.0) (2021-11-02)
14
+
15
+ ### Fixed
13
16
 
14
- The headers used in [Keep a Changelog](http://keepachangelog.com) are:
17
+ - (BKR-1690) Fix localhost logging ([#1691](https://github.com/voxpupuli/beaker/pull/1691))
18
+
19
+ ### Added
20
+
21
+ - Made fips_check? more generally applicable ([#1717]https://github.com/voxpupuli/beaker/pull/1717))
22
+
23
+ ## [4.30.0](https://github.com/voxpupuli/beaker/tree/4.30.0) (2021-07-21)
24
+
25
+ ### Fixed
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
+ - Fix Platform version string comparison for install_local_package ([#1712](https://github.com/voxpupuli/beaker/pull/1712))
28
+
29
+ ### Added
30
+
31
+ - Add initial opensuse support ([#1697](https://github.com/voxpupuli/beaker/pull/1697))
32
+ - Implement codecov reporting ([#1710](https://github.com/voxpupuli/beaker/pull/1710))
33
+
34
+ ### Changed
35
+
36
+ - beaker-abs: allow latest releases ([#1706](https://github.com/voxpupuli/beaker/pull/1706))
37
+ - Align release setup with other gems ([#1707](https://github.com/voxpupuli/beaker/pull/1707))
38
+
39
+ ## [4.29.1](https://github.com/voxpupuli/beaker/tree/4.29.1) (2021-05-26)
40
+
41
+ ### Fixed
42
+
43
+ - Fixed `vagrant*` matching in the unix `get_ip()`
22
44
 
23
45
  # [4.29.0](https://github.com/voxpupuli/beaker/compare/4.28.1...4.29.0) - 19-05-2021
24
46
 
@@ -490,3 +512,6 @@ The headers used in [Keep a Changelog](http://keepachangelog.com) are:
490
512
 
491
513
  # [3.25.0](https://github.com/voxpupuli/beaker/compare/3.24.0...3.25.0) - 2017-09-26
492
514
 
515
+
516
+
517
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source ENV['GEM_SOURCE'] || "https://rubygems.org"
1
+ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
@@ -19,3 +19,12 @@ if ENV['BEAKER_PE_PR_REPO_URL']
19
19
  ref = ENV['BEAKER_PE_PR_COMMIT']
20
20
  gem lib, :git => "git@github.com:#{author}/#{lib}.git", :branch => ref
21
21
  end
22
+
23
+ group :release do
24
+ gem 'github_changelog_generator', require: false
25
+ end
26
+
27
+ group :coverage, optional: ENV['COVERAGE']!='yes' do
28
+ gem 'simplecov-console', :require => false
29
+ gem 'codecov', :require => false
30
+ end
data/HISTORY.md ADDED
@@ -0,0 +1,502 @@
1
+ ## [4.31.0](https://github.com/voxpupuli/beaker/tree/4.31.0) (2021-11-02)
2
+
3
+ ### Fixed
4
+
5
+ - (BKR-1690) Fix localhost logging ([#1691](https://github.com/voxpupuli/beaker/pull/1691))
6
+
7
+ ### Added
8
+
9
+ - Made fips_check? more generally applicable ([#1717]https://github.com/voxpupuli/beaker/pull/1717))
10
+
11
+ ## [4.30.0](https://github.com/voxpupuli/beaker/tree/4.30.0) (2021-07-21)
12
+
13
+ ### Fixed
14
+
15
+ - Fix Platform version string comparison for install_local_package ([#1712](https://github.com/voxpupuli/beaker/pull/1712))
16
+
17
+ ### Added
18
+
19
+ - Add initial opensuse support ([#1697](https://github.com/voxpupuli/beaker/pull/1697))
20
+ - Implement codecov reporting ([#1710](https://github.com/voxpupuli/beaker/pull/1710))
21
+
22
+ ### Changed
23
+
24
+ - beaker-abs: allow latest releases ([#1706](https://github.com/voxpupuli/beaker/pull/1706))
25
+ - Align release setup with other gems ([#1707](https://github.com/voxpupuli/beaker/pull/1707))
26
+
27
+ ## [4.29.1](https://github.com/voxpupuli/beaker/tree/4.29.1) (2021-05-26)
28
+
29
+ ### Fixed
30
+
31
+ - Fixed `vagrant*` matching in the unix `get_ip()`
32
+
33
+ # [4.29.0](https://github.com/voxpupuli/beaker/compare/4.28.1...4.29.0) - 19-05-2021
34
+
35
+ ### Added
36
+
37
+ - Ruby 3.0 support
38
+
39
+ # [4.28.1](https://github.com/voxpupuli/beaker/compare/4.28.0...4.28.1) - 03-10-2021
40
+
41
+ ### Fixed
42
+
43
+ - Updated the ssh_preference example
44
+ - Fixed various spec tests
45
+ - Updated the `which` command to try `type -P` before falling back to `which`
46
+ for systems that may not have `which` installed
47
+
48
+ # [4.28.0](https://github.com/voxpupuli/beaker/compare/4.27.1...4.28.0) - 12-21-2020
49
+
50
+ ### Changed
51
+
52
+ - Arch Linux: Update box before installing packages ([#1688](https://github.com/voxpupuli/beaker/pull/1688))
53
+ - Move the entire workflow to Github Actions ([#1678](https://github.com/voxpupuli/beaker/pull/1678))
54
+ - Allow fakefs dependency in version >= 1 < 2 ([#1687](https://github.com/voxpupuli/beaker/pull/1687))
55
+
56
+ ### Fixed
57
+
58
+ - Fix License text and SPDX code ([#1681](https://github.com/voxpupuli/beaker/pull/1678))
59
+
60
+ # [4.27.1](https://github.com/voxpupuli/beaker/compare/4.27.0...4.27.1) - 09-29-2020
61
+
62
+ ### Changed
63
+
64
+ - Update net-scp requirement from "~> 1.2" to ">= 1.2, < 4.0"
65
+
66
+ ### Fixed
67
+
68
+ - Handle systems going back in time after reboot
69
+ - Enhanced error handling during the reboot sequence
70
+ - Fixed time check logic during reboot
71
+ - Wrap paths around "" on pswindows
72
+
73
+ # [4.27.0](https://github.com/voxpupuli/beaker/compare/4.26.0...4.27.0) - 07-24-2020
74
+
75
+ ### Changed
76
+
77
+ - Updated dependency versions and minimum Ruby version in gemspec to Ruby 2.4, which is the minimum
78
+ version Beaker will run with.
79
+ - Added Travis unit testing and disabled Jenkins integrations in preparation for transferring the
80
+ repo to Vox Pupuli
81
+
82
+
83
+ # [4.26.0](https://github.com/voxpupuli/beaker/compare/4.25.0...4.26.0)
84
+
85
+ ### Changed
86
+
87
+ - Fixed deprecated SSH option handling for `verify_ssh_key` being passed into Net::SSH. #1655
88
+
89
+ ### Removed
90
+
91
+ - Removed deprecated use of `paranoid` flag with Net::SSH. #1655
92
+
93
+ # [4.25.0](https://github.com/voxpupuli/beaker/compare/4.24.0...4.25.0)
94
+
95
+ ### Added
96
+
97
+ - Execution of Beaker directly through ruby on localhost #1637 ([#1637](https://github.com/voxpupuli/beaker/pull/1637))
98
+
99
+ ### Fixed
100
+
101
+ - Reliability improvements to the `Host#reboot` method ([#1656](https://github.com/voxpupuli/beaker/pull/1656)) ([#1659](https://github.com/voxpupuli/beaker/pull/1659))
102
+
103
+ # [4.24.0](https://github.com/voxpupuli/beaker/compare/4.23.0...4.24.0) - 2020-06-05
104
+
105
+ ### Added
106
+
107
+ - Host method which ([#1651](https://github.com/voxpupuli/beaker/pull/1651))
108
+
109
+ ### Fixed
110
+
111
+ - Fixed implementation for cat and file_exists? host methods for PSWindows ([#1654](https://github.com/voxpupuli/beaker/pull/1654))
112
+ - Fixed implementation for mkdir_p host method for PSWindows ([#1657](https://github.com/voxpupuli/beaker/pull/1657))
113
+
114
+ # [4.23.2](https://github.com/voxpupuli/beaker/compare/4.23.1...4.23.2)
115
+
116
+ ### Fixed
117
+
118
+ - Fixed Beaker's behavior when the `strict_host_key_checking` option is
119
+ provided in the SSH config and Net-SSH > 5 is specified. (#1652)
120
+
121
+ # [4.23.1](https://github.com/voxpupuli/beaker/compare/4.23.0...4.23.1)
122
+
123
+ ### Changed/Removed
124
+
125
+ - Reversed the quoting changes on Unix from #1644 in favor of only quoting on Windows. (#1650)
126
+
127
+ # [4.23.0](https://github.com/voxpupuli/beaker/compare/4.22.1...4.23.0)
128
+
129
+ ### Added
130
+
131
+ - Relaxed dependency on `net-ssh` to `>= 5` to support newer versions. (#1648)
132
+ - `cat` DSL method added. Works on both Unix and Windows hosts. (#1645)
133
+
134
+ ### Changed
135
+
136
+ - The `mkdir_p` and `mv` commands now double quote their file arguments. (#1644) If you rely on file globbing in these methods or elsewhere, please open an issue on the BEAKER project.
137
+ - Change `reboot` method to use `who -b` for uptime detection (#1643)
138
+
139
+ ### Fixed
140
+
141
+ - Use Base64 UTF-16LE encoding for commands (#1626)
142
+ - Fix `tmpdir` method for Powershell on Windows (#1645)
143
+
144
+ # [4.22.1](https://github.com/voxpupuli/beaker/compare/4.22.0...4.22.1)
145
+
146
+ ### Fixed
147
+
148
+ - Removed single quotes around paths for file operation commands on `Host` https://github.com/voxpupuli/beaker/pull/1642
149
+
150
+ # [4.22.0](https://github.com/voxpupuli/beaker/compare/4.21.0...4.22.0) - 2020-05-08
151
+
152
+ ### Added
153
+
154
+ - Host methods chmod and modified_at. ([#1638](https://github.com/voxpupuli/beaker/pull/1638))
155
+
156
+ ### Removed
157
+
158
+ - Support for EL-5. ([#1639](https://github.com/voxpupuli/beaker/pull/1639)) ([#1640](https://github.com/voxpupuli/beaker/pull/1640))
159
+
160
+ # [4.21.0](https://github.com/voxpupuli/beaker/compare/4.20.0...4.21.0) - 2020-03-31
161
+
162
+ ### Added
163
+
164
+ - 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))
165
+
166
+ # [4.20.0](https://github.com/voxpupuli/beaker/compare/4.19.0...4.20.0) - 2020-03-19
167
+
168
+ ### Added
169
+
170
+ - 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))
171
+
172
+ # [4.19.0](https://github.com/voxpupuli/beaker/compare/4.18.0...4.19.0) - 2020-03-13
173
+
174
+ ### Added
175
+
176
+ - `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))
177
+ - Ubuntu 19.10 and 20.04 code name handling. ([#1632](https://github.com/voxpupuli/beaker/pull/1632))
178
+
179
+ ### Changed
180
+
181
+ - 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))
182
+
183
+ ### Fixed
184
+
185
+ - 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))
186
+ - `version_is_less` will now correctly handle builds and RCs when used in version numbers. ([#1630](https://github.com/voxpupuli/beaker/pull/1630))
187
+
188
+ ### Security
189
+ - 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)
190
+
191
+ # [4.18.0](https://github.com/voxpupuli/beaker/compare/4.17.0...4.18.0) - 2020-02-26
192
+ ### Changed
193
+ - Thor dependency bumped to >=1.0.1 <2.0
194
+
195
+ # [4.17.0](https://github.com/voxpupuli/beaker/compare/4.16.0...4.17.0) - 2020-02-20
196
+
197
+ ### Added
198
+
199
+ - Windows support in `host_helpers` ([#1622](https://github.com/voxpupuli/beaker/pull/1622))
200
+ - EL 8 support ([#1623](https://github.com/voxpupuli/beaker/pull/1623))
201
+
202
+ # [4.16.0](https://github.com/voxpupuli/beaker/compare/4.15.0...4.16.0) - 2020-02-05
203
+
204
+ ### Added
205
+
206
+ - release section to README ([#1618](https://github.com/voxpupuli/beaker/pull/1618))
207
+ - false return if `link_exists?` raises an error ([#1613](https://github.com/voxpupuli/beaker/pull/1613))
208
+
209
+ ### Fixed
210
+
211
+ - `host.reboot` uses `uptime` rather than `ping` to check host status ([#1619](https://github.com/voxpupuli/beaker/pull/1619))
212
+
213
+ # [4.15.0](https://github.com/voxpupuli/beaker/compare/4.14.1...4.15.0) - 2020-01-30
214
+
215
+ ### Added
216
+
217
+ - macOS 10.15 Catalina support (BKR-1621)
218
+
219
+ # [4.14.1](https://github.com/voxpupuli/beaker/compare/4.14.0...4.14.1) - 2019-11-18
220
+
221
+ ### Fixed
222
+
223
+ - `fips_mode?` detection (#1607)
224
+
225
+ # [4.14.0](https://github.com/voxpupuli/beaker/compare/4.13.1...4.14.0) - 2019-11-12
226
+
227
+ ### Added
228
+
229
+ - Pre-built steps output stacktraces when aborted (QENG-7466)
230
+
231
+ # [4.13.1](https://github.com/voxpupuli/beaker/compare/4.13.0...4.13.1) - 2019-10-07
232
+
233
+ ### Fixed
234
+
235
+ - Use correct platform variant for FIPS repo configs download (BKR-1616)
236
+
237
+ # [4.13.0](https://github.com/voxpupuli/beaker/compare/4.12.0...4.13.0) - 2019-09-16
238
+
239
+ ### Added
240
+
241
+ - Host `enable_remote_rsyslog` method (QENG-7466)
242
+
243
+ # [4.12.0](https://github.com/voxpupuli/beaker/compare/4.11.1...4.12.0) - 2019-08-14
244
+
245
+ ### Added
246
+
247
+ - redhatfips as a recognized platform (PE-27037)
248
+
249
+ # [4.11.1](https://github.com/voxpupuli/beaker/compare/4.11.0...4.11.1) - 2019-08-13
250
+
251
+ ### Changed
252
+
253
+ - `host.down?`'s wait from a fibonacci to a constant wait (BKR-1595)
254
+
255
+ # [4.11.0](https://github.com/voxpupuli/beaker/compare/4.10.0...4.11.0) - 2019-07-22
256
+
257
+ ### Added
258
+
259
+ - FIPS detection host method (BKR-1604)
260
+ - PassTest exception catching for standard reporting
261
+
262
+ # [4.10.0](https://github.com/voxpupuli/beaker/compare/4.9.0...4.10.0) - 2019-07-01
263
+
264
+ ### Added
265
+
266
+ - Down & Up Checking to Host#reboot (BKR-1595)
267
+
268
+ # [4.9.0](https://github.com/voxpupuli/beaker/compare/4.8.0...4.9.0) - 2019-06-19
269
+
270
+ ### Changed
271
+
272
+ - SSH Connection failure backoff shortened (BKR-1599)
273
+
274
+ # [4.8.0](https://github.com/voxpupuli/beaker/compare/4.7.0...4.8.0) - 2019-04-17
275
+
276
+ ### Added
277
+
278
+ - Support for Fedora >= 30 (BKR-1589)
279
+ - Codenames for Ubuntu 18.10, 19.04, and 19.10
280
+
281
+ ### Changed
282
+
283
+ - Remove "repos-pe" prefix for repo filenames
284
+
285
+ # [4.7.0](https://github.com/voxpupuli/beaker/compare/4.6.0...4.7.0) - 2019-04-17
286
+
287
+ ### Added
288
+
289
+ - Provide for OpenSSL 1.1.x+ support
290
+ - enable Solaris10Sparc pkgutil SSL CA2 (IMAGES-844)
291
+
292
+ ### Changed
293
+
294
+ - update pry-byebug dependency 3.4.2->3.6 (BKR-1568)
295
+ - disabling hostkey checks for cisco hosts (QENG-7108)
296
+ - Change behavior of ruby versioning to accept job-parameter RUBY\_VER
297
+ - Change subcommand pre-suite to install ruby 2.3.1
298
+
299
+ # [4.6.0](https://github.com/voxpupuli/beaker/compare/4.5.0...4.6.0) - 2019.03.07
300
+
301
+ ### Added
302
+
303
+ - Codename for Debian 10 'Buster'
304
+
305
+ # [4.5.0](https://github.com/voxpupuli/beaker/compare/4.4.0...4.5.0) - 2019.01.23
306
+
307
+ ### Changed
308
+
309
+ - Do not mirror profile.d on Debian (BKR-1559)
310
+
311
+ # [4.4.0](https://github.com/voxpupuli/beaker/compare/4.3.0...4.4.0) - 2019.01.09
312
+
313
+ ### Added
314
+
315
+ - Return root considerations for appending on nexus devices (BKR-1562)
316
+ - Permit user environment on osx-10.14 (BKR-1534)
317
+ - Add host helpers for working with files (BKR-1560)
318
+
319
+ ### Changed
320
+
321
+ - Replace ntpdate with crony on RHEL-8 (BKR-1555)
322
+
323
+ # [4.3.0](https://github.com/voxpupuli/beaker/compare/4.2.0...4.3.0) - 2018.12.12
324
+
325
+ ### Added
326
+
327
+ - Use zypper to install RPM packages on SLES (PA-2336)
328
+ - Add only-fails capability to beaker (BKR-1523)
329
+
330
+ # [4.2.0](https://github.com/voxpupuli/beaker/compare/4.1.0...4.2.0) - 2018.11.28
331
+
332
+ ### Added
333
+
334
+ - `BEAKER_HYPERVISOR` environment variable to choose the beaker-hostgenerator hypervisor
335
+
336
+ ### Changed
337
+
338
+ - Handling of vsh appended commands for cisco_nexus (BKR-1556)
339
+ - Acceptance tests: Add backoffs to other create_remote_file test
340
+
341
+ ### Fixed
342
+
343
+ - Don't always start a new container with docker (can be reused between invocations of the provision and exec beaker subcommands) (BKR-1547)
344
+ - Recursively remove unpersisted subcommand options (BKR-1549)
345
+
346
+
347
+ # [4.1.0](https://github.com/voxpupuli/beaker/compare/4.0.0...4.1.0) - 2018.10.25
348
+
349
+ ### Added
350
+
351
+ - `--preserve-state` flag will preserve a given host options hash across subcommand runs(BKR-1541)
352
+
353
+ ### Changed
354
+
355
+ - Added additional tests for EL-like systems and added 'redhat' support where necessary
356
+ - Test if puppet module is installed in '/' and avoid stripping of path seperator
357
+
358
+ # [4.0.0](https://github.com/voxpupuli/beaker/compare/3.37.0...4.0.0) - 2018-08-06
359
+
360
+ ### Fixed
361
+
362
+ - `host.rsync_to` throws `Beaker::Host::CommandFailure` if rsync call fails (BKR-463)
363
+ - `host.rsync_to` throws `Beaker::Host::CommandFailure` if rsync does not exist on remote system (BKR-462)
364
+ - `host.rsync_to` now check through configured SSH keys to use the first valid one
365
+ - Updated some `Beaker::Host` methods to always return a `Result` object
366
+
367
+ ### Added
368
+
369
+ - Adds `Beaker::Host#chown`, `#chgrp`, and `#ls_ld` methods (BKR-1499)
370
+ - `#uninstall_package` host helper, to match `#install_package`
371
+ - `Host.uninstall_package` for FreeBSD
372
+ - Now easily check a command's exit status by calling `Result.success?()` for a simple, truthy result. No need to validate the exit code manually.
373
+
374
+ ### Changed
375
+
376
+ - `#set_env` no longer calls `#configure_type_defaults_on`
377
+ - `beaker-puppet` DSL Extension Library has been formally split into a standard DSL Extension Library and removed as a dependency from Beaker. Please see our [upgrade guidelines](docs/how_to/upgrade_from_3_to_4.md).
378
+ - Beaker's Hypervisor Libraries have been removed as dependencies. Please see our [upgrade guidelines](docs/how_to/upgrade_from_3_to_4.md).
379
+
380
+ ### Removed
381
+
382
+ - `PEDefaults` has been moved to `beaker-pe`
383
+
384
+ # [3.37.0](https://github.com/voxpupuli/beaker/compare/3.36.0...3.37.0) - 2018-07-11
385
+
386
+ ### Fixed
387
+
388
+ - Exit early on --help/--version/--parse-only arguments instead of partial dry-run
389
+
390
+ ### Added
391
+
392
+ - `Beaker::Shared::FogCredentials.get_fog_credentials()` to parse .fog credential files
393
+
394
+ ### Changed
395
+
396
+ - `beaker-pe` is no longer automagically included. See [the upgrade guide](/docs/how_to/upgrade_from_3_to_4.md}) for more info
397
+ - `beaker-puppet` is no longer required as a dependency
398
+
399
+ # [3.36.0](https://github.com/voxpupuli/beaker/compare/3.35.0...3.36.0) - 2018-06-18
400
+
401
+ ### Fixed
402
+
403
+ - Raise `ArgumentError` when passing `role = nil` to `only_host_with_role()` or `find_at_most_one_host_with_role()`
404
+ - Use `install_package_with_rpm` in `add_el_extras`
405
+
406
+ ### Added
407
+
408
+ - Installation instructions for contributors
409
+ - Markdown formatting guidelines for `docs/`
410
+ - Glossary for project jargon in [`docs/concepts/glossary.md`](docs/concepts/glossary.md)
411
+ - Use AIX 6.1 packages everywhere for puppet6
412
+
413
+ # [3.35.0](https://github.com/voxpupuli/beaker/compare/3.34.0...3.35.0) - 2018-05-16
414
+
415
+ ### Fixed
416
+
417
+ - Report accurate location of generated smoke test
418
+ - Accept comma-separated tests for exec subcommand
419
+
420
+ ### Added
421
+
422
+ - Added optional ability to use ERB in nodeset YAML files
423
+
424
+ # [3.34.0](https://github.com/voxpupuli/beaker/compare/3.33.0...3.34.0) - 2018-03-26
425
+
426
+ ### Fixed
427
+
428
+ - Recursively glob the tests directory
429
+
430
+ ### Added
431
+
432
+ - Codename for Ubuntu 18.04 'Bionic'
433
+
434
+ # [3.33.0](https://github.com/voxpupuli/beaker/compare/3.32.0...3.33.0) - 2018-03-07
435
+
436
+ ### Changed
437
+
438
+ - Use relative paths for beaker exec
439
+
440
+ # [3.32.0](https://github.com/voxpupuli/beaker/compare/3.31.0...3.32.0) - 2018-02-22
441
+
442
+ ### Changed
443
+
444
+ - Fully qualify sles ssh restart cmd
445
+ - Deprecated deploy_package_repo methods
446
+ - Configuration of host type in host_prebuilt_steps
447
+
448
+ ### Added
449
+
450
+ - Added missing beaker options for subcommand passthorugh
451
+
452
+ # [3.31.0](https://github.com/voxpupuli/beaker/compare/3.30.0...3.31.0) - 2018-01-22
453
+
454
+ ### Changed
455
+
456
+ - Clean up ssh paranoid setting deprecation warnings
457
+
458
+ ### Added
459
+
460
+ - Add macOS 10.13 support
461
+
462
+ # [3.30.0](https://github.com/voxpupuli/beaker/compare/3.29.0...3.30.0) - 2018-01-10
463
+
464
+ ### Changed
465
+
466
+ - Use `host.hostname` when combining options host_hash with host instance options
467
+
468
+ ### Removed
469
+
470
+ - `amazon` as a platform value
471
+
472
+ ### Added
473
+
474
+ - Load project options from .beaker.yml
475
+
476
+ # [3.29.0](https://github.com/voxpupuli/beaker/compare/3.28.0...3.29.0) - 2017-11-16
477
+
478
+ ### Added
479
+
480
+ - Adding default to read fog credentials
481
+
482
+ # [3.28.0](https://github.com/voxpupuli/beaker/compare/3.27.0...3.28.0) - 2017-11-01
483
+
484
+ ### Fixed
485
+
486
+ - corruption of `opts[:ignore]` when using `rsync`
487
+
488
+ # [3.27.0](https://github.com/voxpupuli/beaker/compare/3.26.0...3.27.0) - 2017-10-19
489
+
490
+ ### Added
491
+
492
+ - support amazon as a platform
493
+ - add codenames for MacOS 10.13 and Ubuntu Artful
494
+
495
+ # [3.26.0](https://github.com/voxpupuli/beaker/compare/3.25.0...3.26.0) - 2017-10-05
496
+
497
+ ### Added
498
+
499
+ - concept of `manual_test` and `manual_step`
500
+
501
+ # [3.25.0](https://github.com/voxpupuli/beaker/compare/3.24.0...3.25.0) - 2017-09-26
502
+