@parall/daemon 1.29.2 → 1.29.3

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.29.2",
3
- "built_at": "2026-05-20T16:16:05.742Z",
2
+ "version": "1.29.3",
3
+ "built_at": "2026-05-20T16:35:23.972Z",
4
4
  "files": {
5
5
  "parall-claude-agent.js": {
6
6
  "sha256": "b5bf9dc2700a3c45ab28f0cadb4c5d945722fb2b13184ef5af7cfd591cb633ab",
@@ -11,8 +11,8 @@
11
11
  "size": 264534
12
12
  },
13
13
  "parall-daemon.js": {
14
- "sha256": "300f4beea5bdbebdee449f864459dea775fd3ea8318a0a44e084a11a077f72a5",
15
- "size": 135281
14
+ "sha256": "68ad0984748b1a3e15b343969aa8bab8239677e42a94728556a75da23256d051",
15
+ "size": 135367
16
16
  },
17
17
  "parall-openclaw-agent.js": {
18
18
  "sha256": "d2128b5a15c37c9fe624ed6ba6f1dc15c32235d98795e6171716d9776014aedf",
@@ -2146,7 +2146,8 @@ var DEFAULT_SETUP_TIMEOUT_SEC = 600;
2146
2146
  async function prepareWorkspace(opts) {
2147
2147
  const prior = opts.attached.workspace_state;
2148
2148
  const plan = buildWorkspacePlan(opts.attached.daemon_config, opts.defaultWorkspaceDir, prior?.config_hash);
2149
- if (!opts.attached.daemon_config && !prior) {
2149
+ const hasConfig = opts.attached.daemon_config && Object.keys(opts.attached.daemon_config).length > 0;
2150
+ if (!hasConfig && !prior) {
2150
2151
  return plan.workspaceDir;
2151
2152
  }
2152
2153
  let forceSetup = false;
@@ -1 +1 @@
1
- {"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../src/workspace.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EAAE,aAAa,EAA4C,YAAY,EAAE,MAAM,aAAa,CAAC;AAiBzG,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,aAAa,CAAC;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,GAAG,EAAE,aAAa,CAAC;CACpB;AAED,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC,CA6ClF"}
1
+ {"version":3,"file":"workspace.d.ts","sourceRoot":"","sources":["../src/workspace.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EAAE,aAAa,EAA4C,YAAY,EAAE,MAAM,aAAa,CAAC;AAiBzG,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,aAAa,CAAC;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,GAAG,EAAE,aAAa,CAAC;CACpB;AAED,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC,CA8ClF"}
package/dist/workspace.js CHANGED
@@ -8,7 +8,8 @@ const DEFAULT_SETUP_TIMEOUT_SEC = 600;
8
8
  export async function prepareWorkspace(opts) {
9
9
  const prior = opts.attached.workspace_state;
10
10
  const plan = buildWorkspacePlan(opts.attached.daemon_config, opts.defaultWorkspaceDir, prior?.config_hash);
11
- if (!opts.attached.daemon_config && !prior) {
11
+ const hasConfig = opts.attached.daemon_config && Object.keys(opts.attached.daemon_config).length > 0;
12
+ if (!hasConfig && !prior) {
12
13
  return plan.workspaceDir;
13
14
  }
14
15
  let forceSetup = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parall/daemon",
3
- "version": "1.29.2",
3
+ "version": "1.29.3",
4
4
  "description": "Parall local agent runtime — daemon supervisor + bridge runtimes, bundled as standalone JS files",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -29,11 +29,11 @@
29
29
  "dist"
30
30
  ],
31
31
  "dependencies": {
32
- "@parall/sdk": "1.29.2",
33
- "@parall/codex-agent": "1.29.2",
34
- "@parall/claude-agent": "1.29.2",
35
- "@parall/agent-core": "1.29.2",
36
- "@parall/openclaw-agent": "1.29.2"
32
+ "@parall/agent-core": "1.29.3",
33
+ "@parall/sdk": "1.29.3",
34
+ "@parall/claude-agent": "1.29.3",
35
+ "@parall/codex-agent": "1.29.3",
36
+ "@parall/openclaw-agent": "1.29.3"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/node": "^22.0.0",