Release v0.79.5

This commit is contained in:
Armin Ronacher
2026-06-16 19:54:23 +02:00
Unverified
parent b6b5bed9ae
commit 6561cb293b
20 changed files with 85 additions and 50 deletions
+13 -13
View File
@@ -6176,10 +6176,10 @@
},
"packages/agent": {
"name": "@earendil-works/pi-agent-core",
"version": "0.79.4",
"version": "0.79.5",
"license": "MIT",
"dependencies": {
"@earendil-works/pi-ai": "^0.79.4",
"@earendil-works/pi-ai": "^0.79.5",
"ignore": "7.0.5",
"typebox": "1.1.38",
"yaml": "2.9.0"
@@ -6213,7 +6213,7 @@
},
"packages/ai": {
"name": "@earendil-works/pi-ai",
"version": "0.79.4",
"version": "0.79.5",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "0.91.1",
@@ -6258,12 +6258,12 @@
},
"packages/coding-agent": {
"name": "@earendil-works/pi-coding-agent",
"version": "0.79.4",
"version": "0.79.5",
"license": "MIT",
"dependencies": {
"@earendil-works/pi-agent-core": "^0.79.4",
"@earendil-works/pi-ai": "^0.79.4",
"@earendil-works/pi-tui": "^0.79.4",
"@earendil-works/pi-agent-core": "^0.79.5",
"@earendil-works/pi-ai": "^0.79.5",
"@earendil-works/pi-tui": "^0.79.5",
"@silvia-odwyer/photon-node": "0.3.4",
"chalk": "5.6.2",
"cross-spawn": "7.0.6",
@@ -6304,32 +6304,32 @@
},
"packages/coding-agent/examples/extensions/custom-provider-anthropic": {
"name": "pi-extension-custom-provider-anthropic",
"version": "0.79.4",
"version": "0.79.5",
"dependencies": {
"@anthropic-ai/sdk": "0.52.0"
}
},
"packages/coding-agent/examples/extensions/custom-provider-gitlab-duo": {
"name": "pi-extension-custom-provider-gitlab-duo",
"version": "0.79.4"
"version": "0.79.5"
},
"packages/coding-agent/examples/extensions/gondolin": {
"name": "pi-extension-gondolin",
"version": "0.79.4",
"version": "0.79.5",
"dependencies": {
"@earendil-works/gondolin": "0.12.0"
}
},
"packages/coding-agent/examples/extensions/sandbox": {
"name": "pi-extension-sandbox",
"version": "1.9.4",
"version": "1.9.5",
"dependencies": {
"@anthropic-ai/sandbox-runtime": "0.0.26"
}
},
"packages/coding-agent/examples/extensions/with-deps": {
"name": "pi-extension-with-deps",
"version": "0.79.4",
"version": "0.79.5",
"dependencies": {
"ms": "2.1.3"
},
@@ -6365,7 +6365,7 @@
},
"packages/tui": {
"name": "@earendil-works/pi-tui",
"version": "0.79.4",
"version": "0.79.5",
"license": "MIT",
"dependencies": {
"get-east-asian-width": "1.6.0",
+1 -1
View File
@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.79.5] - 2026-06-16
## [0.79.4] - 2026-06-15
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-agent-core",
"version": "0.79.4",
"version": "0.79.5",
"description": "General-purpose agent with transport abstraction, state management, and attachment support",
"type": "module",
"main": "./dist/index.js",
@@ -29,7 +29,7 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.79.4",
"@earendil-works/pi-ai": "^0.79.5",
"ignore": "7.0.5",
"typebox": "1.1.38",
"yaml": "2.9.0"
+1 -1
View File
@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.79.5] - 2026-06-16
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-ai",
"version": "0.79.4",
"version": "0.79.5",
"description": "Unified LLM API with automatic model discovery and provider configuration",
"type": "module",
"main": "./dist/index.js",
+35
View File
@@ -3813,6 +3813,24 @@ export const MODELS = {
contextWindow: 131072,
maxTokens: 131072,
} satisfies Model<"openai-completions">,
"@cf/zai-org/glm-5.2": {
id: "@cf/zai-org/glm-5.2",
name: "Glm 5.2",
api: "openai-completions",
provider: "cloudflare-workers-ai",
baseUrl: "https://api.cloudflare.com/client/v4/accounts/{CLOUDFLARE_ACCOUNT_ID}/ai/v1",
compat: {"sendSessionAffinityHeaders":true},
reasoning: true,
input: ["text"],
cost: {
input: 1.4,
output: 4.4,
cacheRead: 0.26,
cacheWrite: 0,
},
contextWindow: 262144,
maxTokens: 262144,
} satisfies Model<"openai-completions">,
},
"deepseek": {
"deepseek-v4-flash": {
@@ -12956,6 +12974,23 @@ export const MODELS = {
contextWindow: 202752,
maxTokens: 4096,
} satisfies Model<"openai-completions">,
"z-ai/glm-5.2": {
id: "z-ai/glm-5.2",
name: "Z.ai: GLM 5.2",
api: "openai-completions",
provider: "openrouter",
baseUrl: "https://openrouter.ai/api/v1",
reasoning: true,
input: ["text"],
cost: {
input: 1.4,
output: 4.4,
cacheRead: 0.26,
cacheWrite: 0,
},
contextWindow: 1048576,
maxTokens: 131072,
} satisfies Model<"openai-completions">,
"~anthropic/claude-fable-latest": {
id: "~anthropic/claude-fable-latest",
name: "Anthropic: Claude Fable Latest",
+1 -1
View File
@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.79.5] - 2026-06-16
### New Features
@@ -1,12 +1,12 @@
{
"name": "pi-extension-custom-provider",
"version": "0.79.4",
"version": "0.79.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pi-extension-custom-provider",
"version": "0.79.4",
"version": "0.79.5",
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0"
}
@@ -1,7 +1,7 @@
{
"name": "pi-extension-custom-provider-anthropic",
"private": true,
"version": "0.79.4",
"version": "0.79.5",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",
@@ -1,7 +1,7 @@
{
"name": "pi-extension-custom-provider-gitlab-duo",
"private": true,
"version": "0.79.4",
"version": "0.79.5",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
{
"name": "pi-extension-gondolin",
"version": "0.79.4",
"version": "0.79.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pi-extension-gondolin",
"version": "0.79.4",
"version": "0.79.5",
"dependencies": {
"@earendil-works/gondolin": "0.12.0"
}
@@ -1,7 +1,7 @@
{
"name": "pi-extension-gondolin",
"private": true,
"version": "0.79.4",
"version": "0.79.5",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
{
"name": "pi-extension-sandbox",
"version": "1.9.4",
"version": "1.9.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pi-extension-sandbox",
"version": "1.9.4",
"version": "1.9.5",
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.26"
}
@@ -1,7 +1,7 @@
{
"name": "pi-extension-sandbox",
"private": true,
"version": "1.9.4",
"version": "1.9.5",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
{
"name": "pi-extension-with-deps",
"version": "0.79.4",
"version": "0.79.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pi-extension-with-deps",
"version": "0.79.4",
"version": "0.79.5",
"dependencies": {
"ms": "^2.1.3"
},
@@ -1,7 +1,7 @@
{
"name": "pi-extension-with-deps",
"private": true,
"version": "0.79.4",
"version": "0.79.5",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",
+12 -12
View File
@@ -1,17 +1,17 @@
{
"name": "@earendil-works/pi-coding-agent",
"version": "0.79.4",
"version": "0.79.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@earendil-works/pi-coding-agent",
"version": "0.79.4",
"version": "0.79.5",
"license": "MIT",
"dependencies": {
"@earendil-works/pi-agent-core": "^0.79.4",
"@earendil-works/pi-ai": "^0.79.4",
"@earendil-works/pi-tui": "^0.79.4",
"@earendil-works/pi-agent-core": "^0.79.5",
"@earendil-works/pi-ai": "^0.79.5",
"@earendil-works/pi-tui": "^0.79.5",
"@silvia-odwyer/photon-node": "0.3.4",
"chalk": "5.6.2",
"cross-spawn": "7.0.6",
@@ -474,11 +474,11 @@
}
},
"node_modules/@earendil-works/pi-agent-core": {
"version": "0.79.4",
"resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.79.4.tgz",
"version": "0.79.5",
"resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.79.5.tgz",
"license": "MIT",
"dependencies": {
"@earendil-works/pi-ai": "^0.79.4",
"@earendil-works/pi-ai": "^0.79.5",
"ignore": "7.0.5",
"typebox": "1.1.38",
"yaml": "2.9.0"
@@ -488,8 +488,8 @@
}
},
"node_modules/@earendil-works/pi-ai": {
"version": "0.79.4",
"resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.79.4.tgz",
"version": "0.79.5",
"resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.79.5.tgz",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "0.91.1",
@@ -511,8 +511,8 @@
}
},
"node_modules/@earendil-works/pi-tui": {
"version": "0.79.4",
"resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.79.4.tgz",
"version": "0.79.5",
"resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.79.5.tgz",
"license": "MIT",
"dependencies": {
"get-east-asian-width": "1.6.0",
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-coding-agent",
"version": "0.79.4",
"version": "0.79.5",
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
"type": "module",
"piConfig": {
@@ -36,9 +36,9 @@
"prepublishOnly": "npm run clean && npm run build && npm run shrinkwrap"
},
"dependencies": {
"@earendil-works/pi-agent-core": "^0.79.4",
"@earendil-works/pi-ai": "^0.79.4",
"@earendil-works/pi-tui": "^0.79.4",
"@earendil-works/pi-agent-core": "^0.79.5",
"@earendil-works/pi-ai": "^0.79.5",
"@earendil-works/pi-tui": "^0.79.5",
"@silvia-odwyer/photon-node": "0.3.4",
"chalk": "5.6.2",
"cross-spawn": "7.0.6",
+1 -1
View File
@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.79.5] - 2026-06-16
### Changed
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-tui",
"version": "0.79.4",
"version": "0.79.5",
"description": "Terminal User Interface library with differential rendering for efficient text-based applications",
"type": "module",
"main": "dist/index.js",