-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(TWILIGHT-2544): add pnpm lock file and update package manager to pnpm #510
base: master
Are you sure you want to change the base?
Conversation
/autoupdate |
|
peerDependencies: | ||
postcss: ^8.1.0 | ||
|
||
[email protected]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue reported by the Trivy linter is related to a vulnerability in the axios
library, specifically version 0.27.2
, which has been flagged for exposing confidential data stored in cookies (CVE-2023-45857). The recommended action is to update the axios
library to version 0.28.0
or later to mitigate this security risk.
To fix the issue, you should update the version of axios
from 0.23.0
to 0.28.0
in your dependency list. Here is the code suggestion to make that change:
axios@0.23.0: | |
axios@0.28.0: |
This comment was generated by an experimental AI tool.
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
What is the current behavior? (You can also link to an open issue here)
package-lock.json
, which can lead to larger disk usage and slower installs due to duplication of dependencies across projects.What is the new behavior? (You can also link to the ticket here)
pnpm-lock.yaml
file ensures consistent dependency versions and faster installs.Does this PR introduce a breaking change?
Screenshots (If appropriate)