opencode-landstrip 0.2.1 → 0.2.2

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 +2 -2
  2. package/package.json +2 -2
package/index.ts CHANGED
@@ -75,7 +75,7 @@ interface BashSandboxState {
75
75
 
76
76
  type ToastVariant = 'info' | 'success' | 'warning' | 'error';
77
77
 
78
- const LANDSTRIP_VERSION = [0, 9, 5] as const;
78
+ const LANDSTRIP_VERSION = [0, 9, 7] as const;
79
79
  const SUPPORTED_PLATFORMS = new Set<NodeJS.Platform>(['linux', 'darwin', 'win32']);
80
80
 
81
81
  const DEFAULT_CONFIG: SandboxConfig = {
@@ -777,7 +777,7 @@ export default (async ({ client, directory }: PluginInput, options?: PluginOptio
777
777
  if (!hasMinimumVersion(version, LANDSTRIP_VERSION)) {
778
778
  landstripCheck = {
779
779
  ok: false,
780
- reason: `landstrip 0.9.5 or newer is required; found: ${version}`,
780
+ reason: `landstrip 0.9.7 or newer is required; found: ${version}`,
781
781
  };
782
782
  return landstripCheck;
783
783
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-landstrip",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Landlock-based sandboxing for opencode with landstrip",
5
5
  "keywords": [
6
6
  "landlock",
@@ -42,7 +42,7 @@
42
42
  "ci:test": "npm test"
43
43
  },
44
44
  "dependencies": {
45
- "@jarkkojs/landstrip": "^0.9.5"
45
+ "@jarkkojs/landstrip": "^0.9.7"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@opencode-ai/plugin": "^1.16.2",