-
Notifications
You must be signed in to change notification settings - Fork 119
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
chore: pin dependency versions in rust model #2048
Conversation
Signed-off-by: Derek Wang <[email protected]>
Signed-off-by: Derek Wang <[email protected]>
@@ -8,7 +8,7 @@ edition = "2021" | |||
|
|||
[dependencies] | |||
k8s-openapi = { version = "0.22.0", features = ["v1_29"] } | |||
kube = "0.93.1" | |||
kube = "0.94.0" |
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.
any particular reason? we have marked k8s-openapi
to include only v1_29 feature. we might have to pin k8s-openapi
too.
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.
To avoid unexpected new release caused build problem
Thanks! |
Signed-off-by: Derek Wang <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2048 +/- ##
==========================================
- Coverage 63.22% 63.11% -0.11%
==========================================
Files 319 319
Lines 29171 29171
==========================================
- Hits 18442 18411 -31
- Misses 9717 9748 +31
Partials 1012 1012 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Derek Wang <[email protected]>
Signed-off-by: Derek Wang <[email protected]>
Fix the
codegen
problem.