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 +4 -4
- data/.github/workflows/release.yml +4 -4
- data/.github/workflows/test.yml +7 -1
- data/.rubocop.yml +0 -3
- data/.rubocop_todo.yml +2 -2
- data/CHANGELOG.md +21 -0
- data/lib/voxpupuli/release/version.rb +1 -1
- data/voxpupuli-release.gemspec +6 -2
- metadata +19 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 540b7eb6444d1bafdfe66518525b57e4807ab8f332eadc0c3fc1306977911e5f
|
|
4
|
+
data.tar.gz: 0ba1493d768130b94378fe0e182828ea0bbb5182ca1eaee87207138108eea85a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
90
|
+
uses: actions/download-artifact@v6
|
|
91
91
|
with:
|
|
92
92
|
name: gem-artifact
|
|
93
93
|
- name: Install Ruby
|
data/.github/workflows/test.yml
CHANGED
|
@@ -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
|
-
-
|
|
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
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.
|
|
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:
|
|
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)
|
data/voxpupuli-release.gemspec
CHANGED
|
@@ -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', '
|
|
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', '~>
|
|
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.
|
|
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:
|
|
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:
|
|
133
|
+
version: 5.0.0
|
|
120
134
|
email:
|
|
121
135
|
- voxpupuli@groups.io
|
|
122
136
|
executables: []
|