pi-usereq 0.32.0 → 0.34.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/.github/workflows/release-npm.yml +3 -7
- package/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/pi-usereq/docs/REFERENCES.md +187 -187
- package/pi-usereq/docs/REQUIREMENTS.md +8 -8
- package/pi-usereq/docs/WORKFLOW.md +3 -3
- package/src/index.ts +17 -12
- package/tests/extension-registration.test.ts +31 -9
- package/tests/release-workflow.test.ts +61 -0
|
@@ -51,15 +51,12 @@ jobs:
|
|
|
51
51
|
fetch-depth: 0
|
|
52
52
|
|
|
53
53
|
- name: Setup Node.js
|
|
54
|
-
uses: actions/setup-node@
|
|
54
|
+
uses: actions/setup-node@v5
|
|
55
55
|
with:
|
|
56
56
|
node-version: ${{ env.NODE_VERSION }}
|
|
57
57
|
registry-url: 'https://registry.npmjs.org'
|
|
58
58
|
package-manager-cache: false # never use caching in release builds
|
|
59
59
|
|
|
60
|
-
# - name: Imposta il registro npm esplicitamente per OIDC
|
|
61
|
-
# run: npm config set registry https://registry.npmjs.org/
|
|
62
|
-
|
|
63
60
|
- name: Install dependencies
|
|
64
61
|
run: npm ci
|
|
65
62
|
|
|
@@ -70,10 +67,9 @@ jobs:
|
|
|
70
67
|
run: npm pkg delete private
|
|
71
68
|
|
|
72
69
|
- name: Publish package to npm
|
|
73
|
-
# run: npm publish # Or: npm stage publish
|
|
74
70
|
run: npm publish --provenance --access public
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
env:
|
|
72
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
77
73
|
|
|
78
74
|
- name: Build Changelog
|
|
79
75
|
id: build_changelog
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.34.0](https://github.com/Ogekuri/PI-useReq/compare/v0.33.0..v0.34.0) - 2026-05-29
|
|
4
|
+
### 🚜 Changes
|
|
5
|
+
- add debug-summarize and YAML check [useReq] *(debug-menu)*
|
|
6
|
+
- Update the SRS for debug-menu ordering and debug wrapper coverage.
|
|
7
|
+
- Implement debug-summarize, move the tool-wrapper row before Log file, and refresh runtime docs.
|
|
8
|
+
- Add release-workflow YAML syntax coverage and align npm publish steps with the documented release contract.
|
|
9
|
+
|
|
10
|
+
## [0.33.0](https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0) - 2026-05-29
|
|
11
|
+
### 🐛 Bug Fixes
|
|
12
|
+
- Clean workflow file after all tests and bug fixes.
|
|
13
|
+
|
|
3
14
|
## [0.32.0](https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0) - 2026-05-29
|
|
4
15
|
### 🐛 Bug Fixes
|
|
5
16
|
- Revert workflow.
|
|
@@ -484,6 +495,8 @@
|
|
|
484
495
|
- \[0.30.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.30.0
|
|
485
496
|
- \[0.31.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.31.0
|
|
486
497
|
- \[0.32.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.32.0
|
|
498
|
+
- \[0.33.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.33.0
|
|
499
|
+
- \[0.34.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.34.0
|
|
487
500
|
|
|
488
501
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
489
502
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
@@ -515,3 +528,5 @@
|
|
|
515
528
|
[0.30.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.29.0..v0.30.0
|
|
516
529
|
[0.31.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.30.0..v0.31.0
|
|
517
530
|
[0.32.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0
|
|
531
|
+
[0.33.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0
|
|
532
|
+
[0.34.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.33.0..v0.34.0
|
package/README.md
CHANGED