voxpupuli-release 3.0.1 → 3.2.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 +2 -2
- data/.github/workflows/test.yml +2 -1
- data/CHANGELOG.md +25 -0
- data/lib/voxpupuli/release/rake_tasks.rb +1 -1
- data/lib/voxpupuli/release/version.rb +1 -1
- data/voxpupuli-release.gemspec +6 -6
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5a71b82da32b6356675224d714a8890b589f81bdafd855e37b995c96336e310
|
|
4
|
+
data.tar.gz: 4297290e4e7ce282a7fd55628010178a4beac5a1c5fd8681c768225ca272a99d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 737f6e52f0eb851dd3150c57819430112db38917490ccf1b9c712cca00f660495e60dbc8c058ddbcc294e219522894c2f064fa56654acb8b7d144893fa240492
|
|
7
|
+
data.tar.gz: 5073576eee202a9a02170b2567dcb7957eca0c0b6ea6338a464514f1fa83b0ceee7a10ec5d62b583f3c0e232b9bc01a17dfb16efd76b2b3a4dd0ee879450de3d
|
|
@@ -11,10 +11,10 @@ jobs:
|
|
|
11
11
|
if: github.repository_owner == 'voxpupuli'
|
|
12
12
|
steps:
|
|
13
13
|
- uses: actions/checkout@v4
|
|
14
|
-
- name: Install Ruby 3.
|
|
14
|
+
- name: Install Ruby 3.3
|
|
15
15
|
uses: ruby/setup-ruby@v1
|
|
16
16
|
with:
|
|
17
|
-
ruby-version: '3.
|
|
17
|
+
ruby-version: '3.3'
|
|
18
18
|
env:
|
|
19
19
|
BUNDLE_WITHOUT: release
|
|
20
20
|
- name: Build gem
|
data/.github/workflows/test.yml
CHANGED
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
18
18
|
uses: ruby/setup-ruby@v1
|
|
19
19
|
with:
|
|
20
|
-
ruby-version: "3.
|
|
20
|
+
ruby-version: "3.3"
|
|
21
21
|
bundler-cache: true
|
|
22
22
|
- name: Run Rubocop
|
|
23
23
|
run: bundle exec rake rubocop
|
|
@@ -31,6 +31,7 @@ jobs:
|
|
|
31
31
|
- "3.0"
|
|
32
32
|
- "3.1"
|
|
33
33
|
- "3.2"
|
|
34
|
+
- "3.3"
|
|
34
35
|
name: Ruby ${{ matrix.ruby }}
|
|
35
36
|
steps:
|
|
36
37
|
- uses: actions/checkout@v4
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [v3.2.0](https://github.com/voxpupuli/voxpupuli-release/tree/v3.2.0) (2024-12-19)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v3.1.0...v3.2.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- puppet-modulebuilder: Switch to 2.x; use file allowlist when building modules [\#72](https://github.com/voxpupuli/voxpupuli-release/pull/72) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
|
+
|
|
13
|
+
## [v3.1.0](https://github.com/voxpupuli/voxpupuli-release/tree/v3.1.0) (2024-07-05)
|
|
14
|
+
|
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v3.0.1...v3.1.0)
|
|
16
|
+
|
|
17
|
+
**Implemented enhancements:**
|
|
18
|
+
|
|
19
|
+
- Add Ruby 3.3 to CI [\#66](https://github.com/voxpupuli/voxpupuli-release/pull/66) ([bastelfreak](https://github.com/bastelfreak))
|
|
20
|
+
- voxpupuli-rubocop: Update to 2.5.0 [\#65](https://github.com/voxpupuli/voxpupuli-release/pull/65) ([bastelfreak](https://github.com/bastelfreak))
|
|
21
|
+
|
|
22
|
+
**Fixed bugs:**
|
|
23
|
+
|
|
24
|
+
- release:prep task: actually commit files [\#64](https://github.com/voxpupuli/voxpupuli-release/pull/64) ([bastelfreak](https://github.com/bastelfreak))
|
|
25
|
+
|
|
26
|
+
**Merged pull requests:**
|
|
27
|
+
|
|
28
|
+
- voxpupuli-rubocop: Update to 2.8.0 [\#67](https://github.com/voxpupuli/voxpupuli-release/pull/67) ([bastelfreak](https://github.com/bastelfreak))
|
|
29
|
+
|
|
5
30
|
## [v3.0.1](https://github.com/voxpupuli/voxpupuli-release/tree/v3.0.1) (2023-10-05)
|
|
6
31
|
|
|
7
32
|
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v3.0.0...v3.0.1)
|
|
@@ -108,7 +108,7 @@ namespace :release do
|
|
|
108
108
|
Please review these changes and commit them to a new branch:
|
|
109
109
|
|
|
110
110
|
git checkout -b release-#{v}
|
|
111
|
-
git commit --gpg-sign -
|
|
111
|
+
git commit --gpg-sign -am "Release #{v}"
|
|
112
112
|
|
|
113
113
|
Then open a Pull-Request and wait for it to be reviewed and merged).
|
|
114
114
|
MESSAGE
|
data/voxpupuli-release.gemspec
CHANGED
|
@@ -18,11 +18,11 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
19
19
|
|
|
20
20
|
# Runtime dependencies, but also probably dependencies of requiring projects
|
|
21
|
-
s.
|
|
22
|
-
s.
|
|
23
|
-
s.
|
|
24
|
-
s.
|
|
25
|
-
s.
|
|
21
|
+
s.add_dependency 'faraday-retry', '~> 2.1'
|
|
22
|
+
s.add_dependency 'github_changelog_generator', '~> 1.16', '>= 1.16.4'
|
|
23
|
+
s.add_dependency 'puppet-blacksmith', '~> 8.0'
|
|
24
|
+
s.add_dependency 'puppet-strings', '~> 4'
|
|
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', '~> 3.0.0'
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: voxpupuli-release
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0
|
|
4
|
+
version: 3.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday-retry
|
|
@@ -50,14 +50,14 @@ dependencies:
|
|
|
50
50
|
requirements:
|
|
51
51
|
- - "~>"
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '
|
|
53
|
+
version: '8.0'
|
|
54
54
|
type: :runtime
|
|
55
55
|
prerelease: false
|
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
58
|
- - "~>"
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '
|
|
60
|
+
version: '8.0'
|
|
61
61
|
- !ruby/object:Gem::Dependency
|
|
62
62
|
name: puppet-strings
|
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -98,15 +98,15 @@ dependencies:
|
|
|
98
98
|
requirements:
|
|
99
99
|
- - "~>"
|
|
100
100
|
- !ruby/object:Gem::Version
|
|
101
|
-
version:
|
|
101
|
+
version: 3.0.0
|
|
102
102
|
type: :development
|
|
103
103
|
prerelease: false
|
|
104
104
|
version_requirements: !ruby/object:Gem::Requirement
|
|
105
105
|
requirements:
|
|
106
106
|
- - "~>"
|
|
107
107
|
- !ruby/object:Gem::Version
|
|
108
|
-
version:
|
|
109
|
-
description:
|
|
108
|
+
version: 3.0.0
|
|
109
|
+
description:
|
|
110
110
|
email:
|
|
111
111
|
- voxpupuli@groups.io
|
|
112
112
|
executables: []
|
|
@@ -133,7 +133,7 @@ homepage: https://github.com/voxpupuli/voxpupuli-release
|
|
|
133
133
|
licenses:
|
|
134
134
|
- Apache-2.0
|
|
135
135
|
metadata: {}
|
|
136
|
-
post_install_message:
|
|
136
|
+
post_install_message:
|
|
137
137
|
rdoc_options: []
|
|
138
138
|
require_paths:
|
|
139
139
|
- lib
|
|
@@ -151,8 +151,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '0'
|
|
153
153
|
requirements: []
|
|
154
|
-
rubygems_version: 3.
|
|
155
|
-
signing_key:
|
|
154
|
+
rubygems_version: 3.5.22
|
|
155
|
+
signing_key:
|
|
156
156
|
specification_version: 4
|
|
157
157
|
summary: Helpers for deploying Vox Pupuli modules
|
|
158
158
|
test_files: []
|