voxpupuli-release 5.0.0 → 5.0.2

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: d83057c199c6174f700959cb0e855661c7dbc28324f8f56bd2ab1461a762a0de
4
- data.tar.gz: 5e45660cda84bceac73ad164aef002ac49c3b25d8c06cd815477103c5d83ef7f
3
+ metadata.gz: 540b7eb6444d1bafdfe66518525b57e4807ab8f332eadc0c3fc1306977911e5f
4
+ data.tar.gz: 0ba1493d768130b94378fe0e182828ea0bbb5182ca1eaee87207138108eea85a
5
5
  SHA512:
6
- metadata.gz: 4e668b233809c22f9f0597740636619bff30c5a521eb7c8f65d0914c78e8779d1e0a63a1791a6844d1cd1777087989016fc543d8485e17200c01f3fe304b1c51
7
- data.tar.gz: a6a98b1c792b8e884c1eac0c6ecd3206512d57dd0571081f4f6db3d64f6734c981a393d352cb145980c9a54ed18f51099871894287fd1ca1ab5eee16c3983d15
6
+ metadata.gz: af0adf55adc63a82b6e639329280efa0b8fec18c3893798edd746d7e8bf842d1782195e6593444f19f383b572a50853c06e7709acdbd0ebd9fc0acc130285286
7
+ data.tar.gz: 4ba3e9403fff87499b7377baa6d0a2ad359be28910c3179b3c02730a3b070d2af4965b356ba2a2686b131e43dc9763f1f2b50e72ef637bb8cdc7ec05d7070a2a
@@ -24,7 +24,7 @@ jobs:
24
24
  shell: bash
25
25
  run: gem build --verbose *.gemspec
26
26
  - name: Upload gem to GitHub cache
27
- uses: actions/upload-artifact@v4
27
+ uses: actions/upload-artifact@v5
28
28
  with:
29
29
  name: gem-artifact
30
30
  path: '*.gem'
@@ -49,7 +49,7 @@ jobs:
49
49
  packages: write # publish to rubygems.pkg.github.com
50
50
  steps:
51
51
  - name: Download gem from GitHub cache
52
- uses: actions/download-artifact@v5
52
+ uses: actions/download-artifact@v6
53
53
  with:
54
54
  name: gem-artifact
55
55
  - name: Setup GitHub packages access
@@ -69,7 +69,7 @@ jobs:
69
69
  id-token: write # rubygems.org authentication
70
70
  steps:
71
71
  - name: Download gem from GitHub cache
72
- uses: actions/download-artifact@v5
72
+ uses: actions/download-artifact@v6
73
73
  with:
74
74
  name: gem-artifact
75
75
  - uses: rubygems/configure-rubygems-credentials@v1.0.0
@@ -87,7 +87,7 @@ jobs:
87
87
  - release-to-rubygems
88
88
  steps:
89
89
  - name: Download gem from GitHub cache
90
- uses: actions/download-artifact@v5
90
+ uses: actions/download-artifact@v6
91
91
  with:
92
92
  name: gem-artifact
93
93
  - name: Install Ruby
@@ -44,6 +44,8 @@ jobs:
44
44
  with:
45
45
  ruby-version: ${{ matrix.ruby }}
46
46
  bundler-cache: true
47
+ - name: Display Ruby environment
48
+ run: bundle env
47
49
  - name: check that required tasks are available
48
50
  run: |
49
51
  bundle exec rake --rakefile Rakefile_ci -T '^strings:generate:reference$' | grep --quiet .
@@ -52,10 +54,14 @@ jobs:
52
54
  run: gem build --strict --verbose *.gemspec
53
55
 
54
56
  tests:
57
+ if: always()
55
58
  needs:
56
59
  - rubocop_and_matrix
57
60
  - test
58
61
  runs-on: ubuntu-24.04
59
62
  name: Test suite
60
63
  steps:
61
- - run: echo Test suite completed
64
+ - name: Decide whether the needed jobs succeeded or failed
65
+ uses: re-actors/alls-green@release/v1
66
+ with:
67
+ jobs: ${{ toJSON(needs) }}
data/.rubocop.yml CHANGED
@@ -3,6 +3,3 @@ inherit_from: .rubocop_todo.yml
3
3
 
4
4
  inherit_gem:
5
5
  voxpupuli-rubocop: rubocop.yml
6
-
7
- AllCops:
8
- TargetRubyVersion: 3.2
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config --no-auto-gen-timestamp`
3
- # using RuboCop version 1.79.2.
3
+ # using RuboCop version 1.81.7.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -16,7 +16,7 @@ Style/Documentation:
16
16
 
17
17
  # Offense count: 1
18
18
  # This cop supports safe autocorrection (--autocorrect).
19
- # Configuration parameters: AutoCorrect, EnforcedStyle, AllowComments.
19
+ # Configuration parameters: EnforcedStyle, AllowComments.
20
20
  # SupportedStyles: empty, nil, both
21
21
  Style/EmptyElse:
22
22
  Exclude:
data/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [v5.0.2](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.2) (2025-11-15)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v5.0.1...v5.0.2)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - Use proper job we can depend on [\#100](https://github.com/voxpupuli/voxpupuli-release/pull/100) ([bastelfreak](https://github.com/bastelfreak))
12
+ - Add syslog as runtime dependency [\#98](https://github.com/voxpupuli/voxpupuli-release/pull/98) ([bastelfreak](https://github.com/bastelfreak))
13
+
14
+ **Merged pull requests:**
15
+
16
+ - voxpupuli-rubocop: Update 4.2.0-\>5.0.0 [\#99](https://github.com/voxpupuli/voxpupuli-release/pull/99) ([bastelfreak](https://github.com/bastelfreak))
17
+
18
+ ## [v5.0.1](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.1) (2025-09-27)
19
+
20
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v5.0.0...v5.0.1)
21
+
22
+ **Fixed bugs:**
23
+
24
+ - puppet-blacksmith: Fix condition to allow 9.x & CI: Output bundler environment [\#92](https://github.com/voxpupuli/voxpupuli-release/pull/92) ([bastelfreak](https://github.com/bastelfreak))
25
+
5
26
  ## [v5.0.0](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.0) (2025-09-26)
6
27
 
7
28
  [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v4.0.0...v5.0.0)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Voxpupuli
4
4
  module Release
5
- VERSION = '5.0.0'
5
+ VERSION = '5.0.2'
6
6
  end
7
7
  end
@@ -21,8 +21,12 @@ Gem::Specification.new do |s|
21
21
  s.add_dependency 'faraday-retry', '~> 2.1'
22
22
  s.add_dependency 'github_changelog_generator', '~> 1.16', '>= 1.16.4'
23
23
  s.add_dependency 'openvox-strings', '>= 5', '< 7'
24
- s.add_dependency 'puppet-blacksmith', '~> 8.0', '< 10'
24
+ s.add_dependency 'puppet-blacksmith', '>= 8.0', '< 10'
25
25
  s.add_dependency 'rake', '~> 13.0', '>= 13.0.6'
26
+ # openvox gem depends on syslog, but doesn't list it as explicit dependency
27
+ # until Ruby 3.4, syslog was part of MRI ruby core
28
+ # https://github.com/OpenVoxProject/puppet/issues/90
29
+ s.add_dependency 'syslog', '~> 0.3.0'
26
30
 
27
- s.add_development_dependency 'voxpupuli-rubocop', '~> 4.2.0'
31
+ s.add_development_dependency 'voxpupuli-rubocop', '~> 5.0.0'
28
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voxpupuli-release
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
@@ -67,7 +67,7 @@ dependencies:
67
67
  name: puppet-blacksmith
68
68
  requirement: !ruby/object:Gem::Requirement
69
69
  requirements:
70
- - - "~>"
70
+ - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: '8.0'
73
73
  - - "<"
@@ -77,7 +77,7 @@ dependencies:
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '8.0'
83
83
  - - "<"
@@ -103,20 +103,34 @@ dependencies:
103
103
  - - ">="
104
104
  - !ruby/object:Gem::Version
105
105
  version: 13.0.6
106
+ - !ruby/object:Gem::Dependency
107
+ name: syslog
108
+ requirement: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - "~>"
111
+ - !ruby/object:Gem::Version
112
+ version: 0.3.0
113
+ type: :runtime
114
+ prerelease: false
115
+ version_requirements: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: 0.3.0
106
120
  - !ruby/object:Gem::Dependency
107
121
  name: voxpupuli-rubocop
108
122
  requirement: !ruby/object:Gem::Requirement
109
123
  requirements:
110
124
  - - "~>"
111
125
  - !ruby/object:Gem::Version
112
- version: 4.2.0
126
+ version: 5.0.0
113
127
  type: :development
114
128
  prerelease: false
115
129
  version_requirements: !ruby/object:Gem::Requirement
116
130
  requirements:
117
131
  - - "~>"
118
132
  - !ruby/object:Gem::Version
119
- version: 4.2.0
133
+ version: 5.0.0
120
134
  email:
121
135
  - voxpupuli@groups.io
122
136
  executables: []