-
Notifications
You must be signed in to change notification settings - Fork 57
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
Upgrade KubernetesClient dependency #358
Upgrade KubernetesClient dependency #358
Conversation
Hi, this commit is important for me. Have you some ideas when it could be approved ? |
Hey @xiaomi7732, sorry to mention you directly, but do you think you could help us with this? |
@@ -18,7 +18,7 @@ | |||
</PropertyGroup> | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="KubernetesClient" Version="[10.0.16, 11.0.0)" /> | |||
<PackageReference Include="KubernetesClient" Version="12.1.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.
This bumps up the lowest version supported.
If I understand correct, the version needs to be uncapped to unblock the bumping up of the dependencies. How about changing it from [10.0.16, 11.0.0)
to just 10.0.16
? That would be equivalent to [10.0.16, )
.
Considerations:
- Backward compatibility for existing code relying on the lower version;
- Potentially breaking changes introduced in the K8sClient (major version upgrades);
If that would work for you, could you please update the PR?
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.
I upgraded the reference as per your request. Thank you!
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.
Cool!
e591cce
to
38f457f
Compare
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.
LGTM. Thanks for the contribution!
Fixes #357.