@quobix/vacuum 0.23.8 → 0.25.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 +34 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -133,7 +133,37 @@ come say hi!
133
133
 
134
134
  ## Documentation
135
135
 
136
- 🔥 **New in** `v0.23` 🔥: **OpenAPI Overlay Support**
136
+ 🔥 **New in** `v0.25` 🔥: **Generate Open Collections from OpenAPI files**
137
+
138
+ A new `open-collection` command will generate an [Open Collection](https://www.opencollection.com/) Workflow folder
139
+ (or bundled file)
140
+
141
+ Open Collection is a new standard for defining and sharing API collections. vacuum supports it natively.
142
+
143
+ [Read More](https://quobix.com/vacuum/commands/open-collection/)
144
+
145
+ ---
146
+
147
+ `v0.24`: **TURBO MODE**
148
+
149
+ A huge tune up of hundreds of systems across the stack has resulted in significant speed boosts and improved memory performance.
150
+
151
+ | Spec | Size | v0.23 | Turbo | Speedup |
152
+ |------|------|-------|-------|-----|
153
+ | petstore.yaml | 21KB | 0.03s | 0.02s | 33% |
154
+ | mistral.yaml | 292KB | 0.17s | 0.10s | 41% |
155
+ | neon.yaml | 370KB | 0.21s | 0.08s | 62% |
156
+ | ld.yaml | 1.9MB | 0.93s | 0.31s | 67% |
157
+ | plaid.yml | 2.9MB | 1.39s | 0.53s | 62% |
158
+ | stripe.yaml | 6.1MB | 3.11s | 0.85s | 73% |
159
+
160
+ The bigger the spec, the faster vacuum runs!
161
+
162
+ New `-T` flag will enable **turbo mode**. Go ultra-fast!
163
+
164
+ ---
165
+
166
+ `v0.23`: **OpenAPI Overlay Support**
137
167
 
138
168
  Ever needed to tweak an OpenAPI spec for different environments without maintaining multiple copies?
139
169
 
@@ -241,7 +271,7 @@ vacuum now supports both [RFC 9535](https://www.rfc-editor.org/rfc/rfc9535) JSON
241
271
  There is a new command `generate-ignorefile` that will generate an ignore file from a linting report.
242
272
 
243
273
  New rule `no-request-body` checks for incorrect request bodies in operations, and `path-item-refs` checks for
244
- $refs being used in path items.
274
+ $refs being incorrectly used on operations within path items (only the path item itself may use $ref).
245
275
 
246
276
  ---
247
277
 
@@ -264,6 +294,7 @@ See all the documentation at https://quobix.com/vacuum
264
294
  - [language-server](https://quobix.com/vacuum/commands/language-server/)
265
295
  - [apply-overlay](https://quobix.com/vacuum/commands/apply-overlay/)
266
296
  - [Change Detection](https://quobix.com/vacuum/commands/change-detection/)
297
+ - [Open Collection](https://quobix.com/vacuum/commands/open-collection/)
267
298
  - [Developer API](https://quobix.com/vacuum/api/getting-started/)
268
299
  - [Using The Index](https://quobix.com/vacuum/api/spec-index/)
269
300
  - [RuleResultSet](https://quobix.com/vacuum/api/rule-resultset/)
@@ -311,7 +342,7 @@ rules and violations in a console, without having to scroll through thousands of
311
342
  <a href="https://quobix.com/vacuum/commands/dashboard/">
312
343
  <picture>
313
344
  <source media="(prefers-color-scheme: dark)" srcset=".github/assets/dashboard.gif">
314
- <img alt="speakeasy'" src=".github/sponsors/speakeasy-github-sponsor-light.svg">
345
+ <img alt="dashboard" src=".github/assets/dashboard.gif">
315
346
  </picture>
316
347
  </a>
317
348
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quobix/vacuum",
3
- "version": "0.23.8",
3
+ "version": "0.25.0",
4
4
  "description": "The world's fastest, most scalable and complete OpenAPI parser",
5
5
  "type": "module",
6
6
  "author": "Dave Shanley",