beaker 7.4.0 → 7.4.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/CHANGELOG.md +10 -2
- data/lib/beaker/version.rb +1 -1
- data/spec/spec_helper.rb +8 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c88dbc0a39e7bec5a8b9b3a5b49ec0c38d89acf20509254041704824d01c67b2
|
|
4
|
+
data.tar.gz: 33fe3dbdfd1a1597492d20b1b01a3055e01cbff7d4cdc15b244f6ef4db864c15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 645d419b3a2926cefc9a46880ca983edcb20b63e0794e3296eb77e8e8ff707ffc71afb9afd6f1a3c29e1348b60c27a177e9be0d06223769c1750715f7a89fa40
|
|
7
|
+
data.tar.gz: 7e4de01ddfeb8a4d851c40adf4e0938001c90f9dbc55b44eb28401964365631beb77adf54067853ade8e36a648b0eb3db4ac8c7b36288dd9c8d130bd3a6b7828
|
data/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [7.4.
|
|
5
|
+
## [7.4.1](https://github.com/voxpupuli/beaker/tree/7.4.1) (2026-01-31)
|
|
6
6
|
|
|
7
|
-
[Full Changelog](https://github.com/voxpupuli/beaker/compare/
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/v7.4.0...7.4.1)
|
|
8
|
+
|
|
9
|
+
**Fixed bugs:**
|
|
10
|
+
|
|
11
|
+
- Gracefully handle rspec-github not being present [\#1990](https://github.com/voxpupuli/beaker/pull/1990) ([ekohl](https://github.com/ekohl))
|
|
12
|
+
|
|
13
|
+
## [v7.4.0](https://github.com/voxpupuli/beaker/tree/v7.4.0) (2026-01-22)
|
|
14
|
+
|
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/7.3.0...v7.4.0)
|
|
8
16
|
|
|
9
17
|
**Implemented enhancements:**
|
|
10
18
|
|
data/lib/beaker/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
|
@@ -10,7 +10,13 @@ RSpec.configure do |config|
|
|
|
10
10
|
config.include HostHelpers
|
|
11
11
|
# Use the GitHub Annotations formatter for CI
|
|
12
12
|
if ENV['GITHUB_ACTIONS'] == 'true'
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
begin
|
|
14
|
+
require 'rspec/github'
|
|
15
|
+
rescue LoadError
|
|
16
|
+
# This is a development dependency, but beaker plugins reuse this and may
|
|
17
|
+
# not specify it
|
|
18
|
+
else
|
|
19
|
+
config.add_formatter RSpec::Github::Formatter
|
|
20
|
+
end
|
|
15
21
|
end
|
|
16
22
|
end
|