pi-usereq 0.33.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 +4 -2
- package/CHANGELOG.md +9 -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,7 +51,7 @@ 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'
|
|
@@ -67,7 +67,9 @@ jobs:
|
|
|
67
67
|
run: npm pkg delete private
|
|
68
68
|
|
|
69
69
|
- name: Publish package to npm
|
|
70
|
-
run: npm publish
|
|
70
|
+
run: npm publish --provenance --access public
|
|
71
|
+
env:
|
|
72
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
71
73
|
|
|
72
74
|
- name: Build Changelog
|
|
73
75
|
id: build_changelog
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## [0.33.0](https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0) - 2026-05-29
|
|
4
11
|
### 🐛 Bug Fixes
|
|
5
12
|
- Clean workflow file after all tests and bug fixes.
|
|
@@ -489,6 +496,7 @@
|
|
|
489
496
|
- \[0.31.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.31.0
|
|
490
497
|
- \[0.32.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.32.0
|
|
491
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
|
|
492
500
|
|
|
493
501
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
494
502
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
@@ -521,3 +529,4 @@
|
|
|
521
529
|
[0.31.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.30.0..v0.31.0
|
|
522
530
|
[0.32.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0
|
|
523
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