From 6fefed358f0072d2245966c3b7e0c9bbe7c4f88d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Sep 2026 11:22:52 +0000 Subject: [PATCH] chore: version packages --- .changeset/eve-extension-053.md | 9 --------- .changeset/sdk-eve-peer-053.md | 7 ------- packages/github-tools-eve-extension/CHANGELOG.md | 12 ++++++++++++ packages/github-tools-eve-extension/package.json | 2 +- packages/github-tools/CHANGELOG.md | 8 ++++++++ packages/github-tools/package.json | 2 +- 6 files changed, 22 insertions(+), 18 deletions(-) delete mode 100644 .changeset/eve-extension-053.md delete mode 100644 .changeset/sdk-eve-peer-053.md diff --git a/.changeset/eve-extension-053.md b/.changeset/eve-extension-053.md deleted file mode 100644 index 689fce4..0000000 --- a/.changeset/eve-extension-053.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@github-tools/eve-extension": patch ---- - -Rebuild the extension against eve 0.53. eve 0.50 changed the dynamic-tool capability contract and requires extensions built against the earlier contract to be rebuilt, so agents on eve 0.50 or newer need this release. - -`eve` is now declared as a `*` peer dependency instead of `>=0.44.0 <0.48.0`. The consuming agent supplies the runtime copy of eve, and eve validates the extension's generated capability metadata at build time rather than an npm range, so a new eve release no longer produces a peer conflict. The exact `eve` devDependency is the authoring and build version. - -`engines.node` widens from `24.x` to `>=24`. Mount configuration and tool behavior are unchanged. diff --git a/.changeset/sdk-eve-peer-053.md b/.changeset/sdk-eve-peer-053.md deleted file mode 100644 index 3d42b0c..0000000 --- a/.changeset/sdk-eve-peer-053.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@github-tools/sdk": patch ---- - -Widen the optional `eve` peer dependency from `>=0.44.0 <0.48.0` to `>=0.44.0`, so `@github-tools/sdk/eve-runtime` and the deprecated `@github-tools/sdk/eve` / `@github-tools/sdk/connect/eve` entry points install against current eve releases without a peer conflict. Verified against eve 0.53. - -These entry points keep their existing behavior and stay deprecated in favor of `@github-tools/eve-extension`. diff --git a/packages/github-tools-eve-extension/CHANGELOG.md b/packages/github-tools-eve-extension/CHANGELOG.md index bbd6710..b4e4dcb 100644 --- a/packages/github-tools-eve-extension/CHANGELOG.md +++ b/packages/github-tools-eve-extension/CHANGELOG.md @@ -1,5 +1,17 @@ # @github-tools/eve-extension +## 0.7.1 + +### Patch Changes + +- [#142](https://github.com/vercel-labs/github-tools/pull/142) [`542c417`](https://github.com/vercel-labs/github-tools/commit/542c4178fdfba3a103966400701ada0429188bbc) Thanks [@HugoRCD](https://github.com/HugoRCD)! - Rebuild the extension against eve 0.53. eve 0.50 changed the dynamic-tool capability contract and requires extensions built against the earlier contract to be rebuilt, so agents on eve 0.50 or newer need this release. + + `eve` is now declared as a `*` peer dependency instead of `>=0.44.0 <0.48.0`. The consuming agent supplies the runtime copy of eve, and eve validates the extension's generated capability metadata at build time rather than an npm range, so a new eve release no longer produces a peer conflict. The exact `eve` devDependency is the authoring and build version. + + `engines.node` widens from `24.x` to `>=24`. Mount configuration and tool behavior are unchanged. +- Updated dependencies [[`542c417`](https://github.com/vercel-labs/github-tools/commit/542c4178fdfba3a103966400701ada0429188bbc)]: + - @github-tools/sdk@1.16.1 + ## 0.7.0 ### Minor Changes diff --git a/packages/github-tools-eve-extension/package.json b/packages/github-tools-eve-extension/package.json index 8ce5fd8..3bbbbdf 100644 --- a/packages/github-tools-eve-extension/package.json +++ b/packages/github-tools-eve-extension/package.json @@ -1,6 +1,6 @@ { "name": "@github-tools/eve-extension", - "version": "0.7.0", + "version": "0.7.1", "description": "GitHub tools for eve, distributed as a mountable eve extension (https://eve.dev/docs/extensions)", "author": "HugoRCD ", "repository": { diff --git a/packages/github-tools/CHANGELOG.md b/packages/github-tools/CHANGELOG.md index ae3de78..f35271d 100644 --- a/packages/github-tools/CHANGELOG.md +++ b/packages/github-tools/CHANGELOG.md @@ -1,5 +1,13 @@ # @github-tools/sdk +## 1.16.1 + +### Patch Changes + +- [#142](https://github.com/vercel-labs/github-tools/pull/142) [`542c417`](https://github.com/vercel-labs/github-tools/commit/542c4178fdfba3a103966400701ada0429188bbc) Thanks [@HugoRCD](https://github.com/HugoRCD)! - Widen the optional `eve` peer dependency from `>=0.44.0 <0.48.0` to `>=0.44.0`, so `@github-tools/sdk/eve-runtime` and the deprecated `@github-tools/sdk/eve` / `@github-tools/sdk/connect/eve` entry points install against current eve releases without a peer conflict. Verified against eve 0.53. + + These entry points keep their existing behavior and stay deprecated in favor of `@github-tools/eve-extension`. + ## 1.16.0 ### Minor Changes diff --git a/packages/github-tools/package.json b/packages/github-tools/package.json index 0605f78..5562bc9 100644 --- a/packages/github-tools/package.json +++ b/packages/github-tools/package.json @@ -1,6 +1,6 @@ { "name": "@github-tools/sdk", - "version": "1.16.0", + "version": "1.16.1", "description": "A typed tool layer for GitHub AI agents, with presets, human approval, and durable execution. Works with eve, the AI SDK, Vercel Workflow, and Chat SDK", "author": "HugoRCD