pi-agent-browser-native 0.2.5 → 0.2.6

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 +3 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.6 - 2026-04-15
4
+
5
+ ### Changed
6
+ - pinned `packageManager` metadata to `npm@11.12.1` so lockfile refreshes resolve consistently during release verification
7
+ - refreshed the compatible transitive development dependency resolution pulled by the current pi toolchain without changing the published `agent_browser` runtime contract
8
+
3
9
  ## 0.2.5 - 2026-04-14
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.2.5",
3
+ "version": "0.2.6",
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)",
@@ -62,5 +62,6 @@
62
62
  "verify": "npm run typecheck && npm run test",
63
63
  "verify:package": "node ./scripts/verify-package.mjs",
64
64
  "verify:release": "npm run verify && npm run verify:package"
65
- }
65
+ },
66
+ "packageManager": "npm@11.12.1"
66
67
  }