pi-landstrip 0.15.9 → 0.16.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.
Files changed (2) hide show
  1. package/index.ts +1 -2
  2. package/package.json +2 -2
package/index.ts CHANGED
@@ -106,7 +106,7 @@ interface LandstripBashCallbacks {
106
106
  promptOnBlock?: boolean;
107
107
  }
108
108
 
109
- const LANDSTRIP_VERSION = [0, 15, 9] as const;
109
+ const LANDSTRIP_VERSION = [0, 16, 4] as const;
110
110
  const REQUIRED_LANDSTRIP_VERSION = LANDSTRIP_VERSION.join('.');
111
111
  const SUPPORTED_PLATFORMS = new Set<NodeJS.Platform>(['linux', 'darwin', 'win32']);
112
112
 
@@ -1197,7 +1197,6 @@ export function createLandstripIntegration(
1197
1197
  let timedOut = false;
1198
1198
  let cleaned = false;
1199
1199
 
1200
- // Create socketpair for bidirectional query-response on fd 3.
1201
1200
  const [trapSocket, childEnd] = await createSocketPair();
1202
1201
 
1203
1202
  const cleanup = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-landstrip",
3
- "version": "0.15.9",
3
+ "version": "0.16.0",
4
4
  "description": "Landlock-based sandboxing for pi with interactive permission prompts",
5
5
  "keywords": [
6
6
  "landstrip",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@earendil-works/pi-tui": "^0.78.0",
34
- "@landstrip/landstrip": "^0.15.15"
34
+ "@landstrip/landstrip": "^0.16.4"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@earendil-works/pi-coding-agent": "^0.74.2",