-
Notifications
You must be signed in to change notification settings - Fork 3
[Snyk] Fix for 2 vulnerabilities #111
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,7 +41,7 @@ | |
| "camelcase": "^6.2.1", | ||
| "case-sensitive-paths-webpack-plugin": "^2.4.0", | ||
| "css-loader": "^6.5.1", | ||
| "css-minimizer-webpack-plugin": "^3.2.0", | ||
| "css-minimizer-webpack-plugin": "^8.0.0", | ||
| "dotenv": "^10.0.0", | ||
| "dotenv-expand": "^5.1.0", | ||
| "eslint": "^8.23.1", | ||
|
|
@@ -62,7 +62,7 @@ | |
| "fs-extra": "^10.0.0", | ||
| "html-webpack-plugin": "^5.5.0", | ||
| "identity-obj-proxy": "^3.0.0", | ||
| "jest": "^27.4.3", | ||
| "jest": "^28.0.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 jest upgraded to ^28 but babel-jest and jest-resolve left at ^27, causing version mismatch The PR upgrades Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
| "jest-resolve": "^27.4.2", | ||
| "jest-watch-typeahead": "^1.0.0", | ||
| "js-sha3": "^0.8.0", | ||
|
|
@@ -92,13 +92,13 @@ | |
| "source-map-loader": "^3.0.0", | ||
| "style-loader": "^3.3.1", | ||
| "tailwindcss": "^3.1.8", | ||
| "terser-webpack-plugin": "^5.2.5", | ||
| "terser-webpack-plugin": "^5.3.17", | ||
| "typescript": "^4.8.3", | ||
| "web-vitals": "^2.1.4", | ||
| "webpack": "^5.76.0", | ||
| "webpack-dev-server": "^4.6.0", | ||
| "webpack-manifest-plugin": "^4.0.2", | ||
| "workbox-webpack-plugin": "^6.4.1" | ||
| "workbox-webpack-plugin": "^7.1.0" | ||
| }, | ||
| "scripts": { | ||
| "start": "HTTPS=true node scripts/start.js", | ||
|
|
||
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.
Jest upgrade leaves companion packages at incompatible versions
High Severity
Upgrading
jestto^28.0.0while leavingbabel-jestat^27.4.2,jest-resolveat^27.4.2, and@types/jestat^27.5.2creates a major version mismatch. These packages are part of the Jest monorepo and must share the same major version. Additionally,jest-watch-typeaheadat^1.0.0only supports Jest 28 starting from version 1.1.0. This will cause test suite failures.Additional Locations (2)
package.json#L33-L34package.json#L65-L66