metadata-json-lint 2.4.0 → 3.0.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/.travis.yml +5 -7
- data/CHANGELOG.md +10 -2
- data/README.md +51 -9
- data/metadata-json-lint.gemspec +2 -9
- metadata +5 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f188aee3a8aefbc137cc51d48a8d2fd7e6cf0f3c2c20d844f4996002db65d763
|
|
4
|
+
data.tar.gz: d0141e21593ce742900c5802090bbf63af1b15c67f82a8f34c8f0d1e4436be54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae666d8e94097a33f6f2f46225f542b87a2b4e43d02f9af5fec3b4094015835c2b5033b9eced974fb47c296682741150185c85e82a366173575fefaae3746148
|
|
7
|
+
data.tar.gz: 6a7cb83c25d7e837e2e4adc1257cca9ad959fc915273346c7a09f534b21f46300d0277283c008aa65322e03af422b80d902bc2ae53b5a9ceb87327d194d4063b
|
data/.travis.yml
CHANGED
|
@@ -4,13 +4,11 @@ language: ruby
|
|
|
4
4
|
script:
|
|
5
5
|
- bundle exec rake test
|
|
6
6
|
|
|
7
|
-
sudo: false
|
|
8
|
-
|
|
9
7
|
rvm:
|
|
10
|
-
- 2.1
|
|
11
|
-
- 2.4
|
|
12
|
-
- 2.
|
|
13
|
-
- 2.
|
|
8
|
+
- 2.1
|
|
9
|
+
- 2.4
|
|
10
|
+
- 2.5
|
|
11
|
+
- 2.6
|
|
14
12
|
- 2.7
|
|
15
13
|
|
|
16
14
|
deploy:
|
|
@@ -20,7 +18,7 @@ deploy:
|
|
|
20
18
|
gem: metadata-json-lint
|
|
21
19
|
on:
|
|
22
20
|
tags: true
|
|
23
|
-
rvm: 2.
|
|
21
|
+
rvm: 2.7
|
|
24
22
|
repo: voxpupuli/metadata-json-lint
|
|
25
23
|
|
|
26
24
|
notifications:
|
data/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [v3.0.0](https://github.com/voxpupuli/metadata-json-lint/tree/v3.0.0) (2020-11-23)
|
|
6
6
|
|
|
7
|
-
[Full Changelog](https://github.com/voxpupuli/metadata-json-lint/compare/2.
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/metadata-json-lint/compare/2.4.0...v3.0.0)
|
|
8
|
+
|
|
9
|
+
**Merged pull requests:**
|
|
10
|
+
|
|
11
|
+
- Require Ruby 2.1 and drop post\_install\_message [\#112](https://github.com/voxpupuli/metadata-json-lint/pull/112) ([ekohl](https://github.com/ekohl))
|
|
12
|
+
|
|
13
|
+
## [2.4.0](https://github.com/voxpupuli/metadata-json-lint/tree/2.4.0) (2020-06-12)
|
|
14
|
+
|
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/metadata-json-lint/compare/2.3.0...2.4.0)
|
|
8
16
|
|
|
9
17
|
**Merged pull requests:**
|
|
10
18
|
|
data/README.md
CHANGED
|
@@ -63,21 +63,63 @@ MetadataJsonLint.options.strict_license = false
|
|
|
63
63
|
* `--[no-]fail-on-warnings`: Whether to fail on warnings. Defaults to `true`.
|
|
64
64
|
* `--[no-]strict-puppet-version`: Whether to fail if Puppet version requirements are open-ended or no longer supported. Defaults to `false`.
|
|
65
65
|
|
|
66
|
+
## Contributors
|
|
67
|
+
|
|
68
|
+
A big thank you to the [contributors](https://github.com/voxpupuli/metadata-json-lint/graphs/contributors).
|
|
69
|
+
|
|
70
|
+
## Making a new release
|
|
71
|
+
|
|
72
|
+
How to make a new release?
|
|
66
73
|
|
|
67
|
-
|
|
74
|
+
* update the gemspec file with the desired version
|
|
68
75
|
|
|
69
|
-
|
|
76
|
+
```console
|
|
77
|
+
$ git diff
|
|
78
|
+
diff --git a/metadata-json-lint.gemspec b/metadata-json-lint.gemspec
|
|
79
|
+
index c86668e..6a3ad38 100644
|
|
80
|
+
--- a/metadata-json-lint.gemspec
|
|
81
|
+
+++ b/metadata-json-lint.gemspec
|
|
82
|
+
@@ -2,7 +2,7 @@ require 'date'
|
|
70
83
|
|
|
71
|
-
|
|
72
|
-
|
|
84
|
+
Gem::Specification.new do |s|
|
|
85
|
+
s.name = 'metadata-json-lint'
|
|
86
|
+
- s.version = '2.4.0'
|
|
87
|
+
+ s.version = '2.5.0'
|
|
88
|
+
s.date = Date.today.to_s
|
|
89
|
+
s.summary = 'metadata-json-lint /path/to/metadata.json'
|
|
90
|
+
s.description = 'Utility to verify Puppet metadata.json files'
|
|
73
91
|
```
|
|
74
92
|
|
|
75
|
-
|
|
93
|
+
* export a GitHub access token as environment variable:
|
|
76
94
|
|
|
77
|
-
```
|
|
78
|
-
export CHANGELOG_GITHUB_TOKEN
|
|
95
|
+
```console
|
|
96
|
+
export CHANGELOG_GITHUB_TOKEN=*token*
|
|
79
97
|
```
|
|
80
98
|
|
|
81
|
-
|
|
99
|
+
* Install deps and generate the changelog
|
|
100
|
+
|
|
101
|
+
```console
|
|
102
|
+
$ bundle install --path .vendor/ --jobs=$(nproc) --with release
|
|
103
|
+
$ bundle exec rake changelog
|
|
104
|
+
Found 25 tags
|
|
105
|
+
Fetching tags dates: 25/25
|
|
106
|
+
Sorting tags...
|
|
107
|
+
Received issues: 103
|
|
108
|
+
Pull Request count: 77
|
|
109
|
+
Filtered pull requests: 72
|
|
110
|
+
Filtered issues: 26
|
|
111
|
+
Fetching events for issues and PR: 98
|
|
112
|
+
Fetching closed dates for issues: 98/98
|
|
113
|
+
Fetching SHAs for tags: 25
|
|
114
|
+
Associating PRs with tags: 72/72
|
|
115
|
+
Generating entry...
|
|
116
|
+
Done!
|
|
117
|
+
Generated log placed in ~/metadata-json-lint/CHANGELOG.md
|
|
118
|
+
```
|
|
82
119
|
|
|
83
|
-
|
|
120
|
+
* Check the diff for `CHANGELOG.md`. Does it contain a breaking change but the
|
|
121
|
+
new version is only a minor bump? Does the new release only contains bug fixes?
|
|
122
|
+
Adjust the version properly while honouring semantic versioning. If required,
|
|
123
|
+
regenerate the `CHANGELOG.md`. Afterwards submit it as a PR.
|
|
124
|
+
|
|
125
|
+
* If it gets approved, merge the PR, create a git tag on that and push it.
|
data/metadata-json-lint.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ require 'date'
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'metadata-json-lint'
|
|
5
|
-
s.version = '
|
|
5
|
+
s.version = '3.0.0'
|
|
6
6
|
s.date = Date.today.to_s
|
|
7
7
|
s.summary = 'metadata-json-lint /path/to/metadata.json'
|
|
8
8
|
s.description = 'Utility to verify Puppet metadata.json files'
|
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.homepage = 'http://github.com/voxpupuli/metadata-json-lint'
|
|
17
17
|
s.license = 'Apache-2.0'
|
|
18
18
|
|
|
19
|
-
s.required_ruby_version = '>= 2.
|
|
19
|
+
s.required_ruby_version = '>= 2.1.0'
|
|
20
20
|
s.add_runtime_dependency 'spdx-licenses', '~> 1.0'
|
|
21
21
|
s.add_runtime_dependency 'json-schema', '~> 2.8'
|
|
22
22
|
s.add_development_dependency 'pry'
|
|
@@ -24,11 +24,4 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.add_development_dependency 'semantic_puppet'
|
|
25
25
|
s.add_development_dependency 'rspec'
|
|
26
26
|
s.add_development_dependency 'rubocop', '~> 0.50.0'
|
|
27
|
-
s.post_install_message = '
|
|
28
|
-
----------------------------------------------------------
|
|
29
|
-
For the most accurate results, the semantic_puppet
|
|
30
|
-
gem should be included within your Gemfile if you
|
|
31
|
-
use Puppet <= 4.8.x
|
|
32
|
-
----------------------------------------------------------
|
|
33
|
-
'.gsub(/^ /, '')
|
|
34
27
|
end
|
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:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: spdx-licenses
|
|
@@ -209,13 +209,7 @@ homepage: http://github.com/voxpupuli/metadata-json-lint
|
|
|
209
209
|
licenses:
|
|
210
210
|
- Apache-2.0
|
|
211
211
|
metadata: {}
|
|
212
|
-
post_install_message:
|
|
213
|
-
|
|
214
|
-
----------------------------------------------------------
|
|
215
|
-
For the most accurate results, the semantic_puppet
|
|
216
|
-
gem should be included within your Gemfile if you
|
|
217
|
-
use Puppet <= 4.8.x
|
|
218
|
-
----------------------------------------------------------
|
|
212
|
+
post_install_message:
|
|
219
213
|
rdoc_options: []
|
|
220
214
|
require_paths:
|
|
221
215
|
- lib
|
|
@@ -223,15 +217,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
223
217
|
requirements:
|
|
224
218
|
- - ">="
|
|
225
219
|
- !ruby/object:Gem::Version
|
|
226
|
-
version: 2.
|
|
220
|
+
version: 2.1.0
|
|
227
221
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
228
222
|
requirements:
|
|
229
223
|
- - ">="
|
|
230
224
|
- !ruby/object:Gem::Version
|
|
231
225
|
version: '0'
|
|
232
226
|
requirements: []
|
|
233
|
-
|
|
234
|
-
rubygems_version: 2.7.7
|
|
227
|
+
rubygems_version: 3.0.8
|
|
235
228
|
signing_key:
|
|
236
229
|
specification_version: 4
|
|
237
230
|
summary: metadata-json-lint /path/to/metadata.json
|