fix(deps): resolve audit check failures#661
Open
ywnaing wants to merge 1 commit into
Open
Conversation
|
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
Resolve the current audit check failures in
ml-api-adapterusing local dependency overrides.Changes
fast-xml-parserfrom5.5.7to5.7.0uuidto14.0.0Why
This clears the current failing audit paths:
openapi-sampler > fast-xml-parsernyc > istanbul-lib-processinfo > uuidFor
uuid, this change is based on GitHub advisoryGHSA-w5hq-g745-h8pq, which marks all versions below14.0.0as affected and14.0.0as the patched version. That means a smaller version bump would not satisfy the advisory.uuidwas added as an override instead of updatingnycbecauseml-api-adapteris already on the latest publishednycrelease, and the latest publishedistanbul-lib-processinfostill depends onuuid@^8.3.2. There is currently no newer upstreamnycrelease available that resolves this advisory path.Verification
npm installnpm testnpm run audit:checkNotes
fast-xml-parseris in the application dependency tree through OpenAPI toolinguuidis pulled in transitively through coverage tooling:nyc -> istanbul-lib-processinfouuidoverride is a cross-major override, but the full unit suite passed with it in placeReferences