Audit dependency bump.#695
Merged
Merged
Conversation
d051856 to
618ea46
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR addresses dependency security findings by removing an unused jest-junit dev dependency (which pulled in a flagged uuid version) and forcing exceljs to resolve uuid to a patched major version via npm overrides.
Changes:
- Add an npm
overridesrule to forceexceljsto useuuid@^11.1.1. - Remove
jest-junitfrom dev dependencies and stop configuring Jest to use it as a reporter. - Refresh
package-lock.jsonto reflect the updated dependency graph (including removal ofjest-junitand updated transitive resolutions).
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Adds overrides for exceljs -> uuid and removes jest-junit from devDependencies. |
| package-lock.json | Updates the lockfile to remove jest-junit and reflect the new resolved uuid/transitive versions. |
| jest.config.ts | Removes the jest-junit reporter configuration. |
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.
Removes
jest-junit(wasn't actually used) as it has an audit-flaggeduuidversion.Overrides the same flagged
uuidversion inexceljswith a patched version. This is a forced override asexceljsis no-longer maintained, but it should be fine as the api for uuid v4 has not changed.