chore: fix security vulnerabilities, updates husky hook#15
Merged
vigneshrajsb merged 2 commits intoGoodRxOSS:mainfrom Jun 27, 2025
Merged
chore: fix security vulnerabilities, updates husky hook#15vigneshrajsb merged 2 commits intoGoodRxOSS:mainfrom
vigneshrajsb merged 2 commits intoGoodRxOSS:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates various dependencies to patch security vulnerabilities, removes unused packages, and updates husky hooks to improve commit validation.
- Upgraded dependency versions and removed unused packages in package.json.
- Added a pnpm overrides block to enforce a specific @kubernetes/client-node version.
- Updated husky hooks by removing commitlint from pre-commit and adding a dedicated commit-msg hook.
Reviewed Changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Updated dependency versions, removed unused packages, and added a pnpm overrides block. |
| .husky/pre-commit | Removed commitlint invocation, leaving only lint-staged. |
| .husky/commit-msg | Added a new commit-msg hook to run commitlint. |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
Comments suppressed due to low confidence (2)
package.json:207
- [nitpick] Consider adding a comment to clarify the need for the pnpm overrides block, as it enforces the version of @kubernetes/client-node even though the dependency is already updated.
"pnpm": {
.husky/pre-commit:4
- [nitpick] The commitlint command was removed from the pre-commit hook; please confirm that running commitlint solely in the commit-msg hook is the intended behavior to avoid accidental omission of commit message validation.
npx lint-staged
vmelikyan
approved these changes
Jun 27, 2025
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.
What