voxpupuli-release 4.0.0 → 5.0.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 +4 -4
 - data/.github/workflows/release.yml +4 -4
 - data/.github/workflows/test.yml +4 -2
 - data/.rubocop.yml +3 -0
 - data/.rubocop_todo.yml +2 -2
 - data/CHANGELOG.md +21 -0
 - data/lib/voxpupuli/release/version.rb +1 -1
 - data/voxpupuli-release.gemspec +4 -4
 - metadata +21 -12
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: b7c35237a83715989a744ab72372f5eccc508fcdeb89713f2e11bd0e51cf79be
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 11de1c3df9a267820c5ac5f90ca241596498002b6fd8b45519ce9e9855e03449
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: '07099661d4708587e0c89aced0ec4598d415efed369dc00c0e009d5acda55a3be0f3d88bc22102a1cd3e141ff90fe800d0fe760cc20d3c03d766baa41db8b545'
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 1d97c3386f61056013ee9a3701b7bbf0663abd08259d89dea6771784511996296283170919f5b8e83794106352c70accf8ec83ce913b517e8b19415198679d3e
         
     | 
| 
         @@ -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,12 +38,14 @@ 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:
         
     | 
| 
       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 .
         
     | 
    
        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,27 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            All notable changes to this project will be documented in this file.
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
      
 5 
     | 
    
         
            +
            ## [v5.0.1](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.1) (2025-09-27)
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v5.0.0...v5.0.1)
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            **Fixed bugs:**
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            - 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))
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            ## [v5.0.0](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.0) (2025-09-26)
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v4.0.0...v5.0.0)
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            **Breaking changes:**
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            - Require Ruby 3.2+ [\#88](https://github.com/voxpupuli/voxpupuli-release/pull/88) ([bastelfreak](https://github.com/bastelfreak))
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            **Implemented enhancements:**
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            - puppet-blacksmith: Allow 9.x [\#90](https://github.com/voxpupuli/voxpupuli-release/pull/90) ([bastelfreak](https://github.com/bastelfreak))
         
     | 
| 
      
 24 
     | 
    
         
            +
            - openvox-strings: Allow 6.x [\#89](https://github.com/voxpupuli/voxpupuli-release/pull/89) ([bastelfreak](https://github.com/bastelfreak))
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
       5 
26 
     | 
    
         
             
            ## [v4.0.0](https://github.com/voxpupuli/voxpupuli-release/tree/v4.0.0) (2025-06-10)
         
     | 
| 
       6 
27 
     | 
    
         | 
| 
       7 
28 
     | 
    
         
             
            [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', ' 
     | 
| 
      
 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.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Vox Pupuli
         
     | 
| 
         @@ -47,30 +47,42 @@ 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
         
     | 
| 
       63 
69 
     | 
    
         
             
                requirements:
         
     | 
| 
       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
         
     | 
| 
       70 
79 
     | 
    
         
             
                requirements:
         
     | 
| 
       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: []
         
     |