pi-agent-browser-native 0.2.5 → 0.2.7

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 +15 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## Unreleased
4
+
5
+ ## 0.2.7 - 2026-04-16
6
+
7
+ ### Changed
8
+ - updated the local pi development baseline to `@mariozechner/pi-coding-agent` `0.67.4`
9
+ - aligned `packageManager` metadata to `npm@10.9.8`, the latest stable npm line compatible with the declared Node runtime floor
10
+ - removed the published `@mariozechner/pi-coding-agent` peer dependency so installs rely on pi's bundled runtime instead of npm peer-resolution churn
11
+
12
+ ## 0.2.6 - 2026-04-15
13
+
14
+ ### Changed
15
+ - pinned `packageManager` metadata to `npm@11.12.1` so lockfile refreshes resolve consistently during release verification
16
+ - refreshed the compatible transitive development dependency resolution pulled by the current pi toolchain without changing the published `agent_browser` runtime contract
17
+
3
18
  ## 0.2.5 - 2026-04-14
4
19
 
5
20
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-agent-browser-native",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
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)",
@@ -42,11 +42,10 @@
42
42
  ]
43
43
  },
44
44
  "peerDependencies": {
45
- "@mariozechner/pi-coding-agent": "*",
46
45
  "@sinclair/typebox": "*"
47
46
  },
48
47
  "devDependencies": {
49
- "@mariozechner/pi-coding-agent": "^0.67.2",
48
+ "@mariozechner/pi-coding-agent": "^0.67.4",
50
49
  "@sinclair/typebox": "^0.34.49",
51
50
  "@types/node": "^25.6.0",
52
51
  "tsx": "^4.21.0",
@@ -62,5 +61,6 @@
62
61
  "verify": "npm run typecheck && npm run test",
63
62
  "verify:package": "node ./scripts/verify-package.mjs",
64
63
  "verify:release": "npm run verify && npm run verify:package"
65
- }
64
+ },
65
+ "packageManager": "npm@10.9.8"
66
66
  }