modulesync 4.1.0 → 4.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/.rubocop.yml +0 -3
- data/.rubocop_todo.yml +3 -4
- data/CHANGELOG.md +16 -0
- data/modulesync.gemspec +7 -7
- metadata +19 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79b92d3120eabd8034f28fec21a10f0a5d67327cb4317018067493260b87082d
|
4
|
+
data.tar.gz: 4c3fffab7cd0aa697a90164485b36efad501e6432170373aabe1e911a9d8c7c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98cd5f5b84af7b68b042ecb240f995e3d597eae0e9cb86eab1001f56df7ff0ac22916cd4c21654409c79955cfb74455a53a4fa748685b8764819c7dbf53f334b
|
7
|
+
data.tar.gz: 589f8009a87934a82935434e4e657f87065efc179e7326f713a74bf3c5c403ef3e93b11856532e3b2f5466e24d24afacceb3b2cddd82af78f52da0871a6f27c2
|
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.81.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
|
@@ -66,8 +66,7 @@ RSpec/NestedGroups:
|
|
66
66
|
Max: 5
|
67
67
|
|
68
68
|
# Offense count: 2
|
69
|
-
# Configuration parameters:
|
70
|
-
# Include: **/*_spec.rb
|
69
|
+
# Configuration parameters: CustomTransform, IgnoreMethods, IgnoreMetadata.
|
71
70
|
RSpec/SpecFilePathFormat:
|
72
71
|
Exclude:
|
73
72
|
- '**/spec/routing/**/*'
|
@@ -108,7 +107,7 @@ Style/OptionalBooleanParameter:
|
|
108
107
|
Exclude:
|
109
108
|
- 'lib/modulesync/puppet_module.rb'
|
110
109
|
|
111
|
-
# Offense count:
|
110
|
+
# Offense count: 7
|
112
111
|
# This cop supports safe autocorrection (--autocorrect).
|
113
112
|
# Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
|
114
113
|
# URISchemes: http, https
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [4.2.0](https://github.com/voxpupuli/modulesync/tree/4.2.0) (2025-10-16)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/4.1.0...4.2.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- git: Allow 4.x [\#327](https://github.com/voxpupuli/modulesync/pull/327) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
- puppet-blacksmith: Allow 9.x [\#325](https://github.com/voxpupuli/modulesync/pull/325) ([bastelfreak](https://github.com/bastelfreak))
|
13
|
+
|
14
|
+
**Merged pull requests:**
|
15
|
+
|
16
|
+
- Update gitlab requirement from \>= 4, \< 6 to \>= 4, \< 7 [\#330](https://github.com/voxpupuli/modulesync/pull/330) ([dependabot[bot]](https://github.com/apps/dependabot))
|
17
|
+
- Update octokit requirement from \>= 4, \< 10 to \>= 4, \< 11 [\#329](https://github.com/voxpupuli/modulesync/pull/329) ([dependabot[bot]](https://github.com/apps/dependabot))
|
18
|
+
- Update cucumber requirement from ~\> 9.2 to ~\> 10.1 [\#328](https://github.com/voxpupuli/modulesync/pull/328) ([dependabot[bot]](https://github.com/apps/dependabot))
|
19
|
+
- voxpupuli-rubocop: Update 4.2.0-\>5.0.0 [\#324](https://github.com/voxpupuli/modulesync/pull/324) ([bastelfreak](https://github.com/bastelfreak))
|
20
|
+
|
5
21
|
## [4.1.0](https://github.com/voxpupuli/modulesync/tree/4.1.0) (2025-10-16)
|
6
22
|
|
7
23
|
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/4.0.1...4.1.0)
|
data/modulesync.gemspec
CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'modulesync'
|
8
|
-
spec.version = '4.
|
8
|
+
spec.version = '4.2.0'
|
9
9
|
spec.authors = ['Vox Pupuli']
|
10
10
|
spec.email = ['voxpupuli@groups.io']
|
11
11
|
spec.summary = 'Puppet Module Synchronizer'
|
@@ -19,14 +19,14 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.require_paths = ['lib']
|
20
20
|
|
21
21
|
spec.add_development_dependency 'aruba', '~>2.0'
|
22
|
-
spec.add_development_dependency 'cucumber', '~>
|
22
|
+
spec.add_development_dependency 'cucumber', '~> 10.1'
|
23
23
|
spec.add_development_dependency 'rake', '~> 13.2', '>= 13.2.1'
|
24
24
|
spec.add_development_dependency 'rspec', '~> 3.13'
|
25
|
-
spec.add_development_dependency 'voxpupuli-rubocop', '~>
|
25
|
+
spec.add_development_dependency 'voxpupuli-rubocop', '~> 5.0.0'
|
26
26
|
|
27
|
-
spec.add_dependency 'git', '
|
28
|
-
spec.add_dependency 'gitlab', '>=4', '<
|
29
|
-
spec.add_dependency 'octokit', '>=4', '<
|
30
|
-
spec.add_dependency 'puppet-blacksmith', '>= 3.0', '<
|
27
|
+
spec.add_dependency 'git', '>= 3.0', '< 5'
|
28
|
+
spec.add_dependency 'gitlab', '>=4', '<7'
|
29
|
+
spec.add_dependency 'octokit', '>=4', '<11'
|
30
|
+
spec.add_dependency 'puppet-blacksmith', '>= 3.0', '< 10'
|
31
31
|
spec.add_dependency 'thor', '~> 1.4'
|
32
32
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: modulesync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
@@ -29,14 +29,14 @@ dependencies:
|
|
29
29
|
requirements:
|
30
30
|
- - "~>"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '10.1'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '
|
39
|
+
version: '10.1'
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: rake
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
@@ -77,28 +77,34 @@ dependencies:
|
|
77
77
|
requirements:
|
78
78
|
- - "~>"
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
version:
|
80
|
+
version: 5.0.0
|
81
81
|
type: :development
|
82
82
|
prerelease: false
|
83
83
|
version_requirements: !ruby/object:Gem::Requirement
|
84
84
|
requirements:
|
85
85
|
- - "~>"
|
86
86
|
- !ruby/object:Gem::Version
|
87
|
-
version:
|
87
|
+
version: 5.0.0
|
88
88
|
- !ruby/object:Gem::Dependency
|
89
89
|
name: git
|
90
90
|
requirement: !ruby/object:Gem::Requirement
|
91
91
|
requirements:
|
92
|
-
- - "
|
92
|
+
- - ">="
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: '3.0'
|
95
|
+
- - "<"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '5'
|
95
98
|
type: :runtime
|
96
99
|
prerelease: false
|
97
100
|
version_requirements: !ruby/object:Gem::Requirement
|
98
101
|
requirements:
|
99
|
-
- - "
|
102
|
+
- - ">="
|
100
103
|
- !ruby/object:Gem::Version
|
101
104
|
version: '3.0'
|
105
|
+
- - "<"
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '5'
|
102
108
|
- !ruby/object:Gem::Dependency
|
103
109
|
name: gitlab
|
104
110
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,7 +114,7 @@ dependencies:
|
|
108
114
|
version: '4'
|
109
115
|
- - "<"
|
110
116
|
- !ruby/object:Gem::Version
|
111
|
-
version: '
|
117
|
+
version: '7'
|
112
118
|
type: :runtime
|
113
119
|
prerelease: false
|
114
120
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -118,7 +124,7 @@ dependencies:
|
|
118
124
|
version: '4'
|
119
125
|
- - "<"
|
120
126
|
- !ruby/object:Gem::Version
|
121
|
-
version: '
|
127
|
+
version: '7'
|
122
128
|
- !ruby/object:Gem::Dependency
|
123
129
|
name: octokit
|
124
130
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,7 +134,7 @@ dependencies:
|
|
128
134
|
version: '4'
|
129
135
|
- - "<"
|
130
136
|
- !ruby/object:Gem::Version
|
131
|
-
version: '
|
137
|
+
version: '11'
|
132
138
|
type: :runtime
|
133
139
|
prerelease: false
|
134
140
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -138,7 +144,7 @@ dependencies:
|
|
138
144
|
version: '4'
|
139
145
|
- - "<"
|
140
146
|
- !ruby/object:Gem::Version
|
141
|
-
version: '
|
147
|
+
version: '11'
|
142
148
|
- !ruby/object:Gem::Dependency
|
143
149
|
name: puppet-blacksmith
|
144
150
|
requirement: !ruby/object:Gem::Requirement
|
@@ -148,7 +154,7 @@ dependencies:
|
|
148
154
|
version: '3.0'
|
149
155
|
- - "<"
|
150
156
|
- !ruby/object:Gem::Version
|
151
|
-
version: '
|
157
|
+
version: '10'
|
152
158
|
type: :runtime
|
153
159
|
prerelease: false
|
154
160
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -158,7 +164,7 @@ dependencies:
|
|
158
164
|
version: '3.0'
|
159
165
|
- - "<"
|
160
166
|
- !ruby/object:Gem::Version
|
161
|
-
version: '
|
167
|
+
version: '10'
|
162
168
|
- !ruby/object:Gem::Dependency
|
163
169
|
name: thor
|
164
170
|
requirement: !ruby/object:Gem::Requirement
|