pi-agent-browser-native 0.1.4 → 0.1.5

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/CHANGELOG.md +6 -0
  2. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.5 - 2026-04-12
4
+
5
+ ### Changed
6
+ - pinned the transitive `basic-ftp` dependency to `5.2.2` via `overrides` so local development and GitHub install flows no longer pull the vulnerable `5.2.1` version through `@mariozechner/pi-coding-agent`
7
+ - kept the 0.1.4 startup fix and metadata updates intact while clearing the audit failure that surfaced during release verification
8
+
3
9
  ## 0.1.4 - 2026-04-12
4
10
 
5
11
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-agent-browser-native",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "pi extension that exposes agent-browser as a native tool for browser automation",
5
5
  "type": "module",
6
6
  "author": "Mitch Fultz (https://github.com/fitchmultz)",
@@ -52,6 +52,9 @@
52
52
  "tsx": "^4.21.0",
53
53
  "typescript": "^6.0.2"
54
54
  },
55
+ "overrides": {
56
+ "basic-ftp": "5.2.2"
57
+ },
55
58
  "scripts": {
56
59
  "typecheck": "tsc --noEmit",
57
60
  "test": "tsx --test test/**/*.test.ts",