metadata-json-lint 3.0.1 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88296907a8034712ed315c9673b18f7da0f6315246be651f2e62a59b32192ac9
4
- data.tar.gz: e5d6b34c8b897688cb062121657fed5c02aa5cc8c28277896fe93833c4e68d82
3
+ metadata.gz: 601496e157ed6f6f3f6faee2a68a5b6ec6b725a869adcca63fd61b7631435085
4
+ data.tar.gz: 887d30fa3c8dbf9d629f64d851a4ee4ee314a66b48f920d96d1bd3ba2ee46bc2
5
5
  SHA512:
6
- metadata.gz: '0008127ce7d0379fd7f5aa394fb4d0f346c4868a71dc6875598af8aedbb005927d0f6ea050bdf143b508e812915c116143df25e647db63c05f8f6af8f6bb3ec3'
7
- data.tar.gz: 39e8387ed09f30c2a4bc5edc22babc68b13b0ab16ec4753c6973f97509837532ca091f39df19b4826742b180725b13238cd4c5c09555f284ceed614b5d3a7fb4
6
+ metadata.gz: d869ce3a305ddbb91e4dcf602c33174ed7d8dc734ddc05419b09ac808f87ddbbac64b56be10bd945e3442c6eaab1dea5200170a84f239069abeba63d0900f1d3
7
+ data.tar.gz: 36a47058aad6c5af739315ca3968b0ac71858d31988383751045b9a0cdfb1832f995b94fedc7b289cbd55017319a73dd5a52545a488c4046a7f20664a649961c
@@ -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
@@ -10,7 +10,7 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  if: github.repository_owner == 'voxpupuli'
12
12
  steps:
13
- - uses: actions/checkout@v2
13
+ - uses: actions/checkout@v3
14
14
  - name: Install Ruby 3.0
15
15
  uses: ruby/setup-ruby@v1
16
16
  with:
@@ -1,8 +1,10 @@
1
1
  name: Test
2
2
 
3
3
  on:
4
- - pull_request
5
- - push
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@v2
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,22 @@
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
+
12
+ ## [3.0.2](https://github.com/voxpupuli/metadata-json-lint/tree/3.0.2) (2022-05-03)
13
+
14
+ [Full Changelog](https://github.com/voxpupuli/metadata-json-lint/compare/3.0.1...3.0.2)
15
+
16
+ **Merged pull requests:**
17
+
18
+ - Update json-schema requirement from ~\> 2.8 to \>= 2.8, \< 4.0 [\#121](https://github.com/voxpupuli/metadata-json-lint/pull/121) ([dependabot[bot]](https://github.com/apps/dependabot))
19
+
3
20
  ## [3.0.1](https://github.com/voxpupuli/metadata-json-lint/tree/3.0.1) (2021-08-13)
4
21
 
5
22
  [Full Changelog](https://github.com/voxpupuli/metadata-json-lint/compare/3.0.0...3.0.1)
@@ -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.1'
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,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metadata-json-lint
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
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: 2021-08-13 00:00:00.000000000 Z
11
+ date: 2023-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json-schema
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '2.8'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '2.8'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: spdx-licenses
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -226,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
226
232
  - !ruby/object:Gem::Version
227
233
  version: '0'
228
234
  requirements: []
229
- rubygems_version: 3.2.22
235
+ rubygems_version: 3.2.33
230
236
  signing_key:
231
237
  specification_version: 4
232
238
  summary: metadata-json-lint /path/to/metadata.json