@scalar/oas-utils 0.8.3 → 0.10.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/CHANGELOG.md +46 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # @scalar/oas-utils
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#8266](https://github.com/scalar/scalar/pull/8266): support operation level authentication and servers
8
+
9
+ ### Patch Changes
10
+
11
+ #### Updated Dependencies
12
+
13
+ - **@scalar/workspace-store@0.37.0**
14
+ - [#8266](https://github.com/scalar/scalar/pull/8266): support operation level authentication and servers
15
+
16
+ ## 0.9.0
17
+
18
+ ### Minor Changes
19
+
20
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
21
+
22
+ ### Patch Changes
23
+
24
+ #### Updated Dependencies
25
+
26
+ - **@scalar/workspace-store@0.36.0**
27
+ - [#8340](https://github.com/scalar/scalar/pull/8340): feat: support navigation options on server store
28
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
29
+ - [#8340](https://github.com/scalar/scalar/pull/8340): chore: disable perf logs by default
30
+
31
+ - **@scalar/openapi-types@0.6.0**
32
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
33
+
34
+ - **@scalar/object-utils@1.3.0**
35
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
36
+
37
+ - **@scalar/json-magic@0.12.0**
38
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
39
+
40
+ - **@scalar/helpers@0.3.0**
41
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
42
+
43
+ - **@scalar/themes@0.15.0**
44
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
45
+
46
+ - **@scalar/types@0.7.0**
47
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
48
+
3
49
  ## 0.8.3
4
50
 
5
51
  ### Patch Changes
package/package.json CHANGED
@@ -16,9 +16,9 @@
16
16
  "specification",
17
17
  "yaml"
18
18
  ],
19
- "version": "0.8.3",
19
+ "version": "0.10.0",
20
20
  "engines": {
21
- "node": ">=20"
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.2.18",
95
- "@scalar/json-magic": "0.11.7",
96
- "@scalar/object-utils": "1.2.32",
97
- "@scalar/openapi-types": "0.5.4",
98
- "@scalar/themes": "0.14.3",
99
- "@scalar/types": "0.6.10",
100
- "@scalar/workspace-store": "0.35.3"
94
+ "@scalar/helpers": "0.3.0",
95
+ "@scalar/json-magic": "0.12.0",
96
+ "@scalar/openapi-types": "0.6.0",
97
+ "@scalar/types": "0.7.0",
98
+ "@scalar/object-utils": "1.3.0",
99
+ "@scalar/themes": "0.15.0",
100
+ "@scalar/workspace-store": "0.37.0"
101
101
  },
102
102
  "devDependencies": {
103
- "@types/node": "^22.19.3",
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/openapi-parser": "0.24.17",
109
- "@scalar/openapi-types": "0.5.4",
110
- "@scalar/build-tooling": "0.4.1"
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",