modulesync 3.4.0 → 3.4.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/CHANGELOG.md +8 -0
- data/modulesync.gemspec +3 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8da0dddd013661a7bb0cc32467fac8fe5bd3c0b2325796ec6c35e6df2e5e3121
|
4
|
+
data.tar.gz: 5ac3727d6238f334fd4137ca483318a5b6eea6a76968b3bc80a185a7fec38d76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ace01d65b6ae1a27cd4534cf0dd67eedcd0ff4333633beb8de0be556dde2943dbe741b65dbbc704d105aee3eb4abcf3d72c4727d0eedd5a67c5d45399643af6
|
7
|
+
data.tar.gz: 6be66302f954b0f73731ce6293d2ad0386a9490713011a21a670f3905226e583b3bfa980de42ab0b2f33ca9e56b7507c62f57ce96ad03b127ee13d0ef9ca7c50
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [3.4.1](https://github.com/voxpupuli/modulesync/tree/3.4.1) (2025-05-21)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/3.4.0...3.4.1)
|
8
|
+
|
9
|
+
**Fixed bugs:**
|
10
|
+
|
11
|
+
- thor: Allow 1.2 to stay compatible with ancient facter [\#303](https://github.com/voxpupuli/modulesync/pull/303) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
5
13
|
## [3.4.0](https://github.com/voxpupuli/modulesync/tree/3.4.0) (2025-05-21)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/3.3.0...3.4.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 = '3.4.
|
8
|
+
spec.version = '3.4.1'
|
9
9
|
spec.authors = ['Vox Pupuli']
|
10
10
|
spec.email = ['voxpupuli@groups.io']
|
11
11
|
spec.summary = 'Puppet Module Synchronizer'
|
@@ -29,5 +29,6 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.add_dependency 'octokit', '>=4', '<10'
|
30
30
|
spec.add_dependency 'puppet-blacksmith', '>= 3.0', '< 9'
|
31
31
|
# 1.3.1 has a bug that was fixed in 1.3.2 https://github.com/rails/thor/pull/878
|
32
|
-
|
32
|
+
# Allow 1.2 and newer, because Perforce facter 4.10.0 only allows < 1.3....
|
33
|
+
spec.add_dependency 'thor', '~> 1.2', '!= 1.3.1'
|
33
34
|
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: 3.4.
|
4
|
+
version: 3.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
@@ -165,7 +165,7 @@ dependencies:
|
|
165
165
|
requirements:
|
166
166
|
- - "~>"
|
167
167
|
- !ruby/object:Gem::Version
|
168
|
-
version: '1.
|
168
|
+
version: '1.2'
|
169
169
|
- - "!="
|
170
170
|
- !ruby/object:Gem::Version
|
171
171
|
version: 1.3.1
|
@@ -175,7 +175,7 @@ dependencies:
|
|
175
175
|
requirements:
|
176
176
|
- - "~>"
|
177
177
|
- !ruby/object:Gem::Version
|
178
|
-
version: '1.
|
178
|
+
version: '1.2'
|
179
179
|
- - "!="
|
180
180
|
- !ruby/object:Gem::Version
|
181
181
|
version: 1.3.1
|