Bump minimatch override to 10.2.5 and remove redundant glob override (v0.23.2)#550
Merged
tarunramsinghani merged 2 commits intoJun 17, 2026
Merged
Conversation
- Update minimatch override from ^10.2.3 to ^10.2.5 to mitigate ReDoS CVEs (CVE-2026-26996/27903/27904), all fixed by the 10.2.x line. - Remove the archiver-utils glob override: archiver-utils declares glob ^10.0.0, which now resolves naturally to the patched glob@10.5.0 (CVE-2025-64756 fixed in 10.5.0), making the override redundant. Direct dependency glob@11.1.0 is also the patched release of CVE-2025-64756 with no known CVEs. - Bump package version 0.23.2 -> 0.24.0 (next minor). - Regenerate package-lock.json with npm 8.19.4 on Node 20 to match the release pipeline (lockfileVersion 2). Verified via npm ci, build, and 206 passing tests. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
dassayantan24
approved these changes
Jun 17, 2026
raujaiswal
approved these changes
Jun 17, 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.
Summary
Security maintenance for the
minimatch/globdependency overrides plus a minor version bump.Changes
minimatchoverride^10.2.3→^10.2.5— mitigates the recent ReDoS CVEs (CVE-2026-26996, CVE-2026-27903, CVE-2026-27904), all addressed in the 10.2.x line.minimatch@10.2.5has no known vulnerabilities.archiver-utils→globoverride (^10.5.0) — verified it is now redundant.archiver-utils@5.0.2declaresglob: ^10.0.0, which resolves naturally to the patchedglob@10.5.0(CVE-2025-64756 was fixed in 10.5.0). The direct dependencyglob@11.1.0is itself the patched release of CVE-2025-64756 and has no known CVEs. Confirmed empirically that, without the override,archiver-utilsstill resolves toglob@10.5.0andminimatchresolves to10.2.5throughout the tree.0.23.2→0.23.2(next minor).package-lock.jsonusing npm 8.19.4 on Node 20, matching the release pipeline (.azure-pipelines/release-pipeline.yml/common-steps.yml), preservinglockfileVersion: 2.Verification
npm cisucceeds against the regenerated lockfile (simulating the pipeline).npm run buildsucceeds.npm test— 206 passing.npm auditreports nogloborminimatchvulnerabilities.