@quobix/vacuum 0.24.0 → 0.25.6

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 +15 -10
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -97,15 +97,6 @@ If your company is using `vacuum`, please considering [supporting this project](
97
97
  like our _very kind_ sponsors, past and present:
98
98
 
99
99
 
100
- <a href="https://speakeasyapi.dev/?utm_source=vacuum+repo&utm_medium=github+sponsorship">
101
- <picture>
102
- <source media="(prefers-color-scheme: dark)" srcset=".github/sponsors/speakeasy-github-sponsor-dark.svg">
103
- <img alt="speakeasy'" src=".github/sponsors/speakeasy-github-sponsor-light.svg">
104
- </picture>
105
- </a>
106
-
107
- [Speakeasy](https://speakeasyapi.dev/?utm_source=vacuum+repo&utm_medium=github+sponsorship)
108
-
109
100
  <a href="https://scalar.com">
110
101
  <picture>
111
102
  <source media="(prefers-color-scheme: dark)" srcset=".github/sponsors/scalar-dark.png">
@@ -133,7 +124,18 @@ come say hi!
133
124
 
134
125
  ## Documentation
135
126
 
136
- 🔥 **New in** `v0.24` 🔥: **TURBO MODE**
127
+ 🔥 **New in** `v0.25` 🔥: **Generate Open Collections from OpenAPI files**
128
+
129
+ A new `open-collection` command will generate an [Open Collection](https://www.opencollection.com/) Workflow folder
130
+ (or bundled file)
131
+
132
+ Open Collection is a new standard for defining and sharing API collections. vacuum supports it natively.
133
+
134
+ [Read More](https://quobix.com/vacuum/commands/open-collection/)
135
+
136
+ ---
137
+
138
+ `v0.24`: **TURBO MODE**
137
139
 
138
140
  A huge tune up of hundreds of systems across the stack has resulted in significant speed boosts and improved memory performance.
139
141
 
@@ -283,6 +285,7 @@ See all the documentation at https://quobix.com/vacuum
283
285
  - [language-server](https://quobix.com/vacuum/commands/language-server/)
284
286
  - [apply-overlay](https://quobix.com/vacuum/commands/apply-overlay/)
285
287
  - [Change Detection](https://quobix.com/vacuum/commands/change-detection/)
288
+ - [Open Collection](https://quobix.com/vacuum/commands/open-collection/)
286
289
  - [Developer API](https://quobix.com/vacuum/api/getting-started/)
287
290
  - [Using The Index](https://quobix.com/vacuum/api/spec-index/)
288
291
  - [RuleResultSet](https://quobix.com/vacuum/api/rule-resultset/)
@@ -373,6 +376,8 @@ To lint multiple files, specify the hook multiple times with the appropriate ove
373
376
 
374
377
  ## Build an interactive HTML report
375
378
 
379
+ `vacuum html-report` is included in official release binaries. If you install via `go install github.com/daveshanley/vacuum@<version>`, the command is compiled without the HTML report UI bundles. To enable it from source, run `./scripts/build-ui-assets.sh` and build with `-tags html_report_ui`.
380
+
376
381
  ```
377
382
  ./vacuum html-report <your-openapi-spec.yaml | vacuum-report.json.gz> <report-name.html>
378
383
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quobix/vacuum",
3
- "version": "0.24.0",
3
+ "version": "0.25.6",
4
4
  "description": "The world's fastest, most scalable and complete OpenAPI parser",
5
5
  "type": "module",
6
6
  "author": "Dave Shanley",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "https-proxy-agent": "^7.0.6",
27
27
  "node-fetch": "^3.3.2",
28
- "tar": "^7.5.2"
28
+ "tar": "^7.5.13"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@sourcemeta/jsonschema": "^11.5.1"