From f3b40aea995599d7a8e65200c66ac01195d18ce1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 19:01:04 +0000 Subject: [PATCH] chore: version typescript packages --- typescript/.changeset/olive-donkeys-repeat.md | 5 ----- typescript/agentkit/CHANGELOG.md | 6 ++++++ typescript/agentkit/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 typescript/.changeset/olive-donkeys-repeat.md diff --git a/typescript/.changeset/olive-donkeys-repeat.md b/typescript/.changeset/olive-donkeys-repeat.md deleted file mode 100644 index ef0a30875..000000000 --- a/typescript/.changeset/olive-donkeys-repeat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@coinbase/agentkit": minor ---- - -Removed local filesystem reads from the flaunch and zora action providers. The `image` parameter previously treated any non-URL string as a local file path, read it off the agent host, and uploaded the contents to a third-party IPFS pinning service. It now accepts only remote URLs (`http(s)://` for flaunch, `https://` or `ipfs://` for zora) or a `data:` URI. To publish a local file, read it yourself and pass a data URI: `` image: `data:image/png;base64,${fs.readFileSync(path, "base64")}` `` diff --git a/typescript/agentkit/CHANGELOG.md b/typescript/agentkit/CHANGELOG.md index fa4b2af96..51671097a 100644 --- a/typescript/agentkit/CHANGELOG.md +++ b/typescript/agentkit/CHANGELOG.md @@ -1,5 +1,11 @@ # AgentKit Changelog +## 0.12.0 + +### Minor Changes + +- [#1432](https://github.com/coinbase/agentkit/pull/1432) [`455a6c5`](https://github.com/coinbase/agentkit/commit/455a6c5a29375de290da0f3b440119ec7f511440) Thanks [@CarsonRoscoe](https://github.com/CarsonRoscoe)! - Removed local filesystem reads from the flaunch and zora action providers. The `image` parameter previously treated any non-URL string as a local file path, read it off the agent host, and uploaded the contents to a third-party IPFS pinning service. It now accepts only remote URLs (`http(s)://` for flaunch, `https://` or `ipfs://` for zora) or a `data:` URI. To publish a local file, read it yourself and pass a data URI: `` image: `data:image/png;base64,${fs.readFileSync(path, "base64")}` `` + ## 0.11.0 ### Minor Changes diff --git a/typescript/agentkit/package.json b/typescript/agentkit/package.json index 3bd3fba8b..aab3bfc2f 100644 --- a/typescript/agentkit/package.json +++ b/typescript/agentkit/package.json @@ -2,7 +2,7 @@ "name": "@coinbase/agentkit", "description": "Coinbase AgentKit core primitives", "repository": "https://github.com/coinbase/agentkit", - "version": "0.11.0", + "version": "0.12.0", "author": "Coinbase Inc.", "license": "Apache-2.0", "main": "dist/index.js",