metadata-json-lint 3.0.2 → 3.0.3
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 +9 -0
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/test.yml +5 -4
- data/CHANGELOG.md +9 -0
- data/metadata-json-lint.gemspec +2 -5
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 601496e157ed6f6f3f6faee2a68a5b6ec6b725a869adcca63fd61b7631435085
|
|
4
|
+
data.tar.gz: 887d30fa3c8dbf9d629f64d851a4ee4ee314a66b48f920d96d1bd3ba2ee46bc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d869ce3a305ddbb91e4dcf602c33174ed7d8dc734ddc05419b09ac808f87ddbbac64b56be10bd945e3442c6eaab1dea5200170a84f239069abeba63d0900f1d3
|
|
7
|
+
data.tar.gz: 36a47058aad6c5af739315ca3968b0ac71858d31988383751045b9a0cdfb1832f995b94fedc7b289cbd55017319a73dd5a52545a488c4046a7f20664a649961c
|
data/.github/dependabot.yml
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
version: 2
|
|
2
2
|
updates:
|
|
3
|
+
# raise PRs for gem updates
|
|
3
4
|
- package-ecosystem: bundler
|
|
4
5
|
directory: "/"
|
|
5
6
|
schedule:
|
|
6
7
|
interval: daily
|
|
7
8
|
time: "13:00"
|
|
8
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
|
data/.github/workflows/test.yml
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
name: Test
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
pull_request: {}
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- master
|
|
6
8
|
|
|
7
9
|
env:
|
|
8
10
|
BUNDLE_WITHOUT: release
|
|
@@ -11,7 +13,6 @@ jobs:
|
|
|
11
13
|
rspec:
|
|
12
14
|
runs-on: ubuntu-latest
|
|
13
15
|
strategy:
|
|
14
|
-
fail-fast: true
|
|
15
16
|
matrix:
|
|
16
17
|
include:
|
|
17
18
|
- ruby: "2.4"
|
|
@@ -24,7 +25,7 @@ jobs:
|
|
|
24
25
|
COVERAGE: ${{ matrix.coverage }}
|
|
25
26
|
name: RSpec - Ruby ${{ matrix.ruby }}
|
|
26
27
|
steps:
|
|
27
|
-
- uses: actions/checkout@
|
|
28
|
+
- uses: actions/checkout@v3
|
|
28
29
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
29
30
|
uses: ruby/setup-ruby@v1
|
|
30
31
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.0.3](https://github.com/voxpupuli/metadata-json-lint/tree/3.0.3) (2023-04-24)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/metadata-json-lint/compare/3.0.2...3.0.3)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- Allow json-schema 4.x [\#122](https://github.com/voxpupuli/metadata-json-lint/pull/122)
|
|
10
|
+
- gemspec: drop deprecated date attribute [\#129](https://github.com/voxpupuli/metadata-json-lint/pull/129)
|
|
11
|
+
|
|
3
12
|
## [3.0.2](https://github.com/voxpupuli/metadata-json-lint/tree/3.0.2) (2022-05-03)
|
|
4
13
|
|
|
5
14
|
[Full Changelog](https://github.com/voxpupuli/metadata-json-lint/compare/3.0.1...3.0.2)
|
data/metadata-json-lint.gemspec
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
require 'date'
|
|
2
|
-
|
|
3
1
|
Gem::Specification.new do |s|
|
|
4
2
|
s.name = 'metadata-json-lint'
|
|
5
|
-
s.version = '3.0.
|
|
6
|
-
s.date = Date.today.to_s
|
|
3
|
+
s.version = '3.0.3'
|
|
7
4
|
s.summary = 'metadata-json-lint /path/to/metadata.json'
|
|
8
5
|
s.description = 'Utility to verify Puppet metadata.json files'
|
|
9
6
|
s.authors = ['Vox Pupuli']
|
|
@@ -17,7 +14,7 @@ Gem::Specification.new do |s|
|
|
|
17
14
|
s.license = 'Apache-2.0'
|
|
18
15
|
|
|
19
16
|
s.required_ruby_version = '>= 2.1.0'
|
|
20
|
-
s.add_runtime_dependency 'json-schema', '>= 2.8', '<
|
|
17
|
+
s.add_runtime_dependency 'json-schema', '>= 2.8', '< 5.0'
|
|
21
18
|
s.add_runtime_dependency 'spdx-licenses', '~> 1.0'
|
|
22
19
|
s.add_development_dependency 'pry'
|
|
23
20
|
s.add_development_dependency 'rake'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metadata-json-lint
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json-schema
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '2.8'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '
|
|
22
|
+
version: '5.0'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '2.8'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '5.0'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: spdx-licenses
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|