feat: parentUuid auto-relink on save + restore subcommand#2
Merged
Conversation
Fixes the failure mode where scattered deletes left surviving messages pointing to deleted ancestors, making Claude Code render the session as empty on resume. - Session::render_with_relink rewrites parentUuid for survivors whose ancestor was deleted, walking up to the nearest surviving ancestor (or null at the root). Foreign parent uuids are preserved verbatim. - 'delete' output reports parent_uuid_relinked count. - New 'cc-session restore <id> [--list]' rolls back from .bak with a pre-restore snapshot saved aside as <path>.pre-restore.<ts>. - 4 new unit tests cover relink-skips-deleted, relink-to-root, no-change-byte-equal, and foreign-parent-preserved.
Deploying cc-session-installer with
|
| Latest commit: |
f0f90d8
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://ca27e02e.cc-session-installer.pages.dev |
| Branch Preview URL: | https://feat-restore-and-known-issue.cc-session-installer.pages.dev |
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.
Fixes the failure mode where scattered deletes left surviving messages pointing to deleted ancestors, breaking Claude Code resume render.
Session::render_with_relinkrewrites parentUuid on survivors to nearest surviving ancestor; foreign uuids preserved verbatim.deleteJSON now reportsparent_uuid_relinked.cc-session restore <id> [--list]with pre-restore snapshot kept as<path>.pre-restore.<ts>.