pi-oracle 0.7.0 → 0.7.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.7.2 - 2026-05-23
6
+
7
+ ### Changed
8
+ - updated the local pi development baseline to `@earendil-works/pi-coding-agent` / `@earendil-works/pi-ai` `0.75.5`, refreshed Node/tsx tooling, and regenerated the npm lockfile
9
+ - updated `@steipete/sweet-cookie` to `0.3.0` for the current browser-cookie extraction baseline
10
+ - refreshed the `protobufjs` override to `7.6.1` for the current patched dependency graph
11
+
12
+ ### Compatibility
13
+ - reviewed the pi `0.75.5` changelog and package guidance; the oracle extension remains compatible with current extension lifecycle and package install/update behavior
14
+
15
+ ## 0.7.1 - 2026-05-18
16
+
17
+ ### Changed
18
+ - updated the local pi development baseline to `@earendil-works/pi-coding-agent` `0.75.3` and refreshed the npm lockfile
19
+ - raised the local Node.js tooling floor and sanity checks to `>=22.19.0`
20
+ - refreshed the `protobufjs` override to `7.5.6` for the current patched dependency graph
21
+ - removed tracked CueLoop runtime state from the repository and ignored local `.cueloop/` artifacts
22
+
23
+ ### Compatibility
24
+ - reviewed current pi `0.75.3` package and extension guidance and confirmed the oracle extension remains compatible with current extension lifecycle and package install/update guidance
25
+
26
+
5
27
  ## 0.7.0 - 2026-05-17
6
28
 
7
29
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-oracle",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
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",
@@ -53,7 +53,7 @@
53
53
  "prepublishOnly": "npm run verify:oracle"
54
54
  },
55
55
  "dependencies": {
56
- "@steipete/sweet-cookie": "^0.2.0"
56
+ "@steipete/sweet-cookie": "^0.3.0"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "@earendil-works/pi-coding-agent": "*",
@@ -61,21 +61,22 @@
61
61
  },
62
62
  "overrides": {
63
63
  "basic-ftp": "6.0.1",
64
- "protobufjs": "7.5.5"
64
+ "protobufjs": "7.6.1"
65
65
  },
66
66
  "devDependencies": {
67
- "@earendil-works/pi-coding-agent": "^0.74.0",
68
- "@types/node": "^25.6.1",
67
+ "@earendil-works/pi-ai": "^0.75.5",
68
+ "@earendil-works/pi-coding-agent": "^0.75.5",
69
+ "@types/node": "^25.9.1",
69
70
  "esbuild": "^0.28.0",
70
- "tsx": "^4.21.0",
71
+ "tsx": "^4.22.3",
71
72
  "typebox": "^1.1.38",
72
73
  "typescript": "^6.0.3"
73
74
  },
74
75
  "engines": {
75
- "node": ">=22"
76
+ "node": ">=22.19.0"
76
77
  },
77
78
  "os": [
78
79
  "darwin"
79
80
  ],
80
- "packageManager": "npm@11.14.0"
81
+ "packageManager": "npm@11.15.0"
81
82
  }