@techspokes/typescript-wsdl-client 0.21.0 → 0.22.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/dist/app/generateApp.js +3 -3
- package/docs/releases/v0.22.0.md +30 -0
- package/package.json +5 -5
package/dist/app/generateApp.js
CHANGED
|
@@ -512,11 +512,11 @@ function generatePackageJson(appDir, force) {
|
|
|
512
512
|
fastify: "^5.8.5",
|
|
513
513
|
"fastify-plugin": "^5.1.0",
|
|
514
514
|
saxes: "^6.0.0",
|
|
515
|
-
soap: "^1.9.
|
|
515
|
+
soap: "^1.9.3",
|
|
516
516
|
},
|
|
517
517
|
devDependencies: {
|
|
518
|
-
"@types/node": "^25.9.
|
|
519
|
-
tsx: "^4.22.
|
|
518
|
+
"@types/node": "^25.9.1",
|
|
519
|
+
tsx: "^4.22.3",
|
|
520
520
|
typescript: "^6.0.3",
|
|
521
521
|
},
|
|
522
522
|
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# TypeScript WSDL Client v0.22.0
|
|
2
|
+
|
|
3
|
+
## Release Workflow And Dependency Refresh
|
|
4
|
+
|
|
5
|
+
This release refreshes dependency pins from the recent bot merges and carries forward release documentation improvements for the packaged agent skill workflow.
|
|
6
|
+
|
|
7
|
+
## What This Improves
|
|
8
|
+
|
|
9
|
+
Maintainers get a release flow whose generated draft bodies use validated release-note subtitles and consumer-facing validation language. Consumer projects generated by the app scaffold also receive newer SOAP runtime and TypeScript execution pins without manual dependency editing.
|
|
10
|
+
|
|
11
|
+
## Highlights
|
|
12
|
+
|
|
13
|
+
- Updates root pins to `@types/node` 25.9.1, `soap` 1.9.3, `tsx` 4.22.3, and `vitest` 4.1.7.
|
|
14
|
+
- Updates app scaffold pins to `@types/node` 25.9.1, `soap` 1.9.3, and `tsx` 4.22.3.
|
|
15
|
+
- Renders draft release bodies from validated release-note subtitles.
|
|
16
|
+
- Describes release validation as consumer-facing outcomes and surfaces the standalone agent skill artifact in docs.
|
|
17
|
+
|
|
18
|
+
## Upgrade Notes
|
|
19
|
+
|
|
20
|
+
No special upgrade steps.
|
|
21
|
+
|
|
22
|
+
## Validation
|
|
23
|
+
|
|
24
|
+
- CI passed.
|
|
25
|
+
- NPM package contents were validated.
|
|
26
|
+
- Agent skill artifact was validated and packaged.
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
Release tag: `v0.22.0`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techspokes/typescript-wsdl-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "Turn legacy WSDL/SOAP services into typed TypeScript clients, OpenAPI 3.1 specs, and production-ready Fastify REST gateways. Built for enterprise SOAP modernization.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wsdl",
|
|
@@ -88,21 +88,21 @@
|
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@types/js-yaml": "^4.0.9",
|
|
91
|
-
"@types/node": "^25.9.
|
|
91
|
+
"@types/node": "^25.9.1",
|
|
92
92
|
"@types/yargs": "^17.0.35",
|
|
93
93
|
"fastify": "^5.8.5",
|
|
94
94
|
"fastify-plugin": "^5.1.0",
|
|
95
95
|
"rimraf": "^6.1.3",
|
|
96
|
-
"tsx": "^4.22.
|
|
96
|
+
"tsx": "^4.22.3",
|
|
97
97
|
"typescript": "^6.0.3",
|
|
98
|
-
"vitest": "^4.1.
|
|
98
|
+
"vitest": "^4.1.7"
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"@apidevtools/swagger-parser": "^12.1.0",
|
|
102
102
|
"fast-xml-parser": "^5.8.0",
|
|
103
103
|
"js-yaml": "^4.1.1",
|
|
104
104
|
"saxes": "^6.0.0",
|
|
105
|
-
"soap": "^1.9.
|
|
105
|
+
"soap": "^1.9.3",
|
|
106
106
|
"yargs": "^18.0.0"
|
|
107
107
|
},
|
|
108
108
|
"funding": {
|