You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[P2] Deleted artifacts can remain visible in another window.
The fingerprint is shared on disk, but known belongs to each window. After window A deletes an artifact and updates the fingerprint, window B can return its stale catalog because the underlying shared file still exists. The new mutationRevision only protects the window performing deletion. Remove this shortcut or associate each in-memory catalog with its own fingerprint. ArtifactStore.swift:337–343
[P2] Migration leaves obsolete copies of deleted files behind.
The rebuild switches to shared media references and removes the old cache-pruning code, but never cleans existing Caches/Nativ/Artifacts files. Those copies survive subsequent artifact deletion—even after shared-media garbage collection. This retains deleted content and wastes disk space. Add cleanup of obsolete copies during migration. ArtifactStore.swift:346–350
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
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.
Unify the artifact catalog, reuse stored files, and remove references across linked sessions.
Stacked on #577. Saves are sequential: failures can leave partial removal; remaining references can be retried.
Verified: local build and 35 tests passed