-
Notifications
You must be signed in to change notification settings - Fork 719
fix(workbench): confine inventories and snapshots to the selected target #472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
mldangelo-oai
wants to merge
17
commits into
main
Choose a base branch
from
mdangelo/codex/confine-repository-parent-symlinks-20260815
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+401
−55
Draft
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
149d50a
fix(workbench): keep repository inventory and snapshots within the ta…
mldangelo-oai 6d14f75
fix(workbench): preserve valid scoped and deleted Git paths
mldangelo-oai 50be60a
fix(workbench): preserve safe Git history and refresh cached plugins
mldangelo-oai 523ca7f
fix(workbench): cache canonical Unicode-aware snapshot parents
mldangelo-oai 9db2878
fix(workbench): confine deep review paths using filesystem identity
mldangelo-oai 7d07d9a
fix(workbench): preserve safe path aliases and changed-file coverage
mldangelo-oai 526cdba
fix(workbench): preserve vanished staged additions during inventory
mldangelo-oai 43319dc
fix(workbench): keep optional snapshot progress nonblocking
mldangelo-oai 37bd54b
fix(workbench): preserve nested progress and replaced staged paths
mldangelo-oai 6bb77d8
fix(workbench): preserve enclosing roots and Windows-safe junction fi…
mldangelo-oai 23963af
fix(workbench): preserve selected roots during nested checkout digests
mldangelo-oai 995da43
fix(workbench): anchor nested snapshots to selected checkout roots
mldangelo-oai a4dcb3a
Merge main into repository target confinement
mldangelo-oai 90843f1
refactor(workbench): share canonical target containment checks
mldangelo-oai 648c152
fix(workbench): preserve canonical leaf containment in previews
mldangelo-oai c9c1214
Merge current main into repository confinement fix
mldangelo-oai 9249639
Merge main and confine repository paths
mldangelo-oai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When a local patch contains a staged or untracked broken symlink such as
broken.py -> missing.py,lstat()succeeds butresolve(strict=True)raisesFileNotFoundError; both diff inventory and rank-input generation convert that into a fatal “Could not inspect” error, preventing the entire scan even though their later branches already handle symlinks without reading their targets. Validate a broken link's unresolved destination or containing directory so an in-target link can proceed while destinations outside the selected target remain rejected.AGENTS.md reference: sdk/typescript/AGENTS.md:L22-L23
Useful? React with 👍 / 👎.