[lexical] Chore: Fix minimatch CVE-2026-26996 in example projects#8169
Open
thatmichael85 wants to merge 1 commit intomainfrom
Open
[lexical] Chore: Fix minimatch CVE-2026-26996 in example projects#8169thatmichael85 wants to merge 1 commit intomainfrom
thatmichael85 wants to merge 1 commit intomainfrom
Conversation
…8117) Fixes a HIGH severity vulnerability (GHSA-3ppc-4f35-3m26) where minimatch < 3.1.3 was present as a transitive dependency in three example projects. Rather than applying pnpm overrides as a workaround, each project was fixed by upgrading the dependency that introduced it: extension-vanilla-react-plugin-host & extension-vanilla-tailwind: - Migrated from rollup-plugin-copy (unmaintained since Sep 2023) to vite-plugin-static-copy, which uses tinyglobby instead of the deprecated glob/minimatch chain. extension-sveltekit-ssr-hydration: - Upgraded eslint ^9.22.0 -> ^10.0.0 (and related packages: @eslint/js, @eslint/compat, typescript-eslint, eslint-plugin-svelte) since ESLint 10 replaced minimatch@3.x with minimatch@^10.2.1.
|
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.
Description
minimatch< 3.1.3 (CVE-2026-26996, HIGH severity) was present as a transitive dependency in three example projects.extension-vanilla-react-plugin-host&extension-vanilla-tailwind: Migrated fromrollup-plugin-copy(unmaintained since Sep 2023) tovite-plugin-static-copy, which usestinyglobbyinstead of the deprecatedglob/minimatchchain.extension-sveltekit-ssr-hydration: Upgradedeslint^9.22.0→^10.0.0(and related packages:@eslint/js,@eslint/compat,typescript-eslint,eslint-plugin-svelte) since ESLint 10 replacedminimatch@3.xwithminimatch@^10.2.1.Test plan
Before
minimatch@3.1.2present in all three example lockfilesAfter
minimatch@3.1.2removed from all example lockfilesvite-plugin-static-copyPlayground