Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions apps/api-extractor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@rushstack/terminal": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"lodash": "~4.17.15",
"minimatch": "~3.0.3",
"minimatch": "10.0.3",
"resolve": "~1.22.1",
"semver": "~7.5.4",
"source-map": "~0.6.1",
Expand All @@ -54,7 +54,6 @@
"devDependencies": {
"@rushstack/heft": "0.74.1",
"@types/lodash": "4.14.116",
"@types/minimatch": "3.0.5",
"@types/resolve": "1.20.2",
"@types/semver": "7.5.0",
"decoupled-local-node-rig": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion apps/api-extractor/src/collector/Collector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
PackageName
} from '@rushstack/node-core-library';
import { ReleaseTag } from '@microsoft/api-extractor-model';
import minimatch from 'minimatch';
import { minimatch } from 'minimatch';

import { ExtractorMessageId } from '../api/ExtractorMessageId';

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@microsoft/api-extractor",
"comment": "Upgrades the minimatch dependency from ~3.0.3 to 10.0.3 across the entire Rush monorepo to address a Regular Expression Denial of Service (ReDoS) vulnerability in the underlying brace-expansion dependency.",
"type": "patch"
}
],
"packageName": "@microsoft/api-extractor"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@rushstack/package-extractor",
"comment": "Upgrades the minimatch dependency from ~3.0.3 to 10.0.3 across the entire Rush monorepo to address a Regular Expression Denial of Service (ReDoS) vulnerability in the underlying brace-expansion dependency.",
"type": "patch"
}
],
"packageName": "@rushstack/package-extractor"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@rushstack/webpack4-localization-plugin",
"comment": "Upgrades the minimatch dependency from ~3.0.3 to 10.0.3 across the entire Rush monorepo to address a Regular Expression Denial of Service (ReDoS) vulnerability in the underlying brace-expansion dependency.",
"type": "patch"
}
],
"packageName": "@rushstack/webpack4-localization-plugin"
}
21 changes: 16 additions & 5 deletions common/config/subspaces/build-tests-subspace/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush.
{
"pnpmShrinkwrapHash": "4bb96db65ecb99ad3935e230ad704251a845e134",
"pnpmShrinkwrapHash": "05243847c45ec913c83e0cb41b32a208240813a6",
"preferredVersionsHash": "550b4cee0bef4e97db6c6aad726df5149d20e7d9",
"packageJsonInjectedDependenciesHash": "6988efb70a621746799ba9bb6049c05da8fa6752"
"packageJsonInjectedDependenciesHash": "d69fad25449ad576c80f4959f15d9b087083c579"
}
5 changes: 4 additions & 1 deletion common/config/subspaces/default/common-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
"typescript": "~5.8.2",

// This should be the ESLint version that's used to build most of the projects in the repo.
"eslint": "~9.25.1"
"eslint": "~9.25.1",

// Updated minimatch and its types to latest major version to resolve ReDoS vulnerability
"minimatch": "10.0.3"
},

/**
Expand Down
Loading