@quobix/vacuum 0.18.9 → 0.19.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.
Files changed (2) hide show
  1. package/README.md +10 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -144,7 +144,16 @@ come say hi!
144
144
 
145
145
  ## Documentation
146
146
 
147
- 🔥 **New in** `v0.18` 🔥 : **New dashboard, new lint command, new rules!**.
147
+ 🔥 **New in** `v0.19` 🔥: **Ignore rules with `x-lint-ignore`**
148
+
149
+ Got an error in your spec you know about but can't get round to fixing yet?
150
+ Migrating from zally and wanting to keep your existing `x-zally-ignore` issues silenced?
151
+
152
+ Now you can! Just add `x-lint-ignore: rule-id` to the yaml node reporting the failure (or `x-lint-ignore: [rule-one, rule-two]` if there are multiple issues to ignore).
153
+
154
+ ---
155
+
156
+ `v0.18`: **New dashboard, new lint command, new rules!**.
148
157
 
149
158
  Upgrades all around. There is a completely new `dashboard` command with a completely new dashboard terminal UI. It's
150
159
  completely interactive and allows you to explore, and filter violations, view full docs and see code. The `dashboard` command
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quobix/vacuum",
3
- "version": "0.18.9",
3
+ "version": "0.19.0",
4
4
  "description": "The world's fastest, most scalable and complete OpenAPI parser",
5
5
  "type": "module",
6
6
  "author": "Dave Shanley",
@@ -23,10 +23,12 @@
23
23
  "npm-install"
24
24
  ],
25
25
  "dependencies": {
26
- "@sourcemeta/jsonschema": "^11.5.1",
27
26
  "node-fetch": "^3.2.10",
28
27
  "tar": "^6.1.11"
29
28
  },
29
+ "devDependencies": {
30
+ "@sourcemeta/jsonschema": "^11.5.1"
31
+ },
30
32
  "bugs": {
31
33
  "url": "https://github.com/daveshanley/vacuum/issues"
32
34
  },