pi-oracle 0.7.2 → 0.7.3
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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.7.3 - 2026-05-27
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- updated the local pi development baseline to `@earendil-works/pi-coding-agent` / `@earendil-works/pi-ai` `0.76.0` and regenerated the npm lockfile
|
|
9
|
+
- aligned `engines.node` to `>=22.19.0 <25` with the pi `0.76.0` Node.js floor and the supported Node 22–24 range
|
|
10
|
+
|
|
11
|
+
### Compatibility
|
|
12
|
+
- reviewed the pi `0.76.0` changelog and package guidance; the oracle extension remains compatible with current extension lifecycle and package install/update behavior
|
|
13
|
+
|
|
5
14
|
## 0.7.2 - 2026-05-23
|
|
6
15
|
|
|
7
16
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-oracle",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"description": "ChatGPT and Grok web-oracle extension for pi with isolated browser auth, async jobs, and project-context archives.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"protobufjs": "7.6.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@earendil-works/pi-ai": "^0.
|
|
68
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
67
|
+
"@earendil-works/pi-ai": "^0.76.0",
|
|
68
|
+
"@earendil-works/pi-coding-agent": "^0.76.0",
|
|
69
69
|
"@types/node": "^25.9.1",
|
|
70
70
|
"esbuild": "^0.28.0",
|
|
71
71
|
"tsx": "^4.22.3",
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"typescript": "^6.0.3"
|
|
74
74
|
},
|
|
75
75
|
"engines": {
|
|
76
|
-
"node": ">=22.19.0"
|
|
76
|
+
"node": ">=22.19.0 <25"
|
|
77
77
|
},
|
|
78
78
|
"os": [
|
|
79
79
|
"darwin"
|
|
80
80
|
],
|
|
81
|
-
"packageManager": "npm@11.
|
|
81
|
+
"packageManager": "npm@11.0.0"
|
|
82
82
|
}
|