pi-oracle 0.6.4 → 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 +13 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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
|
+
|
|
12
|
+
## 0.6.5 - 2026-04-15
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- pinned `packageManager` metadata to `npm@11.12.1` and refreshed the release lockfile against the current stable pi toolchain so `verify:oracle` resolves reproducibly across machines
|
|
16
|
+
- kept the published oracle runtime surface unchanged while moving local development dependencies to the current stable pi/TypeScript/Node typing baseline
|
|
17
|
+
|
|
5
18
|
## 0.6.4 - 2026-04-14
|
|
6
19
|
|
|
7
20
|
### 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",
|
|
@@ -75,5 +74,6 @@
|
|
|
75
74
|
},
|
|
76
75
|
"os": [
|
|
77
76
|
"darwin"
|
|
78
|
-
]
|
|
77
|
+
],
|
|
78
|
+
"packageManager": "npm@10.9.8"
|
|
79
79
|
}
|