-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(deps-dev): bump @google-cloud/bigquery from 5.5.0 to 8.1.1 #19034
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: develop
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 |
|---|---|---|
|
|
@@ -53,7 +53,7 @@ | |
| "@sentry/node-core": "10.38.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@google-cloud/bigquery": "^5.3.0", | ||
| "@google-cloud/bigquery": "^8.1.1", | ||
| "@google-cloud/common": "^3.4.1", | ||
sentry[bot] marked this conversation as resolved.
Show resolved
Hide resolved
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. Bug: The Suggested FixUpdate the Prompt for AI Agent |
||
| "@types/express": "^5.0.6", | ||
| "@types/node": "^18.19.1", | ||
|
|
||
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.
Version mismatch between
@google-cloud/commondevDependency and transitive dependencyMedium Severity
The
@google-cloud/bigquery@^8.1.1update requires@google-cloud/common@^6.0.0as a transitive dependency, but the devDependency still specifies@google-cloud/common@^3.4.1. This causes both v3.6.0 and v6.0.0 to be installed. The integration code ingoogle-cloud-http.tsdoesrequire('@google-cloud/common')which resolves to v3.x, whileBigQueryinternally uses v6.x. Since these are separate module instances, the test patches the wrongService.prototype.requestand may not accurately test the integration with BigQuery v8.Additional Locations (1)
packages/google-cloud-serverless/package.json#L55-L56