Release v0.74.0

This commit is contained in:
Mario Zechner
2026-05-07 17:15:00 +02:00
parent 551385e409
commit 1eee081e29
19 changed files with 43 additions and 43 deletions

32
package-lock.json generated
View File

@@ -5955,10 +5955,10 @@
},
"packages/agent": {
"name": "@earendil-works/pi-agent-core",
"version": "0.73.1",
"version": "0.74.0",
"license": "MIT",
"dependencies": {
"@earendil-works/pi-ai": "^0.73.1",
"@earendil-works/pi-ai": "^0.74.0",
"typebox": "^1.1.24"
},
"devDependencies": {
@@ -5985,7 +5985,7 @@
},
"packages/ai": {
"name": "@earendil-works/pi-ai",
"version": "0.73.1",
"version": "0.74.0",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
@@ -6027,12 +6027,12 @@
},
"packages/coding-agent": {
"name": "@earendil-works/pi-coding-agent",
"version": "0.73.1",
"version": "0.74.0",
"license": "MIT",
"dependencies": {
"@earendil-works/pi-agent-core": "^0.73.1",
"@earendil-works/pi-ai": "^0.73.1",
"@earendil-works/pi-tui": "^0.73.1",
"@earendil-works/pi-agent-core": "^0.74.0",
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@silvia-odwyer/photon-node": "^0.3.4",
"chalk": "^5.5.0",
"cli-highlight": "^2.1.11",
@@ -6074,18 +6074,18 @@
},
"packages/coding-agent/examples/extensions/custom-provider-anthropic": {
"name": "pi-extension-custom-provider-anthropic",
"version": "0.73.1",
"version": "0.74.0",
"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.73.1"
"version": "0.74.0"
},
"packages/coding-agent/examples/extensions/sandbox": {
"name": "pi-extension-sandbox",
"version": "1.3.1",
"version": "1.4.0",
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.26"
}
@@ -6153,7 +6153,7 @@
},
"packages/coding-agent/examples/extensions/with-deps": {
"name": "pi-extension-with-deps",
"version": "0.73.1",
"version": "0.74.0",
"dependencies": {
"ms": "^2.1.3"
},
@@ -6183,7 +6183,7 @@
},
"packages/tui": {
"name": "@earendil-works/pi-tui",
"version": "0.73.1",
"version": "0.74.0",
"license": "MIT",
"dependencies": {
"@types/mime-types": "^2.1.4",
@@ -6205,11 +6205,11 @@
},
"packages/web-ui": {
"name": "@earendil-works/pi-web-ui",
"version": "0.73.1",
"version": "0.74.0",
"license": "MIT",
"dependencies": {
"@earendil-works/pi-ai": "^0.73.1",
"@earendil-works/pi-tui": "^0.73.1",
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@lmstudio/sdk": "^1.5.0",
"docx-preview": "^0.3.7",
"jszip": "^3.10.1",
@@ -6232,7 +6232,7 @@
},
"packages/web-ui/example": {
"name": "pi-web-ui-example",
"version": "0.73.1",
"version": "0.74.0",
"dependencies": {
"@earendil-works/pi-ai": "file:../../ai",
"@earendil-works/pi-web-ui": "file:../",

View File

@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.74.0] - 2026-05-07
## [0.73.1] - 2026-05-07

View File

@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-agent-core",
"version": "0.73.1",
"version": "0.74.0",
"description": "General-purpose agent with transport abstraction, state management, and attachment support",
"type": "module",
"main": "./dist/index.js",
@@ -17,7 +17,7 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.73.1",
"@earendil-works/pi-ai": "^0.74.0",
"typebox": "^1.1.24"
},
"keywords": [

View File

@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.74.0] - 2026-05-07
## [0.73.1] - 2026-05-07

View File

@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-ai",
"version": "0.73.1",
"version": "0.74.0",
"description": "Unified LLM API with automatic model discovery and provider configuration",
"type": "module",
"main": "./dist/index.js",

View File

@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.74.0] - 2026-05-07
### Changed

View File

@@ -1,12 +1,12 @@
{
"name": "pi-extension-custom-provider",
"version": "0.73.1",
"version": "0.74.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pi-extension-custom-provider",
"version": "0.73.1",
"version": "0.74.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0"
}

View File

@@ -1,7 +1,7 @@
{
"name": "pi-extension-custom-provider-anthropic",
"private": true,
"version": "0.73.1",
"version": "0.74.0",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",

View File

@@ -1,7 +1,7 @@
{
"name": "pi-extension-custom-provider-gitlab-duo",
"private": true,
"version": "0.73.1",
"version": "0.74.0",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",

View File

@@ -1,12 +1,12 @@
{
"name": "pi-extension-sandbox",
"version": "1.3.1",
"version": "1.4.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pi-extension-sandbox",
"version": "1.3.1",
"version": "1.4.0",
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.26"
}

View File

@@ -1,7 +1,7 @@
{
"name": "pi-extension-sandbox",
"private": true,
"version": "1.3.1",
"version": "1.4.0",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",

View File

@@ -1,12 +1,12 @@
{
"name": "pi-extension-with-deps",
"version": "0.73.1",
"version": "0.74.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pi-extension-with-deps",
"version": "0.73.1",
"version": "0.74.0",
"dependencies": {
"ms": "^2.1.3"
},

View File

@@ -1,7 +1,7 @@
{
"name": "pi-extension-with-deps",
"private": true,
"version": "0.73.1",
"version": "0.74.0",
"type": "module",
"scripts": {
"clean": "echo 'nothing to clean'",

View File

@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-coding-agent",
"version": "0.73.1",
"version": "0.74.0",
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
"type": "module",
"piConfig": {
@@ -38,9 +38,9 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@earendil-works/pi-agent-core": "^0.73.1",
"@earendil-works/pi-ai": "^0.73.1",
"@earendil-works/pi-tui": "^0.73.1",
"@earendil-works/pi-agent-core": "^0.74.0",
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@silvia-odwyer/photon-node": "^0.3.4",
"chalk": "^5.5.0",
"cli-highlight": "^2.1.11",

View File

@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.74.0] - 2026-05-07
## [0.73.1] - 2026-05-07

View File

@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-tui",
"version": "0.73.1",
"version": "0.74.0",
"description": "Terminal User Interface library with differential rendering for efficient text-based applications",
"type": "module",
"main": "dist/index.js",

View File

@@ -1,6 +1,6 @@
# Changelog
## [Unreleased]
## [0.74.0] - 2026-05-07
## [0.73.1] - 2026-05-07

View File

@@ -1,6 +1,6 @@
{
"name": "pi-web-ui-example",
"version": "0.73.1",
"version": "0.74.0",
"private": true,
"type": "module",
"scripts": {

View File

@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-web-ui",
"version": "0.73.1",
"version": "0.74.0",
"description": "Reusable web UI components for AI chat interfaces powered by @earendil-works/pi-ai",
"type": "module",
"main": "dist/index.js",
@@ -18,8 +18,8 @@
},
"dependencies": {
"@lmstudio/sdk": "^1.5.0",
"@earendil-works/pi-ai": "^0.73.1",
"@earendil-works/pi-tui": "^0.73.1",
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"typebox": "^1.1.24",
"docx-preview": "^0.3.7",
"jszip": "^3.10.1",