@techspokes/typescript-wsdl-client 0.29.0 → 0.30.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.
@@ -515,7 +515,7 @@ function generatePackageJson(appDir, force) {
515
515
  soap: "^1.9.3",
516
516
  },
517
517
  devDependencies: {
518
- "@types/node": "^25.9.3",
518
+ "@types/node": "^26.0.0",
519
519
  tsx: "^4.22.4",
520
520
  typescript: "^6.0.3",
521
521
  },
@@ -0,0 +1,30 @@
1
+ # TypeScript WSDL Client v0.30.0
2
+
3
+ ## Dependency Floor Maintenance
4
+
5
+ This release brings the project dependency floor, lockfile, and CI tooling up to date after a batch of merged Dependabot updates. There are no behavioral or API changes; it is a routine maintenance bump.
6
+
7
+ ## What This Improves
8
+
9
+ Developers get current dependency minimums in both the published package and newly scaffolded Fastify gateway apps. The XML parsing (`fast-xml-parser`) and YAML serialization (`js-yaml`) runtime dependencies move to their latest releases, the TypeScript Node type definitions advance to the v26 line, and the CI checkout action moves to v7.
10
+
11
+ ## Highlights
12
+
13
+ - Updates `js-yaml` to 5.1.0 and `fast-xml-parser` to 5.9.3.
14
+ - Advances `@types/node` to 26.0.0 in both the package and the generated app scaffold pins.
15
+ - Bumps the `actions/checkout` GitHub Actions workflow step from 6 to 7.
16
+
17
+ ## Upgrade Notes
18
+
19
+ No special upgrade steps. Regenerate generated Fastify app scaffolds when you want new app projects to start with the updated dependency pins.
20
+
21
+ ## Validation
22
+
23
+ - CI passed.
24
+ - NPM package contents were validated.
25
+ - Documentation links and TypeScript fenced snippets were validated.
26
+ - Agent skill artifact was validated and packaged.
27
+
28
+ ## Notes
29
+
30
+ Release tag: `v0.30.0`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@techspokes/typescript-wsdl-client",
3
- "version": "0.29.0",
3
+ "version": "0.30.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",
@@ -90,7 +90,7 @@
90
90
  },
91
91
  "devDependencies": {
92
92
  "@types/js-yaml": "^4.0.9",
93
- "@types/node": "^25.9.3",
93
+ "@types/node": "^26.0.0",
94
94
  "@types/yargs": "^17.0.35",
95
95
  "fastify": "^5.8.5",
96
96
  "fastify-plugin": "^6.0.0",
@@ -101,8 +101,8 @@
101
101
  },
102
102
  "dependencies": {
103
103
  "@apidevtools/swagger-parser": "^12.1.0",
104
- "fast-xml-parser": "^5.9.0",
105
- "js-yaml": "^4.2.0",
104
+ "fast-xml-parser": "^5.9.3",
105
+ "js-yaml": "^5.1.0",
106
106
  "saxes": "^6.0.0",
107
107
  "soap": "^1.9.3",
108
108
  "yargs": "^18.0.0"