@typespec/http-specs 0.1.0-alpha.32-dev.8 → 0.1.0-alpha.32

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 +16 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @typespec/http-specs
2
2
 
3
+ ## 0.1.0-alpha.32
4
+
5
+ ### Features
6
+
7
+ - [#9390](https://github.com/microsoft/typespec/pull/9390) Add array encoding test for enum and extensible enum arrays.
8
+ - [#9513](https://github.com/microsoft/typespec/pull/9513) Add Spector tests for File type with various content types (body and multipart)
9
+ - [#9499](https://github.com/microsoft/typespec/pull/9499) Add test for xml error deserialization
10
+ - [#9455](https://github.com/microsoft/typespec/pull/9455) Add test for xml pagination with next link
11
+ - [#9455](https://github.com/microsoft/typespec/pull/9455) Add test for xml paging
12
+
13
+ ### Bug Fixes
14
+
15
+ - [#9570](https://github.com/microsoft/typespec/pull/9570) Fix payload/xml XmlErrorValue response to wrap SimpleModel with content-type "application/xml" for consistency with XmlError
16
+ - [#9636](https://github.com/microsoft/typespec/pull/9636) Fix expectation for query larger unit tests
17
+
18
+
3
19
  ## 0.1.0-alpha.31
4
20
 
5
21
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@typespec/http-specs",
3
3
  "displayName": "Http Specs",
4
- "version": "0.1.0-alpha.32-dev.8",
4
+ "version": "0.1.0-alpha.32",
5
5
  "description": "Spec scenarios and mock apis",
6
6
  "main": "dist/index.js",
7
7
  "type": "module",
@@ -22,27 +22,27 @@
22
22
  },
23
23
  "homepage": "https://github.com/microsoft/typespec#readme",
24
24
  "dependencies": {
25
- "@typespec/spec-api": "^0.1.0-alpha.12 || >=0.1.0-alpha.13-dev <0.1.0-alpha.13",
26
- "@typespec/spector": "^0.1.0-alpha.22 || >=0.1.0-alpha.23-dev <0.1.0-alpha.23",
27
- "deep-equal": "^2.2.0"
25
+ "deep-equal": "^2.2.0",
26
+ "@typespec/spec-api": "^0.1.0-alpha.12",
27
+ "@typespec/spector": "^0.1.0-alpha.23"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/deep-equal": "^1.0.1",
31
31
  "@types/multer": "^2.0.0",
32
32
  "@types/node": "~25.0.2",
33
- "@typespec/json-schema": "^1.8.0",
34
- "@typespec/openapi": "^1.8.0",
35
- "@typespec/openapi3": "^1.8.0",
36
33
  "concurrently": "^9.1.2",
37
34
  "rimraf": "~6.1.2",
38
- "typescript": "~5.9.2"
35
+ "typescript": "~5.9.2",
36
+ "@typespec/openapi": "^1.9.0",
37
+ "@typespec/json-schema": "^1.9.0",
38
+ "@typespec/openapi3": "^1.9.0"
39
39
  },
40
40
  "peerDependencies": {
41
- "@typespec/compiler": "^1.8.0",
42
- "@typespec/http": "^1.8.0",
43
- "@typespec/rest": "^0.78.0 || >=0.79.0-dev <0.79.0",
44
- "@typespec/versioning": "^0.78.0 || >=0.79.0-dev <0.79.0",
45
- "@typespec/xml": "^0.78.0 || >=0.79.0-dev <0.79.0"
41
+ "@typespec/compiler": "^1.9.0",
42
+ "@typespec/http": "^1.9.0",
43
+ "@typespec/rest": "^0.79.0",
44
+ "@typespec/versioning": "^0.79.0",
45
+ "@typespec/xml": "^0.79.0"
46
46
  },
47
47
  "scripts": {
48
48
  "watch": "tsc -p ./tsconfig.build.json --watch",