pi-usereq 0.13.0 → 0.33.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 +8 -7
- package/.gitignore +1 -2
- package/CHANGELOG.md +140 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/pi-usereq/docs/REFERENCES.md +407 -348
- package/pi-usereq/docs/REQUIREMENTS.md +19 -8
- package/pi-usereq/docs/WORKFLOW.md +16 -6
- package/src/core/config.ts +19 -7
- package/src/core/debug-runtime.ts +24 -0
- package/src/index.ts +167 -10
- package/tests/extension-registration.test.ts +144 -5
- package/tests/release-workflow.test.ts +3 -2
- package/scripts/lib/extension-debug-harness.ts +0 -443
- package/scripts/lib/recording-extension-api.ts +0 -855
- package/scripts/lib/sdk-smoke.ts +0 -503
|
@@ -7,11 +7,11 @@ on:
|
|
|
7
7
|
|
|
8
8
|
permissions:
|
|
9
9
|
contents: write
|
|
10
|
-
id-token: write
|
|
10
|
+
id-token: write # Required for OIDC
|
|
11
11
|
attestations: write
|
|
12
12
|
|
|
13
13
|
env:
|
|
14
|
-
NODE_VERSION: '
|
|
14
|
+
NODE_VERSION: '24.15.0'
|
|
15
15
|
|
|
16
16
|
jobs:
|
|
17
17
|
# 1. Controlla se siamo sul branch corretto
|
|
@@ -51,22 +51,23 @@ jobs:
|
|
|
51
51
|
fetch-depth: 0
|
|
52
52
|
|
|
53
53
|
- name: Setup Node.js
|
|
54
|
-
uses: actions/setup-node@
|
|
54
|
+
uses: actions/setup-node@v6
|
|
55
55
|
with:
|
|
56
56
|
node-version: ${{ env.NODE_VERSION }}
|
|
57
|
-
cache: 'npm'
|
|
58
57
|
registry-url: 'https://registry.npmjs.org'
|
|
58
|
+
package-manager-cache: false # never use caching in release builds
|
|
59
59
|
|
|
60
60
|
- name: Install dependencies
|
|
61
61
|
run: npm ci
|
|
62
62
|
|
|
63
|
+
- name: Build if present
|
|
64
|
+
run: npm run build --if-present
|
|
65
|
+
|
|
63
66
|
- name: Remove private package flag
|
|
64
67
|
run: npm pkg delete private
|
|
65
68
|
|
|
66
69
|
- name: Publish package to npm
|
|
67
|
-
run: npm publish
|
|
68
|
-
env:
|
|
69
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
70
|
+
run: npm publish # Or: npm stage publish
|
|
70
71
|
|
|
71
72
|
- name: Build Changelog
|
|
72
73
|
id: build_changelog
|
package/.gitignore
CHANGED
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
!LICENSE.txt
|
|
24
24
|
!setup.py
|
|
25
25
|
!pyproject.toml
|
|
26
|
+
!pyrightconfig.json
|
|
26
27
|
!uv.lock
|
|
27
28
|
!.g.conf
|
|
28
29
|
!package-lock.json
|
|
@@ -78,8 +79,6 @@ downloads/
|
|
|
78
79
|
eggs/
|
|
79
80
|
.eggs/
|
|
80
81
|
lib/
|
|
81
|
-
!scripts/lib/
|
|
82
|
-
!scripts/lib/**/*.ts
|
|
83
82
|
lib64/
|
|
84
83
|
parts/
|
|
85
84
|
sdist/
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,105 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.33.0](https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0) - 2026-05-29
|
|
4
|
+
### 🐛 Bug Fixes
|
|
5
|
+
- Clean workflow file after all tests and bug fixes.
|
|
6
|
+
|
|
7
|
+
## [0.32.0](https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0) - 2026-05-29
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
- Revert workflow.
|
|
10
|
+
|
|
11
|
+
### 🚜 Changes
|
|
12
|
+
- update Node.js 24.15.0 release flow [useReq] *(release-workflow)*
|
|
13
|
+
- update REQUIREMENTS.md and WORKFLOW.md traceability for the release runtime
|
|
14
|
+
- pin .github/workflows/release-npm.yml to Node.js 24.15.0 and restore npm publish auth
|
|
15
|
+
- align tests/release-workflow.test.ts with the pinned runtime and publish contract
|
|
16
|
+
|
|
17
|
+
## [0.31.0](https://github.com/Ogekuri/PI-useReq/compare/v0.30.0..v0.31.0) - 2026-05-29
|
|
18
|
+
### 🐛 Bug Fixes
|
|
19
|
+
- Try another workaround, again, and again.
|
|
20
|
+
|
|
21
|
+
## [0.30.0](https://github.com/Ogekuri/PI-useReq/compare/v0.29.0..v0.30.0) - 2026-05-29
|
|
22
|
+
### 🐛 Bug Fixes
|
|
23
|
+
- Revert setup-node version.
|
|
24
|
+
|
|
25
|
+
## [0.29.0](https://github.com/Ogekuri/PI-useReq/compare/v0.28.0..v0.29.0) - 2026-05-29
|
|
26
|
+
### 🐛 Bug Fixes
|
|
27
|
+
- Try another workaround, again, and again.
|
|
28
|
+
|
|
29
|
+
## [0.28.0](https://github.com/Ogekuri/PI-useReq/compare/v0.27.0..v0.28.0) - 2026-05-29
|
|
30
|
+
### 🐛 Bug Fixes
|
|
31
|
+
- Try another workaround, again, and again.
|
|
32
|
+
|
|
33
|
+
## [0.27.0](https://github.com/Ogekuri/PI-useReq/compare/v0.26.0..v0.27.0) - 2026-05-29
|
|
34
|
+
### 🐛 Bug Fixes
|
|
35
|
+
- Try another workaround, again, and again.
|
|
36
|
+
|
|
37
|
+
## [0.26.0](https://github.com/Ogekuri/PI-useReq/compare/v0.25.0..v0.26.0) - 2026-05-29
|
|
38
|
+
### 🐛 Bug Fixes
|
|
39
|
+
- Try another workaround, again.
|
|
40
|
+
|
|
41
|
+
## [0.25.0](https://github.com/Ogekuri/PI-useReq/compare/v0.24.0..v0.25.0) - 2026-05-29
|
|
42
|
+
### 🐛 Bug Fixes
|
|
43
|
+
- Try another workaround.
|
|
44
|
+
|
|
45
|
+
## [0.24.0](https://github.com/Ogekuri/PI-useReq/compare/v0.23.0..v0.24.0) - 2026-05-29
|
|
46
|
+
### 🐛 Bug Fixes
|
|
47
|
+
- Remove install -g npm@latest from workflow.
|
|
48
|
+
|
|
49
|
+
## [0.23.0](https://github.com/Ogekuri/PI-useReq/compare/v0.22.0..v0.23.0) - 2026-05-29
|
|
50
|
+
### 🐛 Bug Fixes
|
|
51
|
+
- Workaround actions/setup-node OIDC bug.
|
|
52
|
+
|
|
53
|
+
## [0.22.0](https://github.com/Ogekuri/PI-useReq/compare/v0.21.0..v0.22.0) - 2026-05-29
|
|
54
|
+
### 🐛 Bug Fixes
|
|
55
|
+
- Update workflow file.
|
|
56
|
+
|
|
57
|
+
## [0.21.0](https://github.com/Ogekuri/PI-useReq/compare/v0.20.0..v0.21.0) - 2026-05-29
|
|
58
|
+
### 🐛 Bug Fixes
|
|
59
|
+
- Update workflow file.
|
|
60
|
+
|
|
61
|
+
## [0.20.0](https://github.com/Ogekuri/PI-useReq/compare/v0.19.0..v0.20.0) - 2026-05-29
|
|
62
|
+
### 🐛 Bug Fixes
|
|
63
|
+
- Update workflow file for 2FA publish.
|
|
64
|
+
|
|
65
|
+
## [0.19.0](https://github.com/Ogekuri/PI-useReq/compare/v0.18.0..v0.19.0) - 2026-05-29
|
|
66
|
+
### 🐛 Bug Fixes
|
|
67
|
+
- Update version number.
|
|
68
|
+
|
|
69
|
+
### ◀️ Revert
|
|
70
|
+
- Roll back branch to 6b800ba9 (6b800ba99e97ec88f7d9d10d6abe125020d3aebb).
|
|
71
|
+
|
|
72
|
+
## [0.18.0](https://github.com/Ogekuri/PI-useReq/compare/v0.17.0..v0.18.0) - 2026-05-29
|
|
73
|
+
### 🐛 Bug Fixes
|
|
74
|
+
- Fix workflow file.
|
|
75
|
+
|
|
76
|
+
## [0.17.0](https://github.com/Ogekuri/PI-useReq/compare/v0.16.0..v0.17.0) - 2026-05-29
|
|
77
|
+
### ⛰️ Features
|
|
78
|
+
- Re-add tocken.
|
|
79
|
+
|
|
80
|
+
## [0.16.0](https://github.com/Ogekuri/PI-useReq/compare/v0.15.0..v0.16.0) - 2026-05-29
|
|
81
|
+
### 🐛 Bug Fixes
|
|
82
|
+
- Fix workflow.
|
|
83
|
+
|
|
84
|
+
### 🚜 Changes
|
|
85
|
+
- adopt trusted npm publishing [useReq] *(release-npm)*
|
|
86
|
+
- update release requirements for Node 24 and OIDC trusted publishing
|
|
87
|
+
- update workflow, package metadata, and release workflow tests
|
|
88
|
+
- refresh release runtime documentation
|
|
89
|
+
|
|
90
|
+
## [0.14.0](https://github.com/Ogekuri/PI-useReq/compare/v0.13.0..v0.14.0) - 2026-05-29
|
|
91
|
+
### ⛰️ Features
|
|
92
|
+
- add debug tool slash commands [useReq] *(debug)*
|
|
93
|
+
- Add DEBUG_TOOL_COMMANDS_ENABLED local config and Debug submenu row.
|
|
94
|
+
- Register config-gated debug-compress, debug-references,
|
|
95
|
+
- debug-static-check, and debug-tokens wrappers.
|
|
96
|
+
- Update requirements, workflow, references, and tests for traceability.
|
|
97
|
+
- Update .gitignore file.
|
|
98
|
+
- Remove REFERENCES.md.
|
|
99
|
+
|
|
100
|
+
### 📚 Documentation
|
|
101
|
+
- Update REFERENCES.md document. [useReq] *(references)*
|
|
102
|
+
|
|
3
103
|
## [0.13.0](https://github.com/Ogekuri/PI-useReq/compare/v0.12.0..v0.13.0) - 2026-04-27
|
|
4
104
|
### 🚜 Changes
|
|
5
105
|
- BREAKING CHANGE: split local and global configuration [useReq] *(config)*
|
|
@@ -369,6 +469,26 @@
|
|
|
369
469
|
- \[0.11.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.11.0
|
|
370
470
|
- \[0.12.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.12.0
|
|
371
471
|
- \[0.13.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.13.0
|
|
472
|
+
- \[0.14.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.14.0
|
|
473
|
+
- \[0.15.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.15.0
|
|
474
|
+
- \[0.16.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.16.0
|
|
475
|
+
- \[0.17.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.17.0
|
|
476
|
+
- \[0.18.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.18.0
|
|
477
|
+
- \[0.19.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.19.0
|
|
478
|
+
- \[0.20.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.20.0
|
|
479
|
+
- \[0.21.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.21.0
|
|
480
|
+
- \[0.22.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.22.0
|
|
481
|
+
- \[0.23.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.23.0
|
|
482
|
+
- \[0.24.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.24.0
|
|
483
|
+
- \[0.25.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.25.0
|
|
484
|
+
- \[0.26.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.26.0
|
|
485
|
+
- \[0.27.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.27.0
|
|
486
|
+
- \[0.28.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.28.0
|
|
487
|
+
- \[0.29.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.29.0
|
|
488
|
+
- \[0.30.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.30.0
|
|
489
|
+
- \[0.31.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.31.0
|
|
490
|
+
- \[0.32.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.32.0
|
|
491
|
+
- \[0.33.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.33.0
|
|
372
492
|
|
|
373
493
|
[0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
|
|
374
494
|
[0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
|
|
@@ -381,3 +501,23 @@
|
|
|
381
501
|
[0.11.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.10.0..v0.11.0
|
|
382
502
|
[0.12.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.11.0..v0.12.0
|
|
383
503
|
[0.13.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.12.0..v0.13.0
|
|
504
|
+
[0.14.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.13.0..v0.14.0
|
|
505
|
+
[0.15.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.14.0..v0.15.0
|
|
506
|
+
[0.16.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.15.0..v0.16.0
|
|
507
|
+
[0.17.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.16.0..v0.17.0
|
|
508
|
+
[0.18.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.17.0..v0.18.0
|
|
509
|
+
[0.19.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.18.0..v0.19.0
|
|
510
|
+
[0.20.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.19.0..v0.20.0
|
|
511
|
+
[0.21.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.20.0..v0.21.0
|
|
512
|
+
[0.22.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.21.0..v0.22.0
|
|
513
|
+
[0.23.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.22.0..v0.23.0
|
|
514
|
+
[0.24.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.23.0..v0.24.0
|
|
515
|
+
[0.25.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.24.0..v0.25.0
|
|
516
|
+
[0.26.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.25.0..v0.26.0
|
|
517
|
+
[0.27.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.26.0..v0.27.0
|
|
518
|
+
[0.28.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.27.0..v0.28.0
|
|
519
|
+
[0.29.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.28.0..v0.29.0
|
|
520
|
+
[0.30.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.29.0..v0.30.0
|
|
521
|
+
[0.31.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.30.0..v0.31.0
|
|
522
|
+
[0.32.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0
|
|
523
|
+
[0.33.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0
|
package/README.md
CHANGED