puppet_forge 6.1.0 → 6.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/.github/dependabot.yml +17 -0
- data/.github/workflows/ruby-rspec.yml +2 -1
- data/CHANGELOG.md +13 -5
- data/lib/puppet_forge/version.rb +1 -1
- data/puppet_forge.gemspec +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a8bb48960daca74a44d58de3b7e6119612806b23beb978a67bbf2b5c2851a1fc
|
|
4
|
+
data.tar.gz: b55a1ddeaceb2cee78b98e3626ecccce4fc9914dab40b8e506b3ad7a8247256a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62a00a7fdbfd01e1497e38a4cb8fd0b242161bd56465fbda72a70bb6e323a5d0d107eb3ebc810d23b0f532fa36fc4678a2dbe5f1859d60a8e394fdeda1862363
|
|
7
|
+
data.tar.gz: 132125200326d2028a97544b2e5d4e6b32c97d32baa0aab2eb44b01085551f8605650d43d3476ff2ca05622a179c9cf26df88f037c603751931395cd70fbd6bd
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
# raise PRs for gem updates
|
|
4
|
+
- package-ecosystem: bundler
|
|
5
|
+
directory: "/"
|
|
6
|
+
schedule:
|
|
7
|
+
interval: daily
|
|
8
|
+
time: "13:00"
|
|
9
|
+
open-pull-requests-limit: 10
|
|
10
|
+
|
|
11
|
+
# Maintain dependencies for GitHub Actions
|
|
12
|
+
- package-ecosystem: github-actions
|
|
13
|
+
directory: "/"
|
|
14
|
+
schedule:
|
|
15
|
+
interval: daily
|
|
16
|
+
time: "13:00"
|
|
17
|
+
open-pull-requests-limit: 10
|
|
@@ -15,13 +15,14 @@ jobs:
|
|
|
15
15
|
strategy:
|
|
16
16
|
matrix:
|
|
17
17
|
ruby:
|
|
18
|
+
- '4.0'
|
|
18
19
|
- '3.4'
|
|
19
20
|
- '3.3'
|
|
20
21
|
- '3.2'
|
|
21
22
|
- '3.1'
|
|
22
23
|
|
|
23
24
|
steps:
|
|
24
|
-
- uses: actions/checkout@
|
|
25
|
+
- uses: actions/checkout@v6
|
|
25
26
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
26
27
|
uses: ruby/setup-ruby@v1
|
|
27
28
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
|
|
6
6
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
|
7
7
|
|
|
8
|
+
## [v6.2.0](https://github.com/puppetlabs/forge-ruby/tree/v6.2.0) - 2026-03-05
|
|
9
|
+
|
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/forge-ruby/compare/v6.1.0...v6.2.0)
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- faraday-follow_redirects: Allow 0.5 [#139](https://github.com/puppetlabs/forge-ruby/pull/139) ([bastelfreak](https://github.com/bastelfreak))
|
|
15
|
+
|
|
16
|
+
### Other
|
|
17
|
+
|
|
18
|
+
- Add Ruby 4.0 support [#140](https://github.com/puppetlabs/forge-ruby/pull/140) ([bastelfreak](https://github.com/bastelfreak))
|
|
19
|
+
- dependabot: check for github actions and bundler [#131](https://github.com/puppetlabs/forge-ruby/pull/131) ([bastelfreak](https://github.com/bastelfreak))
|
|
20
|
+
|
|
8
21
|
## [v6.1.0](https://github.com/puppetlabs/forge-ruby/tree/v6.1.0) - 2025-12-12
|
|
9
22
|
|
|
10
23
|
[Full Changelog](https://github.com/puppetlabs/forge-ruby/compare/v6.0.0...v6.1.0)
|
|
@@ -17,11 +30,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
|
17
30
|
|
|
18
31
|
- (BOLT-109) Fix Windows long path support by replacing Dir[] with Find.find [#134](https://github.com/puppetlabs/forge-ruby/pull/134) ([gavindidrichsen](https://github.com/gavindidrichsen))
|
|
19
32
|
|
|
20
|
-
### Other
|
|
21
|
-
|
|
22
|
-
- base64: Allow 0.3 [#135](https://github.com/puppetlabs/forge-ruby/pull/135) ([bastelfreak](https://github.com/bastelfreak))
|
|
23
|
-
- faraday-follow_redirects: Allow 0.4 [#132](https://github.com/puppetlabs/forge-ruby/pull/132) ([bastelfreak](https://github.com/bastelfreak))
|
|
24
|
-
|
|
25
33
|
## [v6.0.0](https://github.com/puppetlabs/forge-ruby/tree/v6.0.0) - 2024-09-20
|
|
26
34
|
|
|
27
35
|
[Full Changelog](https://github.com/puppetlabs/forge-ruby/compare/v5.0.4...v6.0.0)
|
data/lib/puppet_forge/version.rb
CHANGED
data/puppet_forge.gemspec
CHANGED
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
|
|
23
23
|
spec.add_runtime_dependency "base64", '>= 0.2.0', '< 0.4.0'
|
|
24
24
|
spec.add_runtime_dependency "faraday", "~> 2.0"
|
|
25
|
-
spec.add_runtime_dependency "faraday-follow_redirects", ">= 0.3", "< 0.
|
|
25
|
+
spec.add_runtime_dependency "faraday-follow_redirects", ">= 0.3", "< 0.6"
|
|
26
26
|
spec.add_dependency "minitar", '~> 1.0', '>= 1.0.2'
|
|
27
27
|
spec.add_dependency "semantic_puppet", "~> 1.0"
|
|
28
28
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppet_forge
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet Labs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-03-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -53,7 +53,7 @@ dependencies:
|
|
|
53
53
|
version: '0.3'
|
|
54
54
|
- - "<"
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: '0.
|
|
56
|
+
version: '0.6'
|
|
57
57
|
type: :runtime
|
|
58
58
|
prerelease: false
|
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -63,7 +63,7 @@ dependencies:
|
|
|
63
63
|
version: '0.3'
|
|
64
64
|
- - "<"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: '0.
|
|
66
|
+
version: '0.6'
|
|
67
67
|
- !ruby/object:Gem::Dependency
|
|
68
68
|
name: minitar
|
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -204,6 +204,7 @@ executables: []
|
|
|
204
204
|
extensions: []
|
|
205
205
|
extra_rdoc_files: []
|
|
206
206
|
files:
|
|
207
|
+
- ".github/dependabot.yml"
|
|
207
208
|
- ".github/pull_request_template.md"
|
|
208
209
|
- ".github/workflows/release.yml"
|
|
209
210
|
- ".github/workflows/release_prep.yml"
|
|
@@ -303,7 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
303
304
|
- !ruby/object:Gem::Version
|
|
304
305
|
version: '0'
|
|
305
306
|
requirements: []
|
|
306
|
-
rubygems_version: 3.
|
|
307
|
+
rubygems_version: 3.4.19
|
|
307
308
|
signing_key:
|
|
308
309
|
specification_version: 4
|
|
309
310
|
summary: Access the Puppet Forge API from Ruby for resource information and to download
|