@sourcemeta/jsonschema 15.3.0 → 15.4.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.
package/README.markdown CHANGED
@@ -47,17 +47,17 @@ Version support
47
47
 
48
48
  We aim to fully support _every_ version of JSON Schema and combinations between them.
49
49
 
50
- | Dialect | Support |
51
- |---------------------|-------------------------------------------------------|
52
- | JSON Schema 2020-12 | **Full** |
53
- | JSON Schema 2019-09 | **Full** |
54
- | JSON Schema Draft 7 | **Full** |
55
- | JSON Schema Draft 6 | **Full** |
56
- | JSON Schema Draft 4 | **Full** |
57
- | JSON Schema Draft 3 | Partial (except `validate`, `test`, and `metaschema`) |
58
- | JSON Schema Draft 2 | Partial (except `validate`, `test`, and `metaschema`) |
59
- | JSON Schema Draft 1 | Partial (except `validate`, `test`, and `metaschema`) |
60
- | JSON Schema Draft 0 | Partial (except `validate`, `test`, and `metaschema`) |
50
+ | Dialect | Support |
51
+ |---------------------|-------------------------------------------------------------------------------------|
52
+ | JSON Schema 2020-12 | **Full** |
53
+ | JSON Schema 2019-09 | **Full** |
54
+ | JSON Schema Draft 7 | **Full** |
55
+ | JSON Schema Draft 6 | **Full** |
56
+ | JSON Schema Draft 4 | **Full** |
57
+ | JSON Schema Draft 3 | Partial (except `upgrade`, `codegen`, and `lint`) |
58
+ | JSON Schema Draft 2 | Partial (except `validate`, `test`, `metaschema`, `upgrade`, `codegen`, and `lint`) |
59
+ | JSON Schema Draft 1 | Partial (except `validate`, `test`, `metaschema`, `upgrade`, `codegen`, and `lint`) |
60
+ | JSON Schema Draft 0 | Partial (except `validate`, `test`, `metaschema`, `upgrade`, `codegen`, and `lint`) |
61
61
 
62
62
  What our users are saying
63
63
  -------------------------
@@ -92,6 +92,7 @@ documentation:
92
92
  - [`jsonschema fmt`](./docs/format.markdown)
93
93
  - [`jsonschema lint`](./docs/lint.markdown)
94
94
  - [`jsonschema bundle`](./docs/bundle.markdown) (for inlining remote references in a schema)
95
+ - [`jsonschema upgrade`](./docs/upgrade.markdown) (for upgrading schemas to a newer JSON Schema dialect)
95
96
  - [`jsonschema inspect`](./docs/inspect.markdown) (for debugging references)
96
97
  - [`jsonschema codegen`](./docs/codegen.markdown) (for generating code from schemas)
97
98
  - [`jsonschema encode`](./docs/encode.markdown) (for binary compression)
@@ -145,7 +146,7 @@ Where `X.Y.Z` is replaced with the desired version. For example:
145
146
  uses: actions/checkout@v4
146
147
 
147
148
  - name: Install the JSON Schema CLI
148
- uses: sourcemeta/jsonschema@v15.3.0
149
+ uses: sourcemeta/jsonschema@v15.4.0
149
150
 
150
151
  # Then use as usual
151
152
  - run: jsonschema fmt path/to/schemas --check
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sourcemeta/jsonschema",
3
- "version": "15.3.0",
3
+ "version": "15.4.0",
4
4
  "description": "The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines. By a member of the JSON Schema Technical Steering Committee",
5
5
  "main": "npm/main.js",
6
6
  "exports": {