@typespec/http-specs 0.1.0-alpha.9-dev.5 → 0.1.0-alpha.9
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 +16 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @typespec/http-specs
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.9
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- [#5717](https://github.com/microsoft/typespec/pull/5717) Fixed paths in the specs/routes.
|
|
8
|
+
- [#5875](https://github.com/microsoft/typespec/pull/5875) Upgrade to new `@visibility` syntax
|
|
9
|
+
|
|
10
|
+
### Bump dependencies
|
|
11
|
+
|
|
12
|
+
- [#5690](https://github.com/microsoft/typespec/pull/5690) Upgrade dependencies
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- [#5577](https://github.com/microsoft/typespec/pull/5577) Add test case on status code range
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## 0.1.0-alpha.8
|
|
4
20
|
|
|
5
21
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/http-specs",
|
|
3
|
-
"version": "0.1.0-alpha.9
|
|
3
|
+
"version": "0.1.0-alpha.9",
|
|
4
4
|
"description": "Spec scenarios and mock apis",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -18,24 +18,24 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://github.com/microsoft/typespec#readme",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@typespec/spec-api": "~0.1.0-alpha.
|
|
22
|
-
"@typespec/spector": "~0.1.0-alpha.
|
|
21
|
+
"@typespec/spec-api": "~0.1.0-alpha.1",
|
|
22
|
+
"@typespec/spector": "~0.1.0-alpha.7"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/multer": "^1.4.10",
|
|
26
26
|
"@types/node": "~22.10.10",
|
|
27
|
-
"@typespec/openapi": "~0.64.0 || >=0.65.0-dev <0.65.0",
|
|
28
|
-
"@typespec/openapi3": "~0.64.0 || >=0.65.0-dev <0.65.0",
|
|
29
27
|
"concurrently": "^9.1.2",
|
|
30
28
|
"rimraf": "~6.0.1",
|
|
31
|
-
"typescript": "~5.7.3"
|
|
29
|
+
"typescript": "~5.7.3",
|
|
30
|
+
"@typespec/openapi": "~0.65.0",
|
|
31
|
+
"@typespec/openapi3": "~0.65.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@typespec/compiler": "~0.
|
|
35
|
-
"@typespec/http": "~0.
|
|
36
|
-
"@typespec/rest": "~0.
|
|
37
|
-
"@typespec/versioning": "~0.
|
|
38
|
-
"@typespec/xml": "~0.
|
|
34
|
+
"@typespec/compiler": "~0.65.0",
|
|
35
|
+
"@typespec/http": "~0.65.0",
|
|
36
|
+
"@typespec/rest": "~0.65.0",
|
|
37
|
+
"@typespec/versioning": "~0.65.0",
|
|
38
|
+
"@typespec/xml": "~0.65.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"watch": "tsc -p ./tsconfig.build.json --watch",
|