-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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(bigquery): fix minimum version of dependency #10016
fix(bigquery): fix minimum version of dependency #10016
Conversation
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.
Looks good, just have a question about a version bump that might not be immediately necessary (but will probably soon be).
"google-cloud-core >= 1.0.3, < 2.0dev", | ||
"google-resumable-media >= 0.3.1, != 0.4.0, < 0.6.0dev", | ||
"google-cloud-core >= 1.1.0, < 2.0dev", | ||
"google-resumable-media >= 0.5.0, < 0.6dev", |
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.
Why is this version bump needed? Looking at the release notes, there have been no bugfixes since 0.3.1
, and the only new feature is raw download classes (released in 0.5.0
).
Not that I'm opposing it, just asking as a sanity check.
(besides, google-resumable-media
version pin will have to be updated soon anyway when #10005 is implemented)
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.
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.
In theory not much has changed. And you could likely only take core (I am pretty sure given a recent change that is required). The grouping of resumable-media was to keep storage and bigquery in sync with what they require to hopefully avoid odd incompatibilities.
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.
Since it appears safe, let's keep the resumable-media version bump then for the reason Chris mentioned.
Fixes #10008