Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: package.json to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-BRACEEXPANSION-9789073
  • Loading branch information
snyk-bot committed Jun 15, 2025
commit f641b22d27c32653f8e877cba4d10202a28fb046
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"API"
],
"devDependencies": {
"eslint": "8.18.0",
"eslint": "9.4.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Upgrading ESLint to a new major version (v8.x to v9.x) is a significant update. Major versions can introduce breaking changes that might affect your current linting setup. It's important to:

  • Verify that your ESLint configurations (e.g., .eslintrc.*, eslint.config.js) are compatible with ESLint v9.
  • Check if the versions of your ESLint plugins and configurations (like [email protected] and [email protected], which are also listed as devDependencies) are compatible with ESLint v9. They might also require updates for compatibility.
  • Thoroughly test the linting process across your codebase (e.g., by running your lint script or npx eslint .) to identify and address any new errors or unexpected behavior.
  • Consult the official ESLint v9 migration guide for detailed information on changes and recommended upgrade steps.

"eslint-config-google": "0.14.0",
"eslint-plugin-googleappsscript": "1.0.4"
},
Expand Down