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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8728e0534809f9264bde56aae96f4f8639596d92a17396f16636e1230493f954
4
- data.tar.gz: dff353b3b984b363b15d60902a10f88a794a620c94cabfd1ef67b6054389fb11
3
+ metadata.gz: c88dbc0a39e7bec5a8b9b3a5b49ec0c38d89acf20509254041704824d01c67b2
4
+ data.tar.gz: 33fe3dbdfd1a1597492d20b1b01a3055e01cbff7d4cdc15b244f6ef4db864c15
5
5
  SHA512:
6
- metadata.gz: 859bfebb10ad3ae5d399508fcc2ee61bc01ce5aa60da9542e584ed90e5a5d3266b39d05e9a732db77063f356448dbf71307f948d46358816357a9bd0f7b5b2cf
7
- data.tar.gz: 2aff57d8a71deef1c5fa275de75d4b02e9184adcf2966c14b2827842568c3f34458ce2abea65eedee5051dcd4d2044fd1764fa11cc1d930d4d5a721149661b26
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.0](https://github.com/voxpupuli/beaker/tree/7.4.0) (2026-01-22)
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.3.0...7.4.0)
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
 
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '7.4.0'
3
+ STRING = '7.4.1'
4
4
  end
5
5
  end
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
- require 'rspec/github'
14
- config.add_formatter RSpec::Github::Formatter
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.4.0
4
+ version: 7.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet