@typespec/http-specs 0.1.0-alpha.29-dev.6 → 0.1.0-alpha.29

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 +18 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @typespec/http-specs
2
2
 
3
+ ## 0.1.0-alpha.29
4
+
5
+ ### Features
6
+
7
+ - [#9106](https://github.com/microsoft/typespec/pull/9106) Add tests for array encode.
8
+ - [#8929](https://github.com/microsoft/typespec/pull/8929) add test for documentation generation
9
+ - [#9019](https://github.com/microsoft/typespec/pull/9019) Add test case for special words about model property name
10
+
11
+ ### Bump dependencies
12
+
13
+ - [#9046](https://github.com/microsoft/typespec/pull/9046) Upgrade dependencies
14
+
15
+ ### Bug Fixes
16
+
17
+ - [#9039](https://github.com/microsoft/typespec/pull/9039) Fix EncodeDuration tests with larger unit durations being too strict by making query parameter expectations match input types as numbers instead of strings
18
+ - [#8985](https://github.com/microsoft/typespec/pull/8985) Add new `sourceUrl` handling for the go to source navigation
19
+
20
+
3
21
  ## 0.1.0-alpha.28
4
22
 
5
23
  ### 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.29-dev.6",
4
+ "version": "0.1.0-alpha.29",
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.10 || >=0.1.0-alpha.11-dev <0.1.0-alpha.11",
26
- "@typespec/spector": "^0.1.0-alpha.20 || >=0.1.0-alpha.21-dev <0.1.0-alpha.21",
27
- "deep-equal": "^2.2.0"
25
+ "deep-equal": "^2.2.0",
26
+ "@typespec/spec-api": "^0.1.0-alpha.11",
27
+ "@typespec/spector": "^0.1.0-alpha.21"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/deep-equal": "^1.0.1",
31
31
  "@types/multer": "^2.0.0",
32
32
  "@types/node": "~24.10.1",
33
- "@typespec/json-schema": "^1.6.0",
34
- "@typespec/openapi": "^1.6.0",
35
- "@typespec/openapi3": "^1.6.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.7.0",
37
+ "@typespec/json-schema": "^1.7.0",
38
+ "@typespec/openapi3": "^1.7.0"
39
39
  },
40
40
  "peerDependencies": {
41
- "@typespec/compiler": "^1.6.0",
42
- "@typespec/http": "^1.6.0",
43
- "@typespec/rest": "^0.76.0 || >=0.77.0-dev <0.77.0",
44
- "@typespec/versioning": "^0.76.0 || >=0.77.0-dev <0.77.0",
45
- "@typespec/xml": "^0.76.0 || >=0.77.0-dev <0.77.0"
41
+ "@typespec/compiler": "^1.7.0",
42
+ "@typespec/http": "^1.7.0",
43
+ "@typespec/rest": "^0.77.0",
44
+ "@typespec/versioning": "^0.77.0",
45
+ "@typespec/xml": "^0.77.0"
46
46
  },
47
47
  "scripts": {
48
48
  "watch": "tsc -p ./tsconfig.build.json --watch",