modulesync 2.7.0 → 3.1.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/CHANGELOG.md +14 -2
- data/Rakefile +1 -1
- data/modulesync.gemspec +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52c1ece84e9891163b6f6a8a54e4b867fbd473f785acfaf007e46d21338f5fa8
|
|
4
|
+
data.tar.gz: 86674966a7c373aa94678bc5efb62582e13baebd133ada527e9b002c40d48b98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02a4315090f93f8e3c7a3cdbccbd42bf5fb3f942a26df1793dcb917eeaf096dd8c8eba908eca806b6ffdaabd49c0a06d58912767bdb365823048d19f712e7da9
|
|
7
|
+
data.tar.gz: b8e6cd36e66c6f9f7c307ebe1093ae0a85130a48ca0f2de31f99044678feeaa8203dd3b07564ea9eace6ff2a882e004c78253f13a3df5f173fb66977fca1932f
|
data/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [3.1.0](https://github.com/voxpupuli/modulesync/tree/3.1.0) (2023-08-02)
|
|
6
6
|
|
|
7
|
-
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/3.0.0...3.1.0)
|
|
8
|
+
|
|
9
|
+
Release 3.0.0 was broken. It was tagged as 3.0.0 but accidentally released as 2.7.0. The only breaking change was dropping support for EoL ruby versions.
|
|
10
|
+
|
|
11
|
+
**Merged pull requests:**
|
|
12
|
+
|
|
13
|
+
- rubocop: autofix [\#273](https://github.com/voxpupuli/modulesync/pull/273) ([bastelfreak](https://github.com/bastelfreak))
|
|
14
|
+
- Update octokit requirement from \>= 4, \< 7 to \>= 4, \< 8 [\#272](https://github.com/voxpupuli/modulesync/pull/272) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
15
|
+
- Update voxpupuli-rubocop requirement from ~\> 1.3 to ~\> 2.0 [\#271](https://github.com/voxpupuli/modulesync/pull/271) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
16
|
+
|
|
17
|
+
## [3.0.0](https://github.com/voxpupuli/modulesync/tree/3.0.0) (2023-06-16)
|
|
18
|
+
|
|
19
|
+
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/2.6.0...3.0.0)
|
|
8
20
|
|
|
9
21
|
**Breaking changes:**
|
|
10
22
|
|
data/Rakefile
CHANGED
|
@@ -42,7 +42,7 @@ begin
|
|
|
42
42
|
puts 'Fixing line endings...'
|
|
43
43
|
changelog_file = File.join(__dir__, 'CHANGELOG.md')
|
|
44
44
|
changelog_txt = File.read(changelog_file)
|
|
45
|
-
new_contents = changelog_txt.gsub(
|
|
45
|
+
new_contents = changelog_txt.gsub("\r\n", "\n")
|
|
46
46
|
File.open(changelog_file, 'w') { |file| file.puts new_contents }
|
|
47
47
|
end
|
|
48
48
|
end
|
data/modulesync.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = 'modulesync'
|
|
6
|
-
spec.version = '
|
|
6
|
+
spec.version = '3.1.0'
|
|
7
7
|
spec.authors = ['Vox Pupuli']
|
|
8
8
|
spec.email = ['voxpupuli@groups.io']
|
|
9
9
|
spec.summary = 'Puppet Module Synchronizer'
|
|
@@ -21,11 +21,11 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_development_dependency 'rake'
|
|
22
22
|
spec.add_development_dependency 'rspec'
|
|
23
23
|
spec.add_development_dependency 'simplecov'
|
|
24
|
-
spec.add_development_dependency 'voxpupuli-rubocop', '~>
|
|
24
|
+
spec.add_development_dependency 'voxpupuli-rubocop', '~> 2.0'
|
|
25
25
|
|
|
26
26
|
spec.add_runtime_dependency 'git', '~>1.7'
|
|
27
27
|
spec.add_runtime_dependency 'gitlab', '~>4.0'
|
|
28
|
-
spec.add_runtime_dependency 'octokit', '>=4', '<
|
|
28
|
+
spec.add_runtime_dependency 'octokit', '>=4', '<8'
|
|
29
29
|
spec.add_runtime_dependency 'puppet-blacksmith', '>= 3.0', '< 8'
|
|
30
30
|
spec.add_runtime_dependency 'thor'
|
|
31
31
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: modulesync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-08-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aruba
|
|
@@ -86,14 +86,14 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
89
|
+
version: '2.0'
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
96
|
+
version: '2.0'
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: git
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -131,7 +131,7 @@ dependencies:
|
|
|
131
131
|
version: '4'
|
|
132
132
|
- - "<"
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
|
-
version: '
|
|
134
|
+
version: '8'
|
|
135
135
|
type: :runtime
|
|
136
136
|
prerelease: false
|
|
137
137
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -141,7 +141,7 @@ dependencies:
|
|
|
141
141
|
version: '4'
|
|
142
142
|
- - "<"
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
|
-
version: '
|
|
144
|
+
version: '8'
|
|
145
145
|
- !ruby/object:Gem::Dependency
|
|
146
146
|
name: puppet-blacksmith
|
|
147
147
|
requirement: !ruby/object:Gem::Requirement
|