ra10ke 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 831394d4b5c7c271c4677d789f2a5b39972813d06161c34eaa7346db9c79f968
4
- data.tar.gz: 733635d7e5343acb84fe44722ff2f5e6676df727051c036383c5f23e53b5a9f5
3
+ metadata.gz: 1e3e814da82c6aa4acbd3b7f4f0adddc230a8dbbed906b0f35287356249a102f
4
+ data.tar.gz: 3f771cc808fd040e6ff7e2dce5a53d0c6efe5353c3389169898586fb050846aa
5
5
  SHA512:
6
- metadata.gz: bb1d2e33ac0dbabc35e2bf3f6c53a8fe21f1dac27a9a89f19d0cff0e418d3803bce05e6d7f6f470572d840edbf8e6d00cdb8bffc30cf46e7fc53a714facbaebc
7
- data.tar.gz: 83134e8848e15148d27bf34818062e0421c366965e099b3ebe9d0b954db5cd38256b3e64ceabcccb056cb0472340b9faaf8c5518675987c545134c5ade01c848
6
+ metadata.gz: 264f9fe9cf6e5ee0720d2b9058f1f0589bae6bbc7258eb6a25918d57379e6db06cda9653b4331f2d9a6627d3b900e6500476485f9f3dc41df850349adc4ba499
7
+ data.tar.gz: ba106d764f979704fdbd79e07906438791d9f4b33021731a3006e49fa252ecae98a73dd0010e5152faf4b6f002d184f4a7f90a11ad95d1ce8b68222fee9673c4
@@ -10,15 +10,15 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  if: github.repository_owner == 'voxpupuli'
12
12
  steps:
13
- - uses: actions/checkout@v3
14
- - name: Install Ruby 3.0
13
+ - uses: actions/checkout@v4
14
+ - name: Install Ruby 3.3
15
15
  uses: ruby/setup-ruby@v1
16
16
  with:
17
- ruby-version: '3.0'
17
+ ruby-version: '3.3'
18
18
  env:
19
19
  BUNDLE_WITHOUT: release
20
20
  - name: Build gem
21
- run: gem build *.gemspec
21
+ run: gem build --strict --verbose *.gemspec
22
22
  - name: Publish gem to rubygems.org
23
23
  run: gem push *.gem
24
24
  env:
@@ -13,7 +13,7 @@ jobs:
13
13
  rubocop:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
- - uses: actions/checkout@v3
16
+ - uses: actions/checkout@v4
17
17
  - name: Install Ruby ${{ matrix.ruby }}
18
18
  uses: ruby/setup-ruby@v1
19
19
  with:
@@ -32,11 +32,12 @@ jobs:
32
32
  - ruby: "3.1"
33
33
  coverage: "yes"
34
34
  - ruby: "3.2"
35
+ - ruby: "3.3"
35
36
  env:
36
37
  COVERAGE: ${{ matrix.coverage }}
37
38
  name: Ruby ${{ matrix.ruby }}
38
39
  steps:
39
- - uses: actions/checkout@v3
40
+ - uses: actions/checkout@v4
40
41
  - name: Install Ruby ${{ matrix.ruby }}
41
42
  uses: ruby/setup-ruby@v1
42
43
  with:
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2023-08-23 12:05:42 UTC using RuboCop version 1.54.2.
3
+ # on 2024-03-13 18:23:33 UTC using RuboCop version 1.62.1.
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
@@ -25,6 +25,7 @@ Lint/SuppressedException:
25
25
 
26
26
  # Offense count: 5
27
27
  # This cop supports unsafe autocorrection (--autocorrect-all).
28
+ # Configuration parameters: AutoCorrect.
28
29
  Lint/UselessAssignment:
29
30
  Exclude:
30
31
  - 'lib/ra10ke/dependencies.rb'
@@ -225,6 +226,12 @@ Style/RedundantInterpolation:
225
226
  Exclude:
226
227
  - 'lib/ra10ke/duplicates.rb'
227
228
 
229
+ # Offense count: 1
230
+ # This cop supports safe autocorrection (--autocorrect).
231
+ Style/RedundantLineContinuation:
232
+ Exclude:
233
+ - 'lib/ra10ke/validate.rb'
234
+
228
235
  # Offense count: 1
229
236
  # This cop supports unsafe autocorrection (--autocorrect-all).
230
237
  Style/RedundantSort:
data/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [v3.1.0](https://github.com/voxpupuli/ra10ke/tree/v3.1.0) (2024-06-28)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/ra10ke/compare/v3.0.0...v3.1.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Update git requirement from ~\> 1.18 to \>= 1.18, \< 3.0 [\#103](https://github.com/voxpupuli/ra10ke/pull/103) ([dependabot[bot]](https://github.com/apps/dependabot))
12
+ - Add Ruby 3.3 to CI [\#100](https://github.com/voxpupuli/ra10ke/pull/100) ([bastelfreak](https://github.com/bastelfreak))
13
+
14
+ **Merged pull requests:**
15
+
16
+ - Update voxpupuli-rubocop requirement from ~\> 2.6.0 to ~\> 2.8.0 [\#104](https://github.com/voxpupuli/ra10ke/pull/104) ([dependabot[bot]](https://github.com/apps/dependabot))
17
+ - Gemfile: add faraday as GCG dependency [\#101](https://github.com/voxpupuli/ra10ke/pull/101) ([bastelfreak](https://github.com/bastelfreak))
18
+ - Update voxpupuli-rubocop requirement from ~\> 2.4.0 to ~\> 2.6.0 [\#99](https://github.com/voxpupuli/ra10ke/pull/99) ([dependabot[bot]](https://github.com/apps/dependabot))
19
+ - Update voxpupuli-rubocop requirement from ~\> 2.3.0 to ~\> 2.4.0 [\#97](https://github.com/voxpupuli/ra10ke/pull/97) ([dependabot[bot]](https://github.com/apps/dependabot))
20
+ - Update voxpupuli-rubocop requirement from ~\> 2.2.0 to ~\> 2.3.0 [\#96](https://github.com/voxpupuli/ra10ke/pull/96) ([dependabot[bot]](https://github.com/apps/dependabot))
21
+ - Update voxpupuli-rubocop requirement from ~\> 2.0.0 to ~\> 2.2.0 [\#95](https://github.com/voxpupuli/ra10ke/pull/95) ([dependabot[bot]](https://github.com/apps/dependabot))
22
+
5
23
  ## [v3.0.0](https://github.com/voxpupuli/ra10ke/tree/v3.0.0) (2023-08-23)
6
24
 
7
25
  [Full Changelog](https://github.com/voxpupuli/ra10ke/compare/v2.0.0...v3.0.0)
@@ -22,7 +40,6 @@ All notable changes to this project will be documented in this file.
22
40
  **Merged pull requests:**
23
41
 
24
42
  - dependencies: Add strict version boundaries [\#91](https://github.com/voxpupuli/ra10ke/pull/91) ([bastelfreak](https://github.com/bastelfreak))
25
- - Bump actions/checkout from 2 to 3 [\#90](https://github.com/voxpupuli/ra10ke/pull/90) ([dependabot[bot]](https://github.com/apps/dependabot))
26
43
  - dependabot: check for github actions and gems [\#88](https://github.com/voxpupuli/ra10ke/pull/88) ([bastelfreak](https://github.com/bastelfreak))
27
44
  - Fix fixture for deprecation test [\#87](https://github.com/voxpupuli/ra10ke/pull/87) ([sebastianrakel](https://github.com/sebastianrakel))
28
45
 
data/Gemfile CHANGED
@@ -4,7 +4,8 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  group :release do
7
- gem 'github_changelog_generator', require: false
7
+ gem 'faraday-retry', '~> 2.1', require: false
8
+ gem 'github_changelog_generator', '~> 1.16.4', require: false
8
9
  end
9
10
 
10
11
  group :coverage, optional: ENV['COVERAGE'] != 'yes' do
data/Rakefile CHANGED
@@ -21,7 +21,7 @@ begin
21
21
  version = Ra10ke::VERSION
22
22
  config.future_release = "v#{version}" if /^\d+\.\d+.\d+$/.match?(version)
23
23
  config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
24
- config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog]
24
+ config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions]
25
25
  config.user = 'voxpupuli'
26
26
  config.project = 'ra10ke'
27
27
  end
data/lib/ra10ke/solve.rb CHANGED
@@ -33,7 +33,7 @@ module Ra10ke::Solve
33
33
  ignore_modules = []
34
34
  ignore_modules = File.readlines('.r10kignore').each(&:chomp!) if File.exist?('.r10kignore')
35
35
  # Actual new logic begins here:
36
- cache = (ENV['XDG_CACHE_DIR'] || File.expand_path('~/.cache'))
36
+ cache = ENV['XDG_CACHE_DIR'] || File.expand_path('~/.cache')
37
37
 
38
38
  FileUtils.mkdir_p(cache)
39
39
 
@@ -1,3 +1,3 @@
1
1
  module Ra10ke
2
- VERSION = '3.0.0'
2
+ VERSION = '3.1.0'
3
3
  end
data/ra10ke.gemspec CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.require_paths = ['lib']
17
17
  spec.required_ruby_version = '>= 2.7.0'
18
18
 
19
- spec.add_dependency 'git', '~> 1.18'
19
+ spec.add_dependency 'git', '>= 1.18', '< 3.0'
20
20
  spec.add_dependency 'puppet_forge', '~> 5.0', '>= 5.0.1'
21
21
  spec.add_dependency 'r10k', '>= 2.6.5', '< 5'
22
22
  spec.add_dependency 'rake', '~> 13.0', '>= 13.0.6'
@@ -26,5 +26,5 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency 'pry', '~> 0.14.2'
27
27
  spec.add_development_dependency 'rspec', '~> 3.6'
28
28
  spec.add_development_dependency 'simplecov', '~> 0.22.0'
29
- spec.add_development_dependency 'voxpupuli-rubocop', '~> 2.0.0'
29
+ spec.add_development_dependency 'voxpupuli-rubocop', '~> 2.8.0'
30
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ra10ke
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Theo Chatzimichos
@@ -9,22 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-08-23 00:00:00.000000000 Z
12
+ date: 2024-06-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: git
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: '1.18'
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: '3.0'
21
24
  type: :runtime
22
25
  prerelease: false
23
26
  version_requirements: !ruby/object:Gem::Requirement
24
27
  requirements:
25
- - - "~>"
28
+ - - ">="
26
29
  - !ruby/object:Gem::Version
27
30
  version: '1.18'
31
+ - - "<"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
28
34
  - !ruby/object:Gem::Dependency
29
35
  name: puppet_forge
30
36
  requirement: !ruby/object:Gem::Requirement
@@ -187,14 +193,14 @@ dependencies:
187
193
  requirements:
188
194
  - - "~>"
189
195
  - !ruby/object:Gem::Version
190
- version: 2.0.0
196
+ version: 2.8.0
191
197
  type: :development
192
198
  prerelease: false
193
199
  version_requirements: !ruby/object:Gem::Requirement
194
200
  requirements:
195
201
  - - "~>"
196
202
  - !ruby/object:Gem::Version
197
- version: 2.0.0
203
+ version: 2.8.0
198
204
  description: R10K and Puppetfile rake tasks
199
205
  email:
200
206
  - voxpupuli@groups.io
@@ -267,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
267
273
  - !ruby/object:Gem::Version
268
274
  version: '0'
269
275
  requirements: []
270
- rubygems_version: 3.2.33
276
+ rubygems_version: 3.5.11
271
277
  signing_key:
272
278
  specification_version: 4
273
279
  summary: Syntax check for the Puppetfile, check for outdated installed puppet modules