Update dependencies across apps/ and packages/ (security + patch/minor bumps) - #210
Merged
Conversation
Apply patch and minor version bumps to all workspace packages. Security: fixes most high/critical CVEs from pnpm audit. - next: ^15 → ^15.5.15 (RCE + DoS advisories) - webpack: ^5.96.1 → ^5.106.2 (SSRF + allowedUris) - posthog-js: ^1.23.0 → ^1.369.3 (XSS) - postcss-loader, fs-extra, html-webpack-plugin, terser-webpack-plugin, css-loader, sass-loader, source-map-loader, style-loader, ts-loader, webpack-dev-server, babel-loader, web-ext (transitive audit hits) Other notable bumps (all within existing caret ranges): - @babel/*: 7.26.x → 7.28–7.29.x - @floating-ui/dom: 1.6.12 → 1.7.6 - @playwright/test: 1.50.0 → 1.59.1 - @typescript-eslint/eslint-plugin: 5.30.6 → 5.62.0 - typescript: 5.6.3 → 5.9.3 - solid-js/babel-preset-solid: 1.9.2/.11 → 1.9.12 - turbo: 2.5.8 → 2.9.6 - lerna: 7.3.0 → 7.4.2 - vitest: 2.1.4 → 2.1.9 Adds `as const` assertion in HtmlElementTreeNode to satisfy the stricter @typescript-eslint prefer-as-const rule that ships with 5.62.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
Applies patch and minor version bumps across
apps/andpackages/to clear the bulk of thepnpm auditfindings and pick up compatible upstream fixes.pnpm audit --prodcount dropped from 95 → 18 (all 3 critical + 39 high items addressed for direct deps; remaining findings are in test-apps' intentionally-pinnednext@14/next@16and deep transitives ofreact-syntax-highlighter/postcss-loader).Notable security bumps
next:^15→^15.5.15— clears RCE in React flight, multiple DoS, SSRF in server actions, cache poisoning, auth bypasswebpack:^5.96.1→^5.106.2— clearsbuildHttpallowedUris advisoriesposthog-js:^1.23.0→^1.369.3— clears XSS advisorypostcss-loader,fs-extra,html-webpack-plugin,terser-webpack-plugin,css-loader,sass-loader,source-map-loader,style-loader,ts-loader,webpack-dev-server,babel-loader,web-ext— transitive audit hits clearedOther notable updates (within existing caret ranges)
@babel/*:7.26.x→7.28–7.29.x@floating-ui/dom:1.6.12→1.7.6@playwright/test:1.50.0→1.59.1@typescript-eslint/eslint-plugin:5.30.6→5.62.0typescript:5.6.3→5.9.3solid-js/babel-preset-solid:1.9.11/1.9.2→1.9.12turbo:2.5.8→2.9.6lerna:7.3.0→7.4.2vitest:2.1.4→2.1.9Code change
packages/runtime/src/adapters/HtmlElementTreeNode.ts:type: "element" = "element"→type = "element" as const;to satisfy the stricterprefer-as-construle shipped with@typescript-eslint/eslint-plugin5.62.Out of scope
test-apps/package.json files were intentionally left untouched — those apps pin specific React/Next versions for e2e coverage.@typescript-eslint8) deferred — each touches config or formatting and should land separately.Test plan
pnpm build— all 7 workspace builds passpnpm test— all tests pass (@locator/runtime vitest, @locator/babel-jsx jest)pnpm ts— typecheck cleanpnpm lint— lint clean (0 errors)pnpm format:check— prettier clean🤖 Generated with Claude Code