Version Packages - #36
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 8, 2026 08:12
e46b374 to
8e0798a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@upstash/agentkit-eve-extension@0.10.0
Minor Changes
b524fcf: fix!: rebuild against eve 0.52.2 and raise the
evepeer floor to>=0.52.2The extension is now built with eve 0.52.2, whose
dist/extension/_manifest.jsonstamps formatVersion 2 and contractsextension 1 / tool 30 / dynamicTool 29 / hook 20 / instructions 2 /
config 1 — up from tool 24 / dynamicTool 21 / hook 16 in the published
0.9.0build (eve 0.49.0). All three moving contracts advanced this time.
This release fixes a real break in
0.9.0. eve 0.50.0 and every release aboveit dropped the contracts the published dist requires, so
0.9.0installs cleanlyagainst its
">=0.48.0"peer and then failseve buildwithSelected module binding "extensions/agentkit.ts" has no compile or runtime usage.Anyone on eve ≥0.50.0 needs this version.
eve 0.52.2 is the only release whose
EXTENSION_CAPABILITY_CONTRACTSaccept the newstamps (0.52.0/0.52.1 top out at tool 29, 0.51.1 at tool 27, 0.51.0 at tool 25 /
hook 18, 0.50.0 at dynamicTool 22 / hook 17), so the
evepeer moves from">=0.48.0"to">=0.52.2". Verified by packing the rebuilt extension into a realeve app: on eve 0.52.1 it installs cleanly and then fails
eve buildwith the messageabove, while eve 0.52.2 builds and mounts all seven tools plus the chat-history hook.
Note that eve now drops contracts out of the middle of its supported range rather
than only adding new ones — 0.52.2 supports
tool[1–13, 28, 29, 30] and drops 14–27.A newer eve is therefore no longer automatically compatible, and a floored peer with no
ceiling is not by itself a guarantee; always re-derive the floor from the freshly built
manifest.
No extension source changed: the
chat_historyhook subscribes only tomessage.received/message.completed(not the append events cited in eve's dropreasons), and nothing here uses
TaskExec.delegated. All packages build, typecheck andpass their tests against eve 0.52.2, and the demo's mocked-model eval is green.
eve-extension-demo@0.0.9
Patch Changes