chore: version packages - #174
Closed
github-actions[bot] wants to merge 1 commit into
Closed
Conversation
github-actionsBotforce-pushed
the
changeset-release/master
branch
8 times, most recently
from
July 28, 2026 09:48
0dc0842 to
12c6ccaComparegithub-actionsBotforce-pushed
the
changeset-release/master
branch
2 times, most recently
from
August 5, 2026 19:46
6894dc1 to
946ef44Comparegithub-actionsBotforce-pushed
the
changeset-release/master
branch
from
August 5, 2026 19:48
946ef44 to
9098ea9CompareArk0N
commented
Aug 5, 2026
Owner
Superseded by the manual COM that shipped 1.11.1 ( This PR proposed consuming Closing. The changesets action will open a fresh version PR automatically the next time an unconsumed changeset lands on master. |
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 freeto 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 master, this PR will be updated.
Releases
aicodeman@1.11.1
Patch Changes
73315bc: fix(web): stop the Claude response viewer from following another session's conversation
The viewer re-derived a pane's live conversation by taking the newest
~/.claude/history.jsonlentry for the pane's cwd. A cwd is shared with everyother Codeman tab on it, with tabs long since closed, and with any plain
clauderun in the user's own terminal, so the eye followed whichever of thosewas typed into last — and the adoption was written back to the session, so the
mispin persisted. Entries are now credited to a pane only when they land within
10s of that pane's own Enter and no other pane on the cwd submitted closer, the
same last-submit correlation the Codex locator already uses.
That correlation also has to survive a restart.
start()resetsclaudeSessionIdto the launch id even when re-attaching to a mux session whoseCLI has since moved on via
/clear, so a recovered pane pointed the viewer atits pre-
/cleartranscript — and with the anchor itself living only in memory,nothing corrected it until the user happened to type again.
lastSubmitAtisnow persisted in
SessionStateand restored on boot recovery, so the viewerre-derives the live conversation on its first poll.