pi-oracle 0.6.5 → 0.6.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.
- package/CHANGELOG.md +7 -0
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.6.6 - 2026-04-16
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- updated the local pi development baseline to `@mariozechner/pi-ai` / `@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
|
+
|
|
5
12
|
## 0.6.5 - 2026-04-15
|
|
6
13
|
|
|
7
14
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-oracle",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
4
4
|
"description": "ChatGPT web-oracle extension for pi with isolated browser auth, async jobs, and project-context archives.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,15 +55,14 @@
|
|
|
55
55
|
"@steipete/sweet-cookie": "^0.2.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@mariozechner/pi-coding-agent": "*",
|
|
59
58
|
"@sinclair/typebox": "*"
|
|
60
59
|
},
|
|
61
60
|
"overrides": {
|
|
62
61
|
"basic-ftp": "^5.2.2"
|
|
63
62
|
},
|
|
64
63
|
"devDependencies": {
|
|
65
|
-
"@mariozechner/pi-ai": "^0.67.
|
|
66
|
-
"@mariozechner/pi-coding-agent": "^0.67.
|
|
64
|
+
"@mariozechner/pi-ai": "^0.67.4",
|
|
65
|
+
"@mariozechner/pi-coding-agent": "^0.67.4",
|
|
67
66
|
"@sinclair/typebox": "^0.34.49",
|
|
68
67
|
"@types/node": "^25.6.0",
|
|
69
68
|
"esbuild": "^0.28.0",
|
|
@@ -76,5 +75,5 @@
|
|
|
76
75
|
"os": [
|
|
77
76
|
"darwin"
|
|
78
77
|
],
|
|
79
|
-
"packageManager": "npm@
|
|
78
|
+
"packageManager": "npm@10.9.8"
|
|
80
79
|
}
|