modulesync 3.4.2 → 3.5.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 +9 -0
- data/README.md +3 -4
- data/modulesync.gemspec +2 -4
- metadata +4 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96b3469fe88cd9a94f134b56d7b45f16daa52ebac3a132f5314d09afe6776e8e
|
4
|
+
data.tar.gz: f8ebae9fe9ca9f71d4cdca4cf9afdb38e24115ea2f23467900eeeb4ac0e0151e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 994a5ad6429d50add848d5879c493411dd98b8856ca6ef8bcd4efd506d82171394f593b78e513083c306b48d7a290630288f6338341c3a7714d14fb67e1a4fa2
|
7
|
+
data.tar.gz: c1c120709f9347f913e3fae34c0b2fb8c27028df0340910455609e4634b10ea09373c8068bec01e74f1166c88da734197b4dba98d738cdda4593fc2c76102ea8
|
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
|
+
## [3.5.0](https://github.com/voxpupuli/modulesync/tree/3.5.0) (2025-07-23)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/3.4.2...3.5.0)
|
8
|
+
|
9
|
+
**Merged pull requests:**
|
10
|
+
|
11
|
+
- thor: require 1.4 or newer [\#309](https://github.com/voxpupuli/modulesync/pull/309) ([kenyon](https://github.com/kenyon))
|
12
|
+
- README: change example config to voxpupuli [\#308](https://github.com/voxpupuli/modulesync/pull/308) ([trefzer](https://github.com/trefzer))
|
13
|
+
|
5
14
|
## [3.4.2](https://github.com/voxpupuli/modulesync/tree/3.4.2) (2025-06-27)
|
6
15
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/modulesync/compare/3.4.1...3.4.2)
|
data/README.md
CHANGED
@@ -64,8 +64,8 @@ How It Works
|
|
64
64
|
ModuleSync is a gem that uses the GitHub workflow to clone, update, and push module
|
65
65
|
repositories. It expects to be activated from a directory containing
|
66
66
|
configuration for modulesync and the modules, or you can pass it the location
|
67
|
-
of this configuration directory. [The configuration for the
|
68
|
-
modules](https://github.com/
|
67
|
+
of this configuration directory. [The configuration for the Vox Pupuli
|
68
|
+
modules](https://github.com/voxpupuli/modulesync_config), can be used as an
|
69
69
|
example for your own configuration. The configuration directory contains a
|
70
70
|
directory called moduleroot which mirrors the structure of a module. The files
|
71
71
|
in the moduleroot are ERB templates, and MUST be named after the target file,
|
@@ -442,8 +442,7 @@ workdir: modules/github-org/puppet-test
|
|
442
442
|
The Templates
|
443
443
|
-------------
|
444
444
|
|
445
|
-
See [
|
446
|
-
repositories for different templates currently in use.
|
445
|
+
See [Vox Pupuli's modulesync\_config](https://github.com/voxpupuli/modulesync_config) and [Puppet's modulesync\_configs (Archived)](https://github.com/puppetlabs/modulesync_configs) repositories for different templates currently in use.
|
447
446
|
|
448
447
|
## Transfer Notice
|
449
448
|
|
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.
|
8
|
+
spec.version = '3.5.0'
|
9
9
|
spec.authors = ['Vox Pupuli']
|
10
10
|
spec.email = ['voxpupuli@groups.io']
|
11
11
|
spec.summary = 'Puppet Module Synchronizer'
|
@@ -28,7 +28,5 @@ Gem::Specification.new do |spec|
|
|
28
28
|
spec.add_dependency 'gitlab', '>=4', '<6'
|
29
29
|
spec.add_dependency 'octokit', '>=4', '<10'
|
30
30
|
spec.add_dependency 'puppet-blacksmith', '>= 3.0', '< 9'
|
31
|
-
|
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'
|
31
|
+
spec.add_dependency 'thor', '~> 1.4'
|
34
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: 3.
|
4
|
+
version: 3.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
@@ -165,20 +165,14 @@ dependencies:
|
|
165
165
|
requirements:
|
166
166
|
- - "~>"
|
167
167
|
- !ruby/object:Gem::Version
|
168
|
-
version: '1.
|
169
|
-
- - "!="
|
170
|
-
- !ruby/object:Gem::Version
|
171
|
-
version: 1.3.1
|
168
|
+
version: '1.4'
|
172
169
|
type: :runtime
|
173
170
|
prerelease: false
|
174
171
|
version_requirements: !ruby/object:Gem::Requirement
|
175
172
|
requirements:
|
176
173
|
- - "~>"
|
177
174
|
- !ruby/object:Gem::Version
|
178
|
-
version: '1.
|
179
|
-
- - "!="
|
180
|
-
- !ruby/object:Gem::Version
|
181
|
-
version: 1.3.1
|
175
|
+
version: '1.4'
|
182
176
|
description: Utility to synchronize common files across puppet modules in Github.
|
183
177
|
email:
|
184
178
|
- voxpupuli@groups.io
|
@@ -262,7 +256,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
262
256
|
- !ruby/object:Gem::Version
|
263
257
|
version: '0'
|
264
258
|
requirements: []
|
265
|
-
rubygems_version: 3.6.
|
259
|
+
rubygems_version: 3.6.9
|
266
260
|
specification_version: 4
|
267
261
|
summary: Puppet Module Synchronizer
|
268
262
|
test_files: []
|