chore(deps): batch dep bumps (tailwindcss 4.3.1, lucide-react 1.18.0, workers-types)#86
Merged
Conversation
…4.20260613.1 Closes #80
wrangler@4.100.0 pins esbuild@0.27.3 transitively. Root overrides don't cross workspace boundaries, so the worker subpackage needs its own override to clear GHSA-g7r4-m6w7-qqqr and GHSA-gv7w-rqvm-qjhr. Closes #82
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
Batch dependency upgrades from the 2026-06-13 autopilot scan. Five of six issues handled; one major bump deferred (see below).
esbuild fix (#82)
Root
package.jsonalready pinnedesbuild: ^0.28.1directly and viaoverrides, but root overrides don't cross workspace boundaries.wrangler@4.100.0(worker devDep) pinsesbuild@0.27.3, soworker/bun.lockstill resolved to the vulnerable version. Fix: add"esbuild": "^0.28.1"toworker/package.json'soverrides. After reinstall,cd worker && bun pm why esbuildreportsesbuild@0.28.1.Deferred: eslint 9.39.4 → 10.5.0 (#83)
ESLint 10 is incompatible with
eslint-plugin-react@7.37.5(latest), which is pulled transitively viaeslint-config-next@16.2.9. Attempting to lint with eslint@10 throws:eslint-plugin-react's peerDep is"^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"— eslint 10 not accepted. Revisit when upstream ships eslint 10 support. Issue #83 left open.Test plan
bun install --frozen-lockfile(root + worker)bun run lint— 0 warnings, 0 errorsbun run typecheck— cleanbun run worker:typecheck— cleanbun run test— 957 passed (71 files)bun run test:worker— 247 passed (16 files)cd worker && bun pm why esbuild→esbuild@0.28.1