pi-usereq 0.33.0 → 0.35.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/.g.conf +0 -4
- package/.github/workflows/release-npm.yml +4 -2
- package/CHANGELOG.md +21 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/pi-usereq/docs/REFERENCES.md +370 -350
- package/pi-usereq/docs/REQUIREMENTS.md +12 -12
- package/pi-usereq/docs/WORKFLOW.md +32 -18
- package/src/core/extension-status.ts +19 -3
- package/src/core/path-context.ts +59 -0
- package/src/index.ts +20 -14
- package/tests/extension-registration.test.ts +84 -11
- package/tests/release-workflow.test.ts +61 -0
package/.g.conf
CHANGED
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
"pattern": "README.md",
|
|
9
9
|
"regex": "\\s*\\((\\d+\\.\\d+\\.\\d+)\\)\\n"
|
|
10
10
|
},
|
|
11
|
-
{
|
|
12
|
-
"pattern": "src/**/*.ts",
|
|
13
|
-
"regex": "VERSION\\s*=\\s*[\"\\']?(\\d+\\.\\d+\\.\\d+)[\"\\']?"
|
|
14
|
-
},
|
|
15
11
|
{
|
|
16
12
|
"pattern": "package.json",
|
|
17
13
|
"regex": "\"version\"\\s*:\\s*\"(\\d+\\.\\d+\\.\\d+)\""
|
|
@@ -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,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.35.0](https://github.com/Ogekuri/PI-useReq/compare/v0.34.0..v0.35.0) - 2026-05-29
|
|
4
|
+
### 🐛 Bug Fixes
|
|
5
|
+
- Remove version from ts files.
|
|
6
|
+
|
|
7
|
+
### 🚜 Changes
|
|
8
|
+
- prepend runtime metadata in status bar [useReq] *(extension-status)*
|
|
9
|
+
- Update the SRS for the status-bar prefix ordering and runtime metadata contract.
|
|
10
|
+
- Read package metadata at runtime, prepend <extension>:v<version> before status, and keep the documented theme split.
|
|
11
|
+
- Refresh status-bar tests, WORKFLOW.md, and REFERENCES.md for the new runtime call path.
|
|
12
|
+
|
|
13
|
+
## [0.34.0](https://github.com/Ogekuri/PI-useReq/compare/v0.33.0..v0.34.0) - 2026-05-29
|
|
14
|
+
### 🚜 Changes
|
|
15
|
+
- add debug-summarize and YAML check [useReq] *(debug-menu)*
|
|
16
|
+
- Update the SRS for debug-menu ordering and debug wrapper coverage.
|
|
17
|
+
- Implement debug-summarize, move the tool-wrapper row before Log file, and refresh runtime docs.
|
|
18
|
+
- Add release-workflow YAML syntax coverage and align npm publish steps with the documented release contract.
|
|
19
|
+
|
|
3
20
|
## [0.33.0](https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0) - 2026-05-29
|
|
4
21
|
### 🐛 Bug Fixes
|
|
5
22
|
- Clean workflow file after all tests and bug fixes.
|
|
@@ -489,6 +506,8 @@
|
|
|
489
506
|
- \[0.31.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.31.0
|
|
490
507
|
- \[0.32.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.32.0
|
|
491
508
|
- \[0.33.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.33.0
|
|
509
|
+
- \[0.34.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.34.0
|
|
510
|
+
- \[0.35.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.35.0
|
|
492
511
|
|
|
493
512
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
494
513
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
@@ -521,3 +540,5 @@
|
|
|
521
540
|
[0.31.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.30.0..v0.31.0
|
|
522
541
|
[0.32.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0
|
|
523
542
|
[0.33.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0
|
|
543
|
+
[0.34.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.33.0..v0.34.0
|
|
544
|
+
[0.35.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.34.0..v0.35.0
|
package/README.md
CHANGED