@scalar/oas-utils 0.8.3 → 0.9.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/CHANGELOG.md +33 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @scalar/oas-utils
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
#### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- **@scalar/workspace-store@0.36.0**
|
|
14
|
+
- [#8340](https://github.com/scalar/scalar/pull/8340): feat: support navigation options on server store
|
|
15
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
16
|
+
- [#8340](https://github.com/scalar/scalar/pull/8340): chore: disable perf logs by default
|
|
17
|
+
|
|
18
|
+
- **@scalar/openapi-types@0.6.0**
|
|
19
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
20
|
+
|
|
21
|
+
- **@scalar/object-utils@1.3.0**
|
|
22
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
23
|
+
|
|
24
|
+
- **@scalar/json-magic@0.12.0**
|
|
25
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
26
|
+
|
|
27
|
+
- **@scalar/helpers@0.3.0**
|
|
28
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
29
|
+
|
|
30
|
+
- **@scalar/themes@0.15.0**
|
|
31
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
32
|
+
|
|
33
|
+
- **@scalar/types@0.7.0**
|
|
34
|
+
- [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
|
|
35
|
+
|
|
3
36
|
## 0.8.3
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"specification",
|
|
17
17
|
"yaml"
|
|
18
18
|
],
|
|
19
|
-
"version": "0.
|
|
19
|
+
"version": "0.9.0",
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=22"
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"main": "dist/index.js",
|
|
@@ -91,23 +91,23 @@
|
|
|
91
91
|
"vue": "^3.5.26",
|
|
92
92
|
"yaml": "^2.8.0",
|
|
93
93
|
"zod": "^4.3.5",
|
|
94
|
-
"@scalar/helpers": "0.
|
|
95
|
-
"@scalar/json-magic": "0.
|
|
96
|
-
"@scalar/object-utils": "1.
|
|
97
|
-
"@scalar/
|
|
98
|
-
"@scalar/
|
|
99
|
-
"@scalar/
|
|
100
|
-
"@scalar/
|
|
94
|
+
"@scalar/helpers": "0.3.0",
|
|
95
|
+
"@scalar/json-magic": "0.12.0",
|
|
96
|
+
"@scalar/object-utils": "1.3.0",
|
|
97
|
+
"@scalar/types": "0.7.0",
|
|
98
|
+
"@scalar/openapi-types": "0.6.0",
|
|
99
|
+
"@scalar/workspace-store": "0.36.0",
|
|
100
|
+
"@scalar/themes": "0.15.0"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
|
-
"@types/node": "^
|
|
103
|
+
"@types/node": "^24.1.0",
|
|
104
104
|
"fake-indexeddb": "6.2.3",
|
|
105
105
|
"vite": "^7.3.1",
|
|
106
106
|
"vitest": "4.0.16",
|
|
107
107
|
"zod-to-ts": "github:amritk/zod-to-ts#build",
|
|
108
|
-
"@scalar/
|
|
109
|
-
"@scalar/openapi-
|
|
110
|
-
"@scalar/
|
|
108
|
+
"@scalar/build-tooling": "0.5.0",
|
|
109
|
+
"@scalar/openapi-parser": "0.25.0",
|
|
110
|
+
"@scalar/openapi-types": "0.6.0"
|
|
111
111
|
},
|
|
112
112
|
"scripts": {
|
|
113
113
|
"build": "scalar-build-esbuild",
|