darwin-agents 0.5.1-alpha.1 → 0.5.1-alpha.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.
- package/CHANGELOG.md +15 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
## [0.5.1-alpha.2] — 2026-06-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **CI green again on Node 20/22** (red since v0.5.0-alpha.2). The `better-sqlite3`
|
|
10
|
+
peer dependency was pinned to `^11.0.0`, which ships no prebuilt binary for newer
|
|
11
|
+
Node ABIs — `new Database()` in the test `before` hook crashed with a
|
|
12
|
+
`NODE_MODULE_VERSION` mismatch (127 vs 137), which `node:test` reported as the
|
|
13
|
+
whole trajectory suite being "cancelled by parent". Widened the peer range to
|
|
14
|
+
`^11.0.0 || ^12.0.0` (consumers may use either major) and added
|
|
15
|
+
`better-sqlite3@^12.10.0` as a devDependency so the test suite runs against the
|
|
16
|
+
full Node 20–26 ABI matrix. Verified on Node 22 + 24 (336/336 tests green), tsc clean.
|
|
17
|
+
|
|
3
18
|
## [0.5.1-alpha.1] — 2026-05-29
|
|
4
19
|
|
|
5
20
|
**GEPA Polish-Welle.** Closes the three deliberate paper deviations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "darwin-agents",
|
|
3
|
-
"version": "0.5.1-alpha.
|
|
3
|
+
"version": "0.5.1-alpha.2",
|
|
4
4
|
"description": "AI agents that improve themselves. Self-evolving prompts via A/B testing, multi-model critics, safety gates, and pattern detection.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"better-sqlite3": "^11.0.0",
|
|
61
|
+
"better-sqlite3": "^11.0.0 || ^12.0.0",
|
|
62
62
|
"pg": "^8.0.0"
|
|
63
63
|
},
|
|
64
64
|
"peerDependenciesMeta": {
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@types/better-sqlite3": "^7.6.13",
|
|
74
|
+
"better-sqlite3": "^12.10.0",
|
|
74
75
|
"@types/node": "^25.6.0",
|
|
75
76
|
"@types/pg": "^8.11.0",
|
|
76
77
|
"tsx": "^4.19.0",
|