pi-oracle 0.6.5 → 0.6.7

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 +17 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.6.7 - 2026-04-18
6
+
7
+ ### Changed
8
+ - bumped the local pi development baseline to `@mariozechner/pi-ai` / `@mariozechner/pi-coding-agent` `0.67.68` and `typescript` `6.0.3`
9
+ - refreshed the release lockfile against the current stable pi patch line
10
+
11
+ ### Fixed
12
+ - pinned the transitive `basic-ftp` dependency to `5.3.0` and `protobufjs` to `7.5.5` to clear the current audit findings without introducing peer conflicts
13
+ - updated the release sanity guard to enforce the patched override versions during future publishes
14
+
15
+ ## 0.6.6 - 2026-04-16
16
+
17
+ ### Changed
18
+ - updated the local pi development baseline to `@mariozechner/pi-ai` / `@mariozechner/pi-coding-agent` `0.67.4`
19
+ - aligned `packageManager` metadata to `npm@10.9.8`, the latest stable npm line compatible with the declared Node runtime floor
20
+ - removed the published `@mariozechner/pi-coding-agent` peer dependency so installs rely on pi's bundled runtime instead of npm peer-resolution churn
21
+
5
22
  ## 0.6.5 - 2026-04-15
6
23
 
7
24
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-oracle",
3
- "version": "0.6.5",
3
+ "version": "0.6.7",
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,20 +55,20 @@
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
- "basic-ftp": "^5.2.2"
61
+ "basic-ftp": "5.3.0",
62
+ "protobufjs": "7.5.5"
63
63
  },
64
64
  "devDependencies": {
65
- "@mariozechner/pi-ai": "^0.67.2",
66
- "@mariozechner/pi-coding-agent": "^0.67.2",
65
+ "@mariozechner/pi-ai": "^0.67.68",
66
+ "@mariozechner/pi-coding-agent": "^0.67.68",
67
67
  "@sinclair/typebox": "^0.34.49",
68
68
  "@types/node": "^25.6.0",
69
69
  "esbuild": "^0.28.0",
70
70
  "tsx": "^4.21.0",
71
- "typescript": "^6.0.2"
71
+ "typescript": "^6.0.3"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=22"
@@ -76,5 +76,5 @@
76
76
  "os": [
77
77
  "darwin"
78
78
  ],
79
- "packageManager": "npm@11.12.1"
79
+ "packageManager": "npm@10.9.8"
80
80
  }