pi-usereq 0.43.0 → 0.45.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/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.45.0](https://github.com/Ogekuri/PI-useReq/compare/v0.44.0..v0.45.0) - 2026-07-13
4
+ ### 🐛 Bug Fixes
5
+ - Fix packages.
6
+ - Fix packages.
7
+
8
+ ### 🚜 Changes
9
+ - add view/reset menu actions, removal confirmation, embedded keyword resolution, approve-scripts [useReq] *(static-check)*
10
+ - REQ-008/248/345-349: add View static code checker (read-only, before
11
+ - Remove), Reset static code checker (after Remove, restores embedded
12
+ - defaults), and require config preview plus confirmation before Remove.
13
+ - DES-019/REQ-350/351: resolveCheckerExecutable substitutes the
14
+ - %%INSTALLATION_PATH%% keyword and fixes hoisted node_modules/.bin probing.
15
+ - DES-020/REQ-352: postinstall best-effort runs npm approve-scripts for
16
+ - bundled checker dependencies before probing.
17
+ - Update REQUIREMENTS/WORKFLOW/REFERENCES and the static-check menu test.
18
+
19
+ ## [0.44.0](https://github.com/Ogekuri/PI-useReq/compare/v0.43.0..v0.44.0) - 2026-07-13
20
+ ### 🚜 Changes
21
+ - BREAKING CHANGE: park failed worktree runs in error without resuming base-path [useReq] *(prompt-closure)*
22
+ - REQ-209/REQ-230/TST-058: failed/interrupted/aborted/incomplete worktree-backed runs no longer resume the original base-path session.
23
+ - src/index.ts agent_end closure: the closure-failure branch keeps the worktree execution session visible, notifies the error, parks workflow in error, and retains the active request for req-reset recovery.
24
+ - tests/extension-registration.test.ts: realign the prompt-failure test to assert session retention + workflow error.
25
+
3
26
  ## [0.43.0](https://github.com/Ogekuri/PI-useReq/compare/v0.42.0..v0.43.0) - 2026-07-10
4
27
  ### 🚜 Changes
5
28
  - make tsx a runtime dependency so postinstall resolves [useReq] *(packaging)*
@@ -601,6 +624,8 @@
601
624
  - \[0.41.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.41.0
602
625
  - \[0.42.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.42.0
603
626
  - \[0.43.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.43.0
627
+ - \[0.44.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.44.0
628
+ - \[0.45.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.45.0
604
629
 
605
630
  [0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
606
631
  [0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
@@ -643,3 +668,5 @@
643
668
  [0.41.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.40.0..v0.41.0
644
669
  [0.42.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.41.0..v0.42.0
645
670
  [0.43.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.42.0..v0.43.0
671
+ [0.44.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.43.0..v0.44.0
672
+ [0.45.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.44.0..v0.45.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # PI-useReq/pi-usereq (0.43.0)
1
+ # PI-useReq/pi-usereq (0.45.0)
2
2
 
3
3
  <p align="center">
4
4
  <img src="https://img.shields.io/badge/python-3.11%2B-3776AB?style=flat-square&logo=python&logoColor=white" alt="Python 3.11+">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-usereq",
3
- "version": "0.43.0",
3
+ "version": "0.45.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Ogekuri/PI-useReq.git"
@@ -34,7 +34,7 @@
34
34
  "@sinclair/typebox": "^0.34.49"
35
35
  },
36
36
  "dependencies": {
37
- "eslint": "^10.2.0",
37
+ "eslint": "^10.7.0",
38
38
  "fast-glob": "^3.3.3",
39
39
  "js-tiktoken": "^1.0.21",
40
40
  "pyright": "^1.1.411",
@@ -45,5 +45,10 @@
45
45
  "@eslint/js": "^10.0.1",
46
46
  "typescript": "^5.9.3",
47
47
  "typescript-eslint": "^8.58.2"
48
+ },
49
+ "allowScripts": {
50
+ "esbuild@0.27.7": true,
51
+ "koffi@2.15.6": true,
52
+ "protobufjs@7.5.4": true
48
53
  }
49
54
  }