Version Packages#344
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 13, 2026 03:31
6f3e0e1 to
2c7ff5b
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 13, 2026 03:44
2c7ff5b to
479bb55
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 13, 2026 04:18
479bb55 to
533abd8
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
July 13, 2026 19:29
1cff19d to
4c96deb
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 13, 2026 19:50
4c96deb to
cc0ecc3
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 13, 2026 20:23
cc0ecc3 to
c3b0634
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 13, 2026 22:13
c3b0634 to
bad3a44
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 13, 2026 22:26
bad3a44 to
dfc4970
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 14, 2026 17:42
dfc4970 to
5d72e3b
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
@dawn-ai/[email protected]
Patch Changes
20f0407: Consolidate the existing
@dawn-ai/ag-uipackage as Dawn's pure canonical AG-UIadapter. Its root API now maps standard
RunAgentInputrequests and Dawn streamchunks, including standard interrupt outcomes and addressed resume decisions,
while the focused
@dawn-ai/ag-ui/ssesubpath provides event-stream encodingwithout taking ownership of a server or runtime transport.
The CLI AG-UI endpoint now uses the canonical adapter, applies the same request
projection as other runtime middleware, and emits canonical events without the
former custom state event shapes. Pending checkpoint interrupts are resolved
through the standard resume contract.
The langchain adapter surfaces each tool invocation's
run_idon itstool_callandtool_resultchunks, and the CLI preserves those IDs throughDawn and AG-UI streams for reliable
toolCallIdcorrelation. Local in-processdawn runalso assigns agent routes a one-shot thread ID so the default SQLitecheckpointer can execute the same route shape supported by
dawn dev.@dawn-ai/[email protected]
Patch Changes
20f0407: Consolidate the existing
@dawn-ai/ag-uipackage as Dawn's pure canonical AG-UIadapter. Its root API now maps standard
RunAgentInputrequests and Dawn streamchunks, including standard interrupt outcomes and addressed resume decisions,
while the focused
@dawn-ai/ag-ui/ssesubpath provides event-stream encodingwithout taking ownership of a server or runtime transport.
The CLI AG-UI endpoint now uses the canonical adapter, applies the same request
projection as other runtime middleware, and emits canonical events without the
former custom state event shapes. Pending checkpoint interrupts are resolved
through the standard resume contract.
The langchain adapter surfaces each tool invocation's
run_idon itstool_callandtool_resultchunks, and the CLI preserves those IDs throughDawn and AG-UI streams for reliable
toolCallIdcorrelation. Local in-processdawn runalso assigns agent routes a one-shot thread ID so the default SQLitecheckpointer can execute the same route shape supported by
dawn dev.2b6be86: Run app middleware for the
POST /agui/{routeId}endpoint, matchingruns/stream/runs/wait/resume. A middleware that rejects now blocks anAG-UI run (returning its status/body), and a middleware that returns
contexthas it threaded into the run — so auth, rate-limiting, and context injection
apply to AG-UI clients too, not just the Agent-Protocol endpoints.
18df470: Add a central
DAWN_Exxxxerror-code registry in@dawn-ai/sdkand surfacecodes on the failure channels.
CliErrornow carries an optionalcodeand theCLI prints
[CODE] See <docs>; HTTP/SSE error bodies gain optionalcode/docsUrl;permission denials returned as tool results are prefixed with
[DAWN_E3001].The high-value families are wired (
dawn checkconfig errors, sandboxunavailable, permission denied, missing model provider / unknown model id, and
tool-file shape errors), and a generated
/docs/errorsreference page is guardedagainst drift. Additive and backward-compatible.
ee83a96: Add dev-server HTTP endpoints for memory candidates so a web client can review
durable-memory proposals without the CLI:
GET /memory/candidates,POST /memory/candidates/:id/approve(candidate → active, 404/409 guarded), andPOST /memory/candidates/:id/reject. Backed by the same store methods asdawn memory list/approve/reject.361a9ac:
dawn verifynow runs an environment preflight. A newruntimecheck asserts the running Node version meets Dawn's22.13.0floor (a stale Node fails verify) and, whendawn.config.tsconfigures a sandbox provider, runs the provider's Docker daemon preflight. Thedepsenv-var check is now provider-aware: it derives the required API-key env var from the providers your routes actually use (e.g.ANTHROPIC_API_KEYfor an Anthropic-only app) instead of always nagging aboutOPENAI_API_KEY.Updated dependencies [20f0407]
Updated dependencies [5bbd6e3]
Updated dependencies [18df470]
@dawn-ai/[email protected]
Patch Changes
DAWN_Exxxxerror-code registry in@dawn-ai/sdkand surfacecodes on the failure channels.
CliErrornow carries an optionalcodeand theCLI prints
[CODE] See <docs>; HTTP/SSE error bodies gain optionalcode/docsUrl;permission denials returned as tool results are prefixed with
[DAWN_E3001].The high-value families are wired (
dawn checkconfig errors, sandboxunavailable, permission denied, missing model provider / unknown model id, and
tool-file shape errors), and a generated
/docs/errorsreference page is guardedagainst drift. Additive and backward-compatible.
[email protected]
Patch Changes
create-dawn-appnow prints next-steps guidance after creating an app (cd / install / test / run
it live), the templates gain a
devscript (dawn dev --port 3000) so you canactually run the agent, and the research template README shows the live path
(ask a question via
/agui) plus a pointer to the web-UI recipe.@dawn-ai/[email protected]
Patch Changes
create-dawn-appnow prints next-steps guidance after creating an app (cd / install / test / run
it live), the templates gain a
devscript (dawn dev --port 3000) so you canactually run the agent, and the research template README shows the live path
(ask a question via
/agui) plus a pointer to the web-UI recipe.@dawn-ai/[email protected]
Patch Changes
@dawn-ai/[email protected]
Patch Changes
20f0407: Consolidate the existing
@dawn-ai/ag-uipackage as Dawn's pure canonical AG-UIadapter. Its root API now maps standard
RunAgentInputrequests and Dawn streamchunks, including standard interrupt outcomes and addressed resume decisions,
while the focused
@dawn-ai/ag-ui/ssesubpath provides event-stream encodingwithout taking ownership of a server or runtime transport.
The CLI AG-UI endpoint now uses the canonical adapter, applies the same request
projection as other runtime middleware, and emits canonical events without the
former custom state event shapes. Pending checkpoint interrupts are resolved
through the standard resume contract.
The langchain adapter surfaces each tool invocation's
run_idon itstool_callandtool_resultchunks, and the CLI preserves those IDs throughDawn and AG-UI streams for reliable
toolCallIdcorrelation. Local in-processdawn runalso assigns agent routes a one-shot thread ID so the default SQLitecheckpointer can execute the same route shape supported by
dawn dev.5bbd6e3: Add a
recursionLimitoption toagent(). It maps to LangGraph's per-runsuper-step ceiling (default 25), so deep agents — a coordinator that dispatches
subagents and makes many tool calls — can raise the limit instead of aborting
with a recursion error.
18df470: Add a central
DAWN_Exxxxerror-code registry in@dawn-ai/sdkand surfacecodes on the failure channels.
CliErrornow carries an optionalcodeand theCLI prints
[CODE] See <docs>; HTTP/SSE error bodies gain optionalcode/docsUrl;permission denials returned as tool results are prefixed with
[DAWN_E3001].The high-value families are wired (
dawn checkconfig errors, sandboxunavailable, permission denied, missing model provider / unknown model id, and
tool-file shape errors), and a generated
/docs/errorsreference page is guardedagainst drift. Additive and backward-compatible.
Updated dependencies [5bbd6e3]
Updated dependencies [18df470]
@dawn-ai/[email protected]
Patch Changes
@dawn-ai/[email protected]
Patch Changes
@dawn-ai/[email protected]
Patch Changes
@dawn-ai/[email protected]
Patch Changes
DAWN_Exxxxerror-code registry in@dawn-ai/sdkand surfacecodes on the failure channels.
CliErrornow carries an optionalcodeand theCLI prints
[CODE] See <docs>; HTTP/SSE error bodies gain optionalcode/docsUrl;permission denials returned as tool results are prefixed with
[DAWN_E3001].The high-value families are wired (
dawn checkconfig errors, sandboxunavailable, permission denied, missing model provider / unknown model id, and
tool-file shape errors), and a generated
/docs/errorsreference page is guardedagainst drift. Additive and backward-compatible.
@dawn-ai/[email protected]
Patch Changes
recursionLimitoption toagent(). It maps to LangGraph's per-runsuper-step ceiling (default 25), so deep agents — a coordinator that dispatches
subagents and makes many tool calls — can raise the limit instead of aborting
with a recursion error.
DAWN_Exxxxerror-code registry in@dawn-ai/sdkand surfacecodes on the failure channels.
CliErrornow carries an optionalcodeand theCLI prints
[CODE] See <docs>; HTTP/SSE error bodies gain optionalcode/docsUrl;permission denials returned as tool results are prefixed with
[DAWN_E3001].The high-value families are wired (
dawn checkconfig errors, sandboxunavailable, permission denied, missing model provider / unknown model id, and
tool-file shape errors), and a generated
/docs/errorsreference page is guardedagainst drift. Additive and backward-compatible.
@dawn-ai/[email protected]
Patch Changes
@dawn-ai/[email protected]
Patch Changes
@dawn-ai/[email protected]
@dawn-ai/[email protected]
@dawn-ai/[email protected]
@dawn-ai/[email protected]
@dawn-ai/[email protected]
@dawn-example/[email protected]
Patch Changes
@dawn-example/[email protected]
Patch Changes
@dawn-example/[email protected]
Patch Changes