revert(deepagents): omit middleware trace inputs (#837) - #844
Merged
Merged
Conversation
This reverts commit 22cc873.
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
deepagents-acp
deepagents
@langchain/sandbox-standard-tests
@langchain/daytona
@langchain/deno
@langchain/modal
@langchain/node-vfs
@langchain/quickjs
commit: |
Hunter Lovell (hntrl)
approved these changes
Sep 9, 2026
Baihao Wang (byhow)
added a commit
that referenced
this pull request
Sep 9, 2026
## Summary Runs `changeset pre exit` so the next release publishes stable versions rather than `-rc` ones. `.changeset/pre.json` moves to `"mode": "exit"`; the release workflow deletes the file when it next versions, and the open release PR (#843) will regenerate as a stable `chore: version packages`. Pairs with #844, which reverts #837. #837 is what pulled rc dependency ranges into the tree, so both are needed before a stable release can go out. ## Testing No code change — `.changeset/pre.json` only.
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.
Summary
Reverts #837 (
fix(deepagents): omit middleware trace inputs).That change adopted
tracePolicy/omitPayload, which only exist in prerelease langchain, so it moved the workspace onto rc dependency ranges —langchain^1.5.10to^1.5.11-rc.0,@langchain/langgraph^1.4.10to^1.4.15-rc.0, plus a newlangchain: ^1.5.11-rc.0peer on@langchain/quickjs. A stable release cannot depend on rc packages, which is what blocks the release.Reverting restores the stable ranges and removes the
tracePolicyusages, thetrace_policy.test.tssuite, and the accompanying changeset.Pairs with #845, which exits rc prerelease mode. Both are needed before a stable release can go out.
One manual conflict resolution, in
libs/providers/quickjs/package.json: #838 bumped thedeepagentspeer to>=1.13.4-rc.0after #837 landed, so the peer block conflicted. I kept #838's bump and dropped only thelangchainpeer that #837 added — reverting #837 should not undo the release versioning done by #838.Testing
pnpm install --frozen-lockfileis clean, andlangchainresolves back to1.5.10.pnpm buildpasses.pnpm testpasses: 43 files inlibs/deepagentsand 4 inlibs/acp, no type errors, lint and format clean. The deepagents file count drops by one because the revert removestrace_policy.test.ts.changeset statusreports a clean patch bump across all packages, so the pair leaves the release plan in a valid state.