apcore-toolkit 0.10.0 → 0.10.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.10.2] - 2026-09-01
6
+
7
+ Patch release. Bumps the required `apcore-js` floor to `0.28.0`. The 0.28.0 release is scoped entirely to the ACL/Executor governance layer (argument-scoped approval, `ACL.defaultEffect`/`rules` accessors, `ACL.validateRules()`, `ExecutionPolicy.resolve()` call-site parameters, `Executor.governanceState()`) — none of it touches `Registry`, `FunctionModule`, `jsonSchemaToTypeBox`, or module annotations, which is all this toolkit uses (confirmed via grep). No code or API changes; all 617 tests pass unmodified against apcore-js 0.28.0.
8
+
9
+ ## [0.10.1] - 2026-07-14
10
+
11
+ Patch release. Bumps the required `apcore-js` floor to `0.26.0` to align the ecosystem on the 0.26.0 governance layer (Execution Policy, governance events, no-handler fail-loud — additive, no breaking changes). No code or API changes.
12
+
5
13
  ## [0.10.0] - 2026-07-07
6
14
 
7
15
  Cross-language parity with the Python toolkit: ship the reusable annotation-preservation conformance verifier. (The dropped-annotations bug that motivated this existed only in two Python adapters; `nestjs-apcore` and this toolkit's writers already preserve annotations — verified. This adds the guard so a future TS adapter can't silently regress.) All 617 tests pass.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apcore-toolkit",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
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.25.0",
58
+ "apcore-js": ">=0.28.0",
59
59
  "js-yaml": "^4.1.0"
60
60
  },
61
61
  "peerDependencies": {