pi-agent-browser-native 0.2.9 → 0.2.11
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 +29 -0
- package/extensions/agent-browser/index.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.2.12 - 2026-04-22
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- updated the local pi development baseline to `@mariozechner/pi-coding-agent` `0.69.0`
|
|
9
|
+
- migrated published TypeBox integration metadata and source imports from `@sinclair/typebox` to `typebox` for pi `0.69.0` compatibility
|
|
10
|
+
- regenerated the npm lockfile against the current stable dependency graph
|
|
11
|
+
|
|
12
|
+
### Compatibility
|
|
13
|
+
- reviewed the pi `0.69.0` changelog and confirmed the extension already follows the current session-replacement guidance while now using the required TypeBox 1.x package name
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## 0.2.11 - 2026-04-21
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- updated the local pi development baseline to `@mariozechner/pi-coding-agent` `0.68.0`
|
|
20
|
+
- regenerated the npm lockfile against the current stable dependency graph
|
|
21
|
+
|
|
22
|
+
### Compatibility
|
|
23
|
+
- reviewed the pi `0.68.0` changelog and confirmed the extension already uses the current named-tool registration model instead of removed cwd-bound tool exports
|
|
24
|
+
|
|
25
|
+
## 0.2.10 - 2026-04-18
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- bumped the local pi development baseline to `@mariozechner/pi-coding-agent` `0.67.68` and `typescript` `6.0.3`
|
|
29
|
+
- refreshed the release lockfile against the current stable pi patch line
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
- pinned the transitive `basic-ftp` dependency to `5.3.0` to clear the current audit finding during local verification and publish checks
|
|
33
|
+
|
|
5
34
|
## 0.2.9 - 2026-04-17
|
|
6
35
|
|
|
7
36
|
### Fixed
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
import { rm } from "node:fs/promises";
|
|
10
10
|
|
|
11
11
|
import { isToolCallEventType, type ExtensionAPI } from "@mariozechner/pi-coding-agent";
|
|
12
|
-
import { Type } from "
|
|
12
|
+
import { Type } from "typebox";
|
|
13
13
|
|
|
14
14
|
import { runAgentBrowserProcess } from "./lib/process.js";
|
|
15
15
|
import {
|
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.11",
|
|
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)",
|
|
@@ -43,17 +43,17 @@
|
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"
|
|
46
|
+
"typebox": "*"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
50
|
-
"@sinclair/typebox": "^0.34.49",
|
|
49
|
+
"@mariozechner/pi-coding-agent": "^0.69.0",
|
|
51
50
|
"@types/node": "^25.6.0",
|
|
52
51
|
"tsx": "^4.21.0",
|
|
53
|
-
"
|
|
52
|
+
"typebox": "^1.1.31",
|
|
53
|
+
"typescript": "^6.0.3"
|
|
54
54
|
},
|
|
55
55
|
"overrides": {
|
|
56
|
-
"basic-ftp": "5.
|
|
56
|
+
"basic-ftp": "5.3.0"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"typecheck": "tsc --noEmit",
|