@arnilo/prism-acp-agent 0.3.0 → 0.3.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 +13 -0
- package/dist/src/config.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.2] - 2026-08-29
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- `sessionStore.path: ":memory:"` is now passed through verbatim to the sqlite
|
|
7
|
+
store (in-memory database) instead of being resolved to a literal
|
|
8
|
+
`<baseDir>/:memory:` file. Removes the stray `:memory:` artifact from the
|
|
9
|
+
package root.
|
|
10
|
+
|
|
11
|
+
## [0.3.1] - 2026-08-29
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Plan 035-039 changed-package cut: additive runtime performance, tooling, and documentation deltas; peer window refresh.
|
|
15
|
+
|
|
3
16
|
## [0.3.0] - 2026-08-20
|
|
4
17
|
|
|
5
18
|
### Added
|
package/dist/src/config.js
CHANGED
|
@@ -66,7 +66,8 @@ export function validateConfig(raw, baseDir, source) {
|
|
|
66
66
|
rejectUnknown(raw.sessionStore, KNOWN_SESSION_STORE_KEYS, `${source}.sessionStore`);
|
|
67
67
|
if (raw.sessionStore.type === "sqlite") {
|
|
68
68
|
const path = requireString(raw.sessionStore.path, `${source}.sessionStore`, "path");
|
|
69
|
-
|
|
69
|
+
// ":memory:" is the sqlite in-memory convention — pass it through verbatim.
|
|
70
|
+
sessionStore = { type: "sqlite", path: path === ":memory:" ? path : resolve(baseDir, path) };
|
|
70
71
|
}
|
|
71
72
|
else if (raw.sessionStore.type !== "memory") {
|
|
72
73
|
fail(source, `sessionStore.type must be "sqlite" or "memory", got ${JSON.stringify(raw.sessionStore.type)}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arnilo/prism-acp-agent",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Spawnable ACP agent: serves createPrismAcpAgent over stdio from a config file.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/src/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@arnilo/prism-session-store-sqlite": "^0.3.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@arnilo/prism": "^0.3.
|
|
36
|
+
"@arnilo/prism": "^0.3.2",
|
|
37
37
|
"@arnilo/prism-ag-ui": "^0.3.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|