pi-landstrip 0.5.7 → 0.11.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 (3) hide show
  1. package/README.md +3 -0
  2. package/index.ts +2 -2
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -35,3 +35,6 @@ Use `/sandbox` inside Pi to show the active config.
35
35
 
36
36
  `pi-landstrip` is licensed under `MIT`. See [LICENSE](LICENSE) for more
37
37
  information.
38
+
39
+ The bundled `@jarkkojs/landstrip` package is licensed under
40
+ `Apache-2.0 AND LGPL-2.1-or-later`.
package/index.ts CHANGED
@@ -80,7 +80,7 @@ interface LandstripErrorResponse {
80
80
  source: string;
81
81
  }
82
82
 
83
- const LANDSTRIP_VERSION = [0, 11, 1] as const;
83
+ const LANDSTRIP_VERSION = [0, 11, 3] as const;
84
84
  const SUPPORTED_PLATFORMS = new Set<NodeJS.Platform>(['linux', 'darwin', 'win32']);
85
85
 
86
86
  const DEFAULT_CONFIG: SandboxConfig = {
@@ -1251,7 +1251,7 @@ export function createLandstripIntegration(
1251
1251
  if (!hasMinimumVersion(version, LANDSTRIP_VERSION)) {
1252
1252
  sandboxEnabled = false;
1253
1253
  sandboxReady = false;
1254
- ctx.ui.notify(`landstrip 0.11.1 or newer is required; found: ${version}`, 'error');
1254
+ ctx.ui.notify(`landstrip 0.11.3 or newer is required; found: ${version}`, 'error');
1255
1255
  return false;
1256
1256
  }
1257
1257
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-landstrip",
3
- "version": "0.5.7",
3
+ "version": "0.11.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
- "@jarkkojs/landstrip": "^0.11.1"
34
+ "@jarkkojs/landstrip": "^0.11.4"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@earendil-works/pi-coding-agent": "^0.78.0",