apcore-toolkit 0.6.0 → 0.6.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 +13 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.6.1] - 2026-05-09
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
|
|
8
|
+
- **`apcore-js` minimum version bumped from 0.21.0 to 0.21.1** —
|
|
9
|
+
`package.json` `dependencies` now requires `apcore-js >=0.21.1`.
|
|
10
|
+
Picks up the apcore-js 0.21.1 fix for the Bun init-time deadlock
|
|
11
|
+
caused by top-level `await import('node:*')` chains. Toolkit's own
|
|
12
|
+
imports from apcore-js are unchanged (still pure types + browser-
|
|
13
|
+
safe helpers); 25 vitest test files / 541 tests pass against
|
|
14
|
+
apcore-js 0.21.1.
|
|
15
|
+
|
|
16
|
+
|
|
4
17
|
## [0.6.0] - 2026-05-07
|
|
5
18
|
|
|
6
19
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apcore-toolkit",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.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.21.
|
|
58
|
+
"apcore-js": ">=0.21.1",
|
|
59
59
|
"js-yaml": "^4.1.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|