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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1036e4f4179fccfbd7488937108d8f438994c29db5f0cfbd6e84db74bd31dc4
4
- data.tar.gz: dfefd1e61975162c0823543f2a7a514e2b62039c605db8901536ea212cc44b29
3
+ metadata.gz: 601496e157ed6f6f3f6faee2a68a5b6ec6b725a869adcca63fd61b7631435085
4
+ data.tar.gz: 887d30fa3c8dbf9d629f64d851a4ee4ee314a66b48f920d96d1bd3ba2ee46bc2
5
5
  SHA512:
6
- metadata.gz: 1523f620322d4de61fd91244623aa0bf6230bbad016486ed17bb414ccd96e6320ba27b94cb9ac549d599771f10870d8f72f18d92125702a4ec64f3024915e1f0
7
- data.tar.gz: 2374ddb87307f429f6c16510360984d50acebe8aeeb61b563d02f3682a8cf99372379b01900791ae77f8812d2d8d1f7f0eb6207f3cf420d055df10eadcf6dce2
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,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)
@@ -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.2'
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', '< 4.0'
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.2
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: 2022-05-03 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '2.8'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '4.0'
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: '4.0'
32
+ version: '5.0'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: spdx-licenses
35
35
  requirement: !ruby/object:Gem::Requirement