voxpupuli-release 4.0.0 → 5.0.0
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 +2 -2
- data/.rubocop.yml +3 -0
- data/.rubocop_todo.yml +2 -2
- data/CHANGELOG.md +13 -0
- data/lib/voxpupuli/release/version.rb +1 -1
- data/voxpupuli-release.gemspec +4 -4
- metadata +19 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d83057c199c6174f700959cb0e855661c7dbc28324f8f56bd2ab1461a762a0de
|
4
|
+
data.tar.gz: 5e45660cda84bceac73ad164aef002ac49c3b25d8c06cd815477103c5d83ef7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e668b233809c22f9f0597740636619bff30c5a521eb7c8f65d0914c78e8779d1e0a63a1791a6844d1cd1777087989016fc543d8485e17200c01f3fe304b1c51
|
7
|
+
data.tar.gz: a6a98b1c792b8e884c1eac0c6ecd3206512d57dd0571081f4f6db3d64f6734c981a393d352cb145980c9a54ed18f51099871894287fd1ca1ab5eee16c3983d15
|
@@ -15,7 +15,7 @@ jobs:
|
|
15
15
|
permissions:
|
16
16
|
contents: write # clone repo and create release
|
17
17
|
steps:
|
18
|
-
- uses: actions/checkout@
|
18
|
+
- uses: actions/checkout@v5
|
19
19
|
- name: Install Ruby
|
20
20
|
uses: ruby/setup-ruby@v1
|
21
21
|
with:
|
@@ -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@v5
|
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@v5
|
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@v5
|
91
91
|
with:
|
92
92
|
name: gem-artifact
|
93
93
|
- name: Install Ruby
|
data/.github/workflows/test.yml
CHANGED
@@ -19,7 +19,7 @@ jobs:
|
|
19
19
|
outputs:
|
20
20
|
ruby: ${{ steps.ruby.outputs.versions }}
|
21
21
|
steps:
|
22
|
-
- uses: actions/checkout@
|
22
|
+
- uses: actions/checkout@v5
|
23
23
|
- name: Install Ruby ${{ matrix.ruby }}
|
24
24
|
uses: ruby/setup-ruby@v1
|
25
25
|
with:
|
@@ -38,7 +38,7 @@ jobs:
|
|
38
38
|
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
39
39
|
name: Ruby ${{ matrix.ruby }}
|
40
40
|
steps:
|
41
|
-
- uses: actions/checkout@
|
41
|
+
- uses: actions/checkout@v5
|
42
42
|
- name: Install Ruby ${{ matrix.ruby }}
|
43
43
|
uses: ruby/setup-ruby@v1
|
44
44
|
with:
|
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.79.2.
|
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
|
@@ -24,7 +24,7 @@ Style/EmptyElse:
|
|
24
24
|
|
25
25
|
# Offense count: 1
|
26
26
|
# This cop supports safe autocorrection (--autocorrect).
|
27
|
-
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
|
27
|
+
# Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
|
28
28
|
# URISchemes: http, https
|
29
29
|
Layout/LineLength:
|
30
30
|
Max: 128
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,19 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [v5.0.0](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.0) (2025-09-26)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v4.0.0...v5.0.0)
|
8
|
+
|
9
|
+
**Breaking changes:**
|
10
|
+
|
11
|
+
- Require Ruby 3.2+ [\#88](https://github.com/voxpupuli/voxpupuli-release/pull/88) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
13
|
+
**Implemented enhancements:**
|
14
|
+
|
15
|
+
- puppet-blacksmith: Allow 9.x [\#90](https://github.com/voxpupuli/voxpupuli-release/pull/90) ([bastelfreak](https://github.com/bastelfreak))
|
16
|
+
- openvox-strings: Allow 6.x [\#89](https://github.com/voxpupuli/voxpupuli-release/pull/89) ([bastelfreak](https://github.com/bastelfreak))
|
17
|
+
|
5
18
|
## [v4.0.0](https://github.com/voxpupuli/voxpupuli-release/tree/v4.0.0) (2025-06-10)
|
6
19
|
|
7
20
|
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v3.2.3...v4.0.0)
|
data/voxpupuli-release.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.summary = 'Helpers for deploying Vox Pupuli modules'
|
13
13
|
s.licenses = 'Apache-2.0'
|
14
14
|
|
15
|
-
s.required_ruby_version = '>= 2
|
15
|
+
s.required_ruby_version = '>= 3.2'
|
16
16
|
|
17
17
|
s.files = `git ls-files`.split("\n")
|
18
18
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
@@ -20,9 +20,9 @@ Gem::Specification.new do |s|
|
|
20
20
|
# Runtime dependencies, but also probably dependencies of requiring projects
|
21
21
|
s.add_dependency 'faraday-retry', '~> 2.1'
|
22
22
|
s.add_dependency 'github_changelog_generator', '~> 1.16', '>= 1.16.4'
|
23
|
-
s.add_dependency 'openvox-strings', '
|
24
|
-
s.add_dependency 'puppet-blacksmith', '~> 8.0'
|
23
|
+
s.add_dependency 'openvox-strings', '>= 5', '< 7'
|
24
|
+
s.add_dependency 'puppet-blacksmith', '~> 8.0', '< 10'
|
25
25
|
s.add_dependency 'rake', '~> 13.0', '>= 13.0.6'
|
26
26
|
|
27
|
-
s.add_development_dependency 'voxpupuli-rubocop', '~>
|
27
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 4.2.0'
|
28
28
|
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:
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
@@ -47,16 +47,22 @@ dependencies:
|
|
47
47
|
name: openvox-strings
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
49
49
|
requirements:
|
50
|
-
- - "
|
50
|
+
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: '5'
|
53
|
+
- - "<"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '7'
|
53
56
|
type: :runtime
|
54
57
|
prerelease: false
|
55
58
|
version_requirements: !ruby/object:Gem::Requirement
|
56
59
|
requirements:
|
57
|
-
- - "
|
60
|
+
- - ">="
|
58
61
|
- !ruby/object:Gem::Version
|
59
62
|
version: '5'
|
63
|
+
- - "<"
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '7'
|
60
66
|
- !ruby/object:Gem::Dependency
|
61
67
|
name: puppet-blacksmith
|
62
68
|
requirement: !ruby/object:Gem::Requirement
|
@@ -64,6 +70,9 @@ dependencies:
|
|
64
70
|
- - "~>"
|
65
71
|
- !ruby/object:Gem::Version
|
66
72
|
version: '8.0'
|
73
|
+
- - "<"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '10'
|
67
76
|
type: :runtime
|
68
77
|
prerelease: false
|
69
78
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -71,6 +80,9 @@ dependencies:
|
|
71
80
|
- - "~>"
|
72
81
|
- !ruby/object:Gem::Version
|
73
82
|
version: '8.0'
|
83
|
+
- - "<"
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '10'
|
74
86
|
- !ruby/object:Gem::Dependency
|
75
87
|
name: rake
|
76
88
|
requirement: !ruby/object:Gem::Requirement
|
@@ -97,14 +109,14 @@ dependencies:
|
|
97
109
|
requirements:
|
98
110
|
- - "~>"
|
99
111
|
- !ruby/object:Gem::Version
|
100
|
-
version:
|
112
|
+
version: 4.2.0
|
101
113
|
type: :development
|
102
114
|
prerelease: false
|
103
115
|
version_requirements: !ruby/object:Gem::Requirement
|
104
116
|
requirements:
|
105
117
|
- - "~>"
|
106
118
|
- !ruby/object:Gem::Version
|
107
|
-
version:
|
119
|
+
version: 4.2.0
|
108
120
|
email:
|
109
121
|
- voxpupuli@groups.io
|
110
122
|
executables: []
|
@@ -139,17 +151,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
139
151
|
requirements:
|
140
152
|
- - ">="
|
141
153
|
- !ruby/object:Gem::Version
|
142
|
-
version: '2
|
143
|
-
- - "<"
|
144
|
-
- !ruby/object:Gem::Version
|
145
|
-
version: '4'
|
154
|
+
version: '3.2'
|
146
155
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
156
|
requirements:
|
148
157
|
- - ">="
|
149
158
|
- !ruby/object:Gem::Version
|
150
159
|
version: '0'
|
151
160
|
requirements: []
|
152
|
-
rubygems_version: 3.6.
|
161
|
+
rubygems_version: 3.6.9
|
153
162
|
specification_version: 4
|
154
163
|
summary: Helpers for deploying Vox Pupuli modules
|
155
164
|
test_files: []
|