pi-agent-browser-native 0.2.6 → 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.
- package/CHANGELOG.md +9 -0
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
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
|
+
|
|
3
12
|
## 0.2.6 - 2026-04-15
|
|
4
13
|
|
|
5
14
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-agent-browser-native",
|
|
3
|
-
"version": "0.2.
|
|
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.
|
|
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",
|
|
@@ -63,5 +62,5 @@
|
|
|
63
62
|
"verify:package": "node ./scripts/verify-package.mjs",
|
|
64
63
|
"verify:release": "npm run verify && npm run verify:package"
|
|
65
64
|
},
|
|
66
|
-
"packageManager": "npm@
|
|
65
|
+
"packageManager": "npm@10.9.8"
|
|
67
66
|
}
|