Adarshvk98 opened a new pull request, #3993: URL: https://github.com/apache/incubator-kie-tools/pull/3993
## What `js-yaml` 3.15.0, 3.15.1 and 4.3.0 are affected by CVE-2026-84375 (High, 7.5). `maxTotalMergeKeys` does not count empty mapping sources, so a small YAML document can cause prolonged CPU consumption. Fixed in 3.15.2 and 4.3.2. ## Change Four override entries become two: ```diff - "@istanbuljs/load-nyc-config>js-yaml": "^3.15.0" - "json-refs>js-yaml": "^3.15.0" - "xmlbuilder2>js-yaml": "^3.15.0" - "js-yaml@^4": "^4.2.0" + "js-yaml@^3": "^3.15.2" + "js-yaml@^4": "^4.3.2" ``` The three parent-scoped entries left `@yarnpkg/parsers` uncovered, and it was resolving 3.15.1. A version-scoped key covers every 3.x consumer, including any added later. Replacing them matters, because pnpm applies the most specific key: keeping the old entries alongside a version-scoped one would have held those three parents at 3.15.0 and 3.15.1. `[email protected]` needs the override permanently: it declares exactly `3.14.0` and can never resolve higher on its own. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
