apcore-toolkit 0.8.0 → 0.8.1
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 +15 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.8.1] - 2026-06-12
|
|
6
|
+
|
|
7
|
+
Patch release. Bumps the required apcore runtime floor to 0.24.0. Toolkit API surface and code unchanged; all 603 tests pass without modification against 0.24.0.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Required runtime bumped to `apcore-js>=0.24.0` — bumped from `>=0.22.0`. Toolkit's stable surface is unaffected by the 0.22 → 0.24 delta.
|
|
12
|
+
|
|
13
|
+
Key 0.23.0–0.24.0 changes visible to toolkit users (indirect runtime effects):
|
|
14
|
+
- `Registry.unregister()` now correctly clears hot-reload/drain state (A-D-001) — re-registering after a direct `unregister()` no longer throws `ModuleNotFoundError`. Toolkit's `RegistryWriter.write()` calls `register` only, but callers who manually `unregister()` between `write()` calls benefit.
|
|
15
|
+
- Sensitive-key (`_secret_*`) redaction now recurses into array elements (A-D-003). Modules with sensitive keys inside nested array values are now properly redacted in apcore logs.
|
|
16
|
+
- `CALL_DEPTH_EXCEEDED` / `CIRCULAR_CALL` / `CALL_FREQUENCY_EXCEEDED` error `details` keys are now `snake_case` (A-D-019) — affects callers parsing `error.details` directly.
|
|
17
|
+
- `CircuitBreakerMiddleware` constructor is breaking in 0.23.0 (old `failure_threshold`/`success_threshold` removed). Toolkit does not use this middleware; no toolkit changes required.
|
|
18
|
+
- AI error-recovery metadata (`userFixable`, `aiGuidance`) is now auto-populated on `ModuleError` at the framework level (0.23.0).
|
|
19
|
+
|
|
5
20
|
## [0.8.0] - 2026-05-28
|
|
6
21
|
|
|
7
22
|
Aligned release across Python, TypeScript, and Rust. Bumps the required apcore runtime to 0.22.0.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apcore-toolkit",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Shared scanner, schema extraction, and output toolkit for apcore framework adapters",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"ajv": "^8.17.0",
|
|
58
|
-
"apcore-js": ">=0.
|
|
58
|
+
"apcore-js": ">=0.24.0",
|
|
59
59
|
"js-yaml": "^4.1.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|