@typespec/http-specs 0.1.0-alpha.18-dev.3 → 0.1.0-alpha.19
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.19
|
|
4
|
+
|
|
5
|
+
No changes, version bump only.
|
|
6
|
+
|
|
7
|
+
## 0.1.0-alpha.18
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- [#6926](https://github.com/microsoft/typespec/pull/6926) Upgrade to express v5
|
|
12
|
+
- [#6943](https://github.com/microsoft/typespec/pull/6943) Spector test for optional path parameter.
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- [#6954](https://github.com/microsoft/typespec/pull/6954) Updated expected float value of 1.1 to 1.25 - a value that can be exactly represented as IEEE754 (specs/payload/json-merge-patch/).
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## 0.1.0-alpha.17
|
|
4
20
|
|
|
5
21
|
No changes, version bump only.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/http-specs",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.19",
|
|
4
4
|
"description": "Spec scenarios and mock apis",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -18,26 +18,26 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://github.com/microsoft/typespec#readme",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"
|
|
22
|
-
"@typespec/
|
|
23
|
-
"
|
|
21
|
+
"deep-equal": "^2.2.0",
|
|
22
|
+
"@typespec/spec-api": "^0.1.0-alpha.4",
|
|
23
|
+
"@typespec/spector": "^0.1.0-alpha.12"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/deep-equal": "^1.0.1",
|
|
27
27
|
"@types/multer": "^1.4.10",
|
|
28
28
|
"@types/node": "~22.13.11",
|
|
29
|
-
"@typespec/openapi": "^1.0.0-rc.0",
|
|
30
|
-
"@typespec/openapi3": "^1.0.0-rc.0",
|
|
31
29
|
"concurrently": "^9.1.2",
|
|
32
30
|
"rimraf": "~6.0.1",
|
|
33
|
-
"typescript": "~5.8.2"
|
|
31
|
+
"typescript": "~5.8.2",
|
|
32
|
+
"@typespec/openapi": "^1.0.0-rc.0",
|
|
33
|
+
"@typespec/openapi3": "^1.0.0-rc.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@typespec/compiler": "^1.0.0-rc.0",
|
|
37
36
|
"@typespec/http": "^1.0.0-rc.0",
|
|
38
|
-
"@typespec/
|
|
39
|
-
"@typespec/
|
|
40
|
-
"@typespec/
|
|
37
|
+
"@typespec/compiler": "^1.0.0-rc.0",
|
|
38
|
+
"@typespec/rest": "^0.68.0",
|
|
39
|
+
"@typespec/versioning": "^0.68.0",
|
|
40
|
+
"@typespec/xml": "^0.68.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"watch": "tsc -p ./tsconfig.build.json --watch",
|