chore(deps): fix npm audit vulnerabilities - #372
Merged
Conversation
swlodarski-sumoheavy
approved these changes
Aug 19, 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.
Problem
The
auditCI job runsnpm audit --audit-level=highand is currently failingon
8.0.x. Because the vulnerability lives in the base branch dependency tree,it fails on every open pull request, blocking all pending dependabot updates.
Cause
js-yaml4.3.0 is affected by GHSA-5p4m-2wfm-xmqj (CVE-2026-59870) — quadraticCPU consumption in
!!omapresolution — rated high.It is a dev-only transitive dependency, pulled in through
@eslint/eslintrc,so the published SDK runtime is not affected.
Fix
Lockfile-only change generated with
npm audit fix: bumps the transitivejs-yamlfrom 4.3.0 to 4.3.1. No changes topackage.jsonor source code.Verification
npm audit --audit-level=highnow exits 0npm run lintpassesnpm run buildpassesThe remaining
ellipticadvisory (GHSA-848j-6mx2-7j84) is low severity withno fix available upstream, and does not trip the
--audit-level=highgate.