Fix Dependabot lockfile updates by splitting Yarn workspaces#10
Merged
Conversation
…ages Dependabot updates package.json but not the root yarn.lock, causing CI to fail with "lockfile would have been modified". Each package now has its own Yarn config, binary, and lockfile so Dependabot can natively update both files per directory. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
CODEOWNERS already assigns ksroda-sa as reviewer on all paths. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ksroda-sa
marked this pull request as ready for review
April 13, 2026 09:05
ksroda-sa
requested review from
artursmolarek,
dfranco-sa,
jgutikonda-sa,
jkotiuk,
justintvnguyen,
lgonczarik and
lukaszmatura-sa
April 13, 2026 09:05
bwereszczak
approved these changes
Apr 13, 2026
ikawalec
approved these changes
Apr 13, 2026
artursmolarek
approved these changes
Apr 13, 2026
ksroda-sa
added a commit
that referenced
this pull request
May 18, 2026
) Bumps three lockfiles to drop the vulnerable transitive versions: samples/angular/login-pkce/yarn.lock samples/angular/token-refresh/yarn.lock ip-address 10.1.0 → 10.2.0 (closes alerts #2, #3 — XSS in Address6 HTML-emitting methods). The vulnerable 10.1.0 was pinned exactly by express-rate-limit@8.5.0 deep in the tree via @modelcontextprotocol/sdk. Bumping express-rate-limit recursively to 8.5.2 — which now uses ^10.2.0 — drops the bad pin transitively. samples/react-native/login-pkce/yarn.lock fast-xml-builder 1.1.5 → 1.2.0 (closes alerts #9, #10 — Comment Value regex bypass + attribute value quote bypass). Bumped recursively via yarn up -R. All changes are lockfile-only (no package.json edits). All bumped packages are build/dev tooling, not runtime — the apps' shipped code is unchanged. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
package.jsonchangessamples/react/login-pkce,scripts) now has its own.yarnrc.yml,.yarn/releases/, andyarn.lockksroda-satemporarily to avoid spamming the team with Dependabot auto-PRs while configuring the setup — will restore team reviewers once stableWhy
Dependabot updates
package.jsonin individual directories but does not update the rootyarn.lock, causing CI to fail with:🤖 Generated with Claude Code