@typespec/http-server-js 0.58.0-alpha.12-dev.11 → 0.58.0-alpha.13-dev.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.
- package/CHANGELOG.md +18 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog - @typespec/http-server-js
|
|
2
2
|
|
|
3
|
+
## 0.58.0-alpha.12
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#5819](https://github.com/microsoft/typespec/pull/5819) Added support for encoding and decoding scalar types and default encodings prescribed by convention.
|
|
8
|
+
|
|
9
|
+
### Bump dependencies
|
|
10
|
+
|
|
11
|
+
- [#6595](https://github.com/microsoft/typespec/pull/6595) Upgrade dependencies
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- [#6710](https://github.com/microsoft/typespec/pull/6710) Updates to scaffolding script and scaffold commands for consistency
|
|
16
|
+
- [#6809](https://github.com/microsoft/typespec/pull/6809) Ignore unfinished types when visiting service namespace for completeness. This avoids crashes that result from encountering TemplateParameter instances.
|
|
17
|
+
- [#6810](https://github.com/microsoft/typespec/pull/6810) Correct implementation of JSON body deserialization when the body type is an array or record requiring interior serialization/deserialization.
|
|
18
|
+
- [#6813](https://github.com/microsoft/typespec/pull/6813) Handle parameter and variable names that could be keywords correctly in more cases, preventing syntax errors.
|
|
19
|
+
|
|
20
|
+
|
|
3
21
|
## 0.58.0-alpha.11
|
|
4
22
|
|
|
5
23
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/http-server-js",
|
|
3
|
-
"version": "0.58.0-alpha.
|
|
3
|
+
"version": "0.58.0-alpha.13-dev.0",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec HTTP server code generator for JavaScript",
|
|
6
6
|
"homepage": "https://github.com/microsoft/typespec",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"hsjs-scaffold": "./dist/src/scripts/scaffold/bin.mjs"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@typespec/compiler": "^
|
|
36
|
-
"@typespec/http": "^
|
|
37
|
-
"@typespec/openapi3": "^
|
|
35
|
+
"@typespec/compiler": "^1.0.0-rc.0",
|
|
36
|
+
"@typespec/http": "^1.0.0-rc.0",
|
|
37
|
+
"@typespec/openapi3": "^1.0.0-rc.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependenciesMeta": {
|
|
40
40
|
"@typespec/openapi3": {
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "~22.13.11",
|
|
50
|
-
"@typespec/compiler": "^
|
|
51
|
-
"@typespec/http": "^
|
|
52
|
-
"@typespec/http-specs": "^0.1.0-alpha.
|
|
53
|
-
"@typespec/internal-build-utils": "^0.
|
|
54
|
-
"@typespec/openapi3": "^
|
|
50
|
+
"@typespec/compiler": "^1.0.0-rc.0",
|
|
51
|
+
"@typespec/http": "^1.0.0-rc.0",
|
|
52
|
+
"@typespec/http-specs": "^0.1.0-alpha.17 || >=0.1.0-alpha.18-dev <0.1.0-alpha.18",
|
|
53
|
+
"@typespec/internal-build-utils": "^0.68.0 || >=0.69.0-dev <0.69.0",
|
|
54
|
+
"@typespec/openapi3": "^1.0.0-rc.0",
|
|
55
55
|
"@typespec/spector": "^0.1.0-alpha.10 || >=0.1.0-alpha.11-dev <0.1.0-alpha.11",
|
|
56
56
|
"@vitest/coverage-v8": "^3.0.9",
|
|
57
57
|
"@vitest/ui": "^3.0.9",
|