@bivy/bivy 0.16.9-staging.1 → 0.16.9-staging.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.
Files changed (2) hide show
  1. package/dist/server.js +6 -1
  2. package/package.json +2 -1
package/dist/server.js CHANGED
@@ -723,7 +723,12 @@ function runBivyUpdate() {
723
723
  const child = spawn(process.execPath, [script, "update"], {
724
724
  detached: true,
725
725
  stdio: "ignore",
726
- env: process.env,
726
+ // The daemon is commonly itself managed by systemd/launchd. Mark this
727
+ // invocation as terminal-style so the CLI moves the real update into a
728
+ // process that survives the service restart (systemd-run on Linux).
729
+ // Otherwise stopping bivy.service kills the updater before it can install
730
+ // anything, leaving the client stuck on “Updating…”.
731
+ env: { ...process.env, BIVY_TERMINAL: "1" },
727
732
  });
728
733
  child.unref();
729
734
  return { ok: true };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bivy/bivy",
3
- "version": "0.16.9-staging.1",
3
+ "version": "0.16.9-staging.3",
4
4
  "type": "module",
5
5
  "license": "AGPL-3.0-only",
6
6
  "description": "Run coding agents on machines you own. Open-source, self-hostable agent workspace.",
@@ -63,6 +63,7 @@
63
63
  "undici": "8.10.0"
64
64
  },
65
65
  "brace-expansion": "5.0.9",
66
+ "fast-uri": "4.1.4",
66
67
  "nanoid": "3.3.18",
67
68
  "undici": "8.10.0"
68
69
  },