@techspokes/typescript-wsdl-client 0.19.2 → 0.20.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/README.md +1 -0
- package/dist/app/generateApp.js +3 -3
- package/docs/README.md +1 -0
- package/docs/releases/README.md +42 -0
- package/docs/releases/v0.20.0.md +22 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -222,6 +222,7 @@ See [CLI Reference](docs/cli-reference.md) for all flags and examples.
|
|
|
222
222
|
| [Testing Guide](docs/testing.md) | Testing patterns and mock client examples |
|
|
223
223
|
| [Production Guide](docs/production.md) | CI/CD, validation, logging |
|
|
224
224
|
| [Troubleshooting](docs/troubleshooting.md) | Common issues and debugging |
|
|
225
|
+
| [Release Notes](docs/releases/README.md) | Per-version GitHub release notes used by the draft release workflow |
|
|
225
226
|
|
|
226
227
|
### Extend
|
|
227
228
|
|
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.2",
|
|
516
516
|
},
|
|
517
517
|
devDependencies: {
|
|
518
|
-
"@types/node": "^25.
|
|
519
|
-
tsx: "^4.
|
|
518
|
+
"@types/node": "^25.9.0",
|
|
519
|
+
tsx: "^4.22.2",
|
|
520
520
|
typescript: "^6.0.3",
|
|
521
521
|
},
|
|
522
522
|
};
|
package/docs/README.md
CHANGED
|
@@ -21,6 +21,7 @@ Human-maintained reference documents for `@techspokes/typescript-wsdl-client`. T
|
|
|
21
21
|
- [testing.md](testing.md): testing patterns and mock client examples
|
|
22
22
|
- [production.md](production.md): CI/CD, validation, logging
|
|
23
23
|
- [troubleshooting.md](troubleshooting.md): common issues and debugging
|
|
24
|
+
- [releases/README.md](releases/README.md): per-version GitHub release notes used by the draft release workflow
|
|
24
25
|
|
|
25
26
|
## Extend
|
|
26
27
|
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Release Notes
|
|
2
|
+
|
|
3
|
+
Add one Markdown file per release tag. The draft release workflow requires this file before it creates or updates a GitHub draft release.
|
|
4
|
+
|
|
5
|
+
## File Naming
|
|
6
|
+
|
|
7
|
+
Use the Git tag as the filename:
|
|
8
|
+
|
|
9
|
+
```text
|
|
10
|
+
vX.Y.Z.md
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
For example, release `0.20.1` uses tag `v0.20.1` and release notes file `docs/releases/v0.20.1.md`.
|
|
14
|
+
|
|
15
|
+
## File Structure
|
|
16
|
+
|
|
17
|
+
Each release notes file must use this structure:
|
|
18
|
+
|
|
19
|
+
```markdown
|
|
20
|
+
# TypeScript WSDL Client vX.Y.Z
|
|
21
|
+
|
|
22
|
+
Short summary paragraph.
|
|
23
|
+
|
|
24
|
+
## Highlights
|
|
25
|
+
|
|
26
|
+
- User-facing release highlight.
|
|
27
|
+
|
|
28
|
+
## Upgrade Notes
|
|
29
|
+
|
|
30
|
+
No special upgrade steps.
|
|
31
|
+
|
|
32
|
+
## Validation
|
|
33
|
+
|
|
34
|
+
- `npm run maint:deps`
|
|
35
|
+
- `npm run ci`
|
|
36
|
+
|
|
37
|
+
## Notes
|
|
38
|
+
|
|
39
|
+
Release tag: `vX.Y.Z`.
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Write release notes for users and maintainers, not as a file-by-file change log. Use `CHANGELOG.md` for the canonical version history.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# TypeScript WSDL Client v0.20.0
|
|
2
|
+
|
|
3
|
+
This release refreshes dependency minimums and adds a tag-driven draft release workflow so each GitHub release starts from a reviewed release notes document.
|
|
4
|
+
|
|
5
|
+
## Highlights
|
|
6
|
+
|
|
7
|
+
- Bump root and generated app dependency minimums for `@types/node`, `soap`, and `tsx`.
|
|
8
|
+
- Add a `vX.Y.Z` tag workflow that validates the release state and creates or updates a GitHub draft release from `docs/releases/vX.Y.Z.md`.
|
|
9
|
+
- Require release notes in agent and contributor guidance so the changelog, package version, tag, and release description stay synchronized.
|
|
10
|
+
|
|
11
|
+
## Upgrade Notes
|
|
12
|
+
|
|
13
|
+
No special upgrade steps.
|
|
14
|
+
|
|
15
|
+
## Validation
|
|
16
|
+
|
|
17
|
+
- `npm run maint:deps`
|
|
18
|
+
- `npm run ci`
|
|
19
|
+
|
|
20
|
+
## Notes
|
|
21
|
+
|
|
22
|
+
Release tag: `v0.20.0`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techspokes/typescript-wsdl-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.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",
|
|
@@ -83,12 +83,12 @@
|
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@types/js-yaml": "^4.0.9",
|
|
86
|
-
"@types/node": "^25.
|
|
86
|
+
"@types/node": "^25.9.0",
|
|
87
87
|
"@types/yargs": "^17.0.35",
|
|
88
88
|
"fastify": "^5.8.5",
|
|
89
89
|
"fastify-plugin": "^5.1.0",
|
|
90
90
|
"rimraf": "^6.1.3",
|
|
91
|
-
"tsx": "^4.
|
|
91
|
+
"tsx": "^4.22.2",
|
|
92
92
|
"typescript": "^6.0.3",
|
|
93
93
|
"vitest": "^4.1.6"
|
|
94
94
|
},
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"fast-xml-parser": "^5.8.0",
|
|
98
98
|
"js-yaml": "^4.1.1",
|
|
99
99
|
"saxes": "^6.0.0",
|
|
100
|
-
"soap": "^1.9.
|
|
100
|
+
"soap": "^1.9.2",
|
|
101
101
|
"yargs": "^18.0.0"
|
|
102
102
|
},
|
|
103
103
|
"funding": {
|