fix: pin @pierre/diffs to exact version 1.1.12#614
Open
xiaolai wants to merge 1 commit intobacknotprop:mainfrom
Open
fix: pin @pierre/diffs to exact version 1.1.12#614xiaolai wants to merge 1 commit intobacknotprop:mainfrom
xiaolai wants to merge 1 commit intobacknotprop:mainfrom
Conversation
The pierre-guard skill explicitly documents that @pierre/diffs uses shadow DOM selectors and grid assumptions that can break silently on minor upgrades. Pinning to an exact version ensures upgrades are intentional and gated through the pierre-guard verification checklist. Co-Authored-By: Claude Code <noreply@anthropic.com>
This was referenced Apr 26, 2026
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.
Issue
@pierre/diffsis currently declared with a caret range (^1.1.12) inpackage.json, which permits automatic minor and patch version upgrades without explicit review.This package is particularly sensitive: the pierre-guard skill in this repo explicitly documents that
@pierre/diffsuses shadow DOM selectors and grid layout assumptions that can break silently on minor version bumps. An unreviewed upgrade could cause subtle rendering regressions that bypass automated testing.Fix
Pin
@pierre/diffsto the exact version1.1.12. Future upgrades should be run through the pierre-guard verification checklist before the pin is advanced.The other three SDK dependencies (
@anthropic-ai/claude-agent-sdk,@openai/codex-sdk,@opencode-ai/sdk) are externally versioned and benefit from caret ranges for security patches; this change deliberately targets only@pierre/diffswhich carries unique internal breakage risk per the guard skill.