Skip to content
Draft
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
4 changes: 2 additions & 2 deletions tpu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"test": "c8 mocha -p -j 2 test --timeout 1200000"
},
"dependencies": {
"@google-cloud/tpu": "^3.5.0",
"@google-cloud/tpu": "^4.0.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The upgrade of @google-cloud/tpu to ^4.0.0 requires Node.js >= 18.0.0. This is incompatible with the current "engines": { "node": ">=16.0.0" } specified on line 6. The engines.node field needs to be updated to >=18.0.0 to support this package version.

References
  1. When a dependency upgrade requires a higher Node.js version than currently specified in 'engines.node', consider upgrading the 'engines.node' requirement to a supported version (e.g., '>= 18' or '>= 20') instead of reverting the dependency version.

"sinon": "^19.0.2"
},
"devDependencies": {
"c8": "^10.0.0",
"c8": "^12.0.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Similarly, c8 version ^12.0.0 also requires Node.js >= 18.0.0. Consider upgrading the engines.node requirement to >=18.0.0 to support this and other upgraded dependencies.

References
  1. When a dependency upgrade requires a higher Node.js version than currently specified in 'engines.node', consider upgrading the 'engines.node' requirement to a supported version (e.g., '>= 18' or '>= 20') instead of reverting the dependency version.

"mocha": "^10.0.0"
}
}
Loading