beaker-hostgenerator 2.11.0 → 2.12.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 +9 -0
 - data/Gemfile +0 -4
 - data/Rakefile +2 -7
 - data/beaker-hostgenerator.gemspec +1 -0
 - data/lib/beaker-hostgenerator/data.rb +10 -0
 - data/lib/beaker-hostgenerator/version.rb +1 -1
 - metadata +17 -3
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 5ae3ea5d66e8237dc353d1c09c3603c9e0228507075ff4676922728a24791975
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 5233055d9f06580a903f54efd34c253d817a6839673445ae6a6a23fabc137178
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: e5d9cf94bb342ae5c48631f8ed903a40e670aa048f097e7babc80ac3827baf4f7684c243ed6ec4686c7161ad7c6277d69fdb77d0c90fb567d1f5f7ecc2acf759
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 005fa92817f1ecddbf60e6eaf494bdf4921f4569f01938cfb740d6e5a0ae93f5e6ade6c841a544e431170b4fad7105bd3d6413fed5770cec7f1871e21804dfec
         
     | 
| 
         @@ -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
    
    | 
         @@ -16,7 +16,7 @@ jobs: 
     | 
|
| 
       16 
16 
     | 
    
         
             
                  - name: Install Ruby ${{ matrix.ruby }}
         
     | 
| 
       17 
17 
     | 
    
         
             
                    uses: ruby/setup-ruby@v1
         
     | 
| 
       18 
18 
     | 
    
         
             
                    with:
         
     | 
| 
       19 
     | 
    
         
            -
                      ruby-version: "3. 
     | 
| 
      
 19 
     | 
    
         
            +
                      ruby-version: "3.3"
         
     | 
| 
       20 
20 
     | 
    
         
             
                      bundler-cache: true
         
     | 
| 
       21 
21 
     | 
    
         
             
                  - name: Run Rubocop
         
     | 
| 
       22 
22 
     | 
    
         
             
                    run: bundle exec rake rubocop
         
     | 
| 
         @@ -31,6 +31,7 @@ jobs: 
     | 
|
| 
       31 
31 
     | 
    
         
             
                      - ruby: "3.0"
         
     | 
| 
       32 
32 
     | 
    
         
             
                      - ruby: "3.1"
         
     | 
| 
       33 
33 
     | 
    
         
             
                      - ruby: "3.2"
         
     | 
| 
      
 34 
     | 
    
         
            +
                      - ruby: "3.3"
         
     | 
| 
       34 
35 
     | 
    
         
             
                env:
         
     | 
| 
       35 
36 
     | 
    
         
             
                  BUNDLE_WITHOUT: release:rubocop
         
     | 
| 
       36 
37 
     | 
    
         
             
                steps:
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -2,6 +2,15 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            All notable changes to this project will be documented in this file.
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
      
 5 
     | 
    
         
            +
            ## [2.12.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.12.0) (2024-05-15)
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.11.0...2.12.0)
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            **Implemented enhancements:**
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            - Add beaker-hostgenerator support for Windows 2016 FIPS [\#364](https://github.com/voxpupuli/beaker-hostgenerator/pull/364) ([smahima27](https://github.com/smahima27))
         
     | 
| 
      
 12 
     | 
    
         
            +
            - Add Ruby 3.3 to CI [\#363](https://github.com/voxpupuli/beaker-hostgenerator/pull/363) ([bastelfreak](https://github.com/bastelfreak))
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
       5 
14 
     | 
    
         
             
            ## [2.11.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.11.0) (2024-04-12)
         
     | 
| 
       6 
15 
     | 
    
         | 
| 
       7 
16 
     | 
    
         
             
            [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.10.0...2.11.0)
         
     | 
    
        data/Gemfile
    CHANGED
    
    
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -70,12 +70,7 @@ rescue LoadError 
     | 
|
| 
       70 
70 
     | 
    
         
             
            end
         
     | 
| 
       71 
71 
     | 
    
         | 
| 
       72 
72 
     | 
    
         
             
            begin
         
     | 
| 
       73 
     | 
    
         
            -
              require 'rubocop/ 
     | 
| 
      
 73 
     | 
    
         
            +
              require 'voxpupuli/rubocop/rake'
         
     | 
| 
       74 
74 
     | 
    
         
             
            rescue LoadError
         
     | 
| 
       75 
     | 
    
         
            -
              #  
     | 
| 
       76 
     | 
    
         
            -
            else
         
     | 
| 
       77 
     | 
    
         
            -
              RuboCop::RakeTask.new(:rubocop) do |task|
         
     | 
| 
       78 
     | 
    
         
            -
                # These make the rubocop experience maybe slightly less terrible
         
     | 
| 
       79 
     | 
    
         
            -
                task.options = ['--display-cop-names', '--display-style-guide', '--extra-details']
         
     | 
| 
       80 
     | 
    
         
            -
              end
         
     | 
| 
      
 75 
     | 
    
         
            +
              # the voxpupuli-rubocop gem is optional
         
     | 
| 
       81 
76 
     | 
    
         
             
            end
         
     | 
| 
         @@ -28,6 +28,7 @@ Gem::Specification.new do |s| 
     | 
|
| 
       28 
28 
     | 
    
         
             
              s.add_development_dependency 'rake', '~> 13.0'
         
     | 
| 
       29 
29 
     | 
    
         
             
              s.add_development_dependency 'rspec', '~> 3.0'
         
     | 
| 
       30 
30 
     | 
    
         
             
              s.add_development_dependency 'rspec-its', '~> 1.3'
         
     | 
| 
      
 31 
     | 
    
         
            +
              s.add_development_dependency 'voxpupuli-rubocop', '~> 2.7.0'
         
     | 
| 
       31 
32 
     | 
    
         | 
| 
       32 
33 
     | 
    
         
             
              # Run time dependencies
         
     | 
| 
       33 
34 
     | 
    
         
             
              s.add_runtime_dependency 'deep_merge', '~> 1.0'
         
     | 
| 
         @@ -813,6 +813,16 @@ module BeakerHostGenerator 
     | 
|
| 
       813 
813 
     | 
    
         
             
                                      'locale' => 'fr',
         
     | 
| 
       814 
814 
     | 
    
         
             
                                    },
         
     | 
| 
       815 
815 
     | 
    
         
             
                                  },
         
     | 
| 
      
 816 
     | 
    
         
            +
                                  'windowsfips2016-6432' => {
         
     | 
| 
      
 817 
     | 
    
         
            +
                                    general: {
         
     | 
| 
      
 818 
     | 
    
         
            +
                                      'platform' => 'windows-2016-64',
         
     | 
| 
      
 819 
     | 
    
         
            +
                                      'packaging_platform' => 'windowsfips-2016-x64',
         
     | 
| 
      
 820 
     | 
    
         
            +
                                      'ruby_arch' => 'x64',
         
     | 
| 
      
 821 
     | 
    
         
            +
                                    },
         
     | 
| 
      
 822 
     | 
    
         
            +
                                    vmpooler: {
         
     | 
| 
      
 823 
     | 
    
         
            +
                                      'template' => 'win-2016-fips-x86_64',
         
     | 
| 
      
 824 
     | 
    
         
            +
                                    },
         
     | 
| 
      
 825 
     | 
    
         
            +
                                  },
         
     | 
| 
       816 
826 
     | 
    
         
             
                                  'windows2019-64' => {
         
     | 
| 
       817 
827 
     | 
    
         
             
                                    general: {
         
     | 
| 
       818 
828 
     | 
    
         
             
                                      'platform' => 'windows-2019-64',
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: beaker-hostgenerator
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.12.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Branan Purvine-Riley
         
     | 
| 
         @@ -11,7 +11,7 @@ authors: 
     | 
|
| 
       11 
11 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       12 
12 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       13 
13 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       14 
     | 
    
         
            -
            date: 2024- 
     | 
| 
      
 14 
     | 
    
         
            +
            date: 2024-05-15 00:00:00.000000000 Z
         
     | 
| 
       15 
15 
     | 
    
         
             
            dependencies:
         
     | 
| 
       16 
16 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       17 
17 
     | 
    
         
             
              name: fakefs
         
     | 
| 
         @@ -103,6 +103,20 @@ dependencies: 
     | 
|
| 
       103 
103 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       104 
104 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       105 
105 
     | 
    
         
             
                    version: '1.3'
         
     | 
| 
      
 106 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 107 
     | 
    
         
            +
              name: voxpupuli-rubocop
         
     | 
| 
      
 108 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 109 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 110 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 111 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 112 
     | 
    
         
            +
                    version: 2.7.0
         
     | 
| 
      
 113 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 114 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 115 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 116 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 117 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 118 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 119 
     | 
    
         
            +
                    version: 2.7.0
         
     | 
| 
       106 
120 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       107 
121 
     | 
    
         
             
              name: deep_merge
         
     | 
| 
       108 
122 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -181,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       181 
195 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       182 
196 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       183 
197 
     | 
    
         
             
            requirements: []
         
     | 
| 
       184 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
      
 198 
     | 
    
         
            +
            rubygems_version: 3.5.9
         
     | 
| 
       185 
199 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       186 
200 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       187 
201 
     | 
    
         
             
            summary: Beaker Host Generator Utility
         
     |