@jackwener/opencli 1.5.7 → 1.5.8

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.8](https://github.com/jackwener/opencli/compare/v1.5.7...v1.5.8) (2026-04-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **extension:** avoid mutating healthy tabs before debugger attach and add regression coverage ([#662](https://github.com/jackwener/opencli/issues/662))
9
+
10
+
3
11
  ## [1.5.7](https://github.com/jackwener/opencli/compare/v1.5.6...v1.5.7) (2026-04-01)
4
12
 
5
13
 
@@ -7,6 +7,7 @@ describe('extension manifest regression', () => {
7
7
  const raw = await fs.readFile(manifestPath, 'utf8');
8
8
  const manifest = JSON.parse(raw);
9
9
  expect(manifest.permissions).toContain('cookies');
10
+ expect(manifest.permissions).toContain('scripting');
10
11
  expect(manifest.host_permissions).toContain('<all_urls>');
11
12
  });
12
13
  });