@sema-agent/server 1.296.0 → 1.298.0
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/dist/main.js +1 -1
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -1737,7 +1737,7 @@ async function main() {
|
|
|
1737
1737
|
await workflowCompletionInbox.purge(sessionId, owner ?? null).catch((err) => logger.warn("workflow_completion_inbox_purge_failed", { sessionId, err: String(err) }));
|
|
1738
1738
|
await purgeScratchpadDir(config.localDataRoot ?? localRoot, sessionId);
|
|
1739
1739
|
try {
|
|
1740
|
-
const reaped = defaultTaskRegistry.reapSessionBackground(sessionId);
|
|
1740
|
+
const reaped = defaultTaskRegistry.reapSessionBackground(sessionId, owner ?? "default");
|
|
1741
1741
|
if (reaped > 0)
|
|
1742
1742
|
logger.info("session_background_reaped", { sessionId, reaped });
|
|
1743
1743
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sema-agent/server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.298.0",
|
|
4
4
|
"description": "Sema Server — the server/API implementation layer for Sema, wiring core, registry, model providers, and cloud agent execution. Built on @sema-agent/core.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"build:binary:run-local:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 src/run-local.ts --outfile dist/run-local-darwin-arm64"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@sema-agent/core": "^1.
|
|
50
|
+
"@sema-agent/core": "^1.441.0",
|
|
51
51
|
"@sema-agent/registry-core": "^0.10.21",
|
|
52
52
|
"e2b": "^2.28.0",
|
|
53
53
|
"libsodium-wrappers": "^0.8.4",
|