-
Notifications
You must be signed in to change notification settings - Fork 51
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(deps): update to Quarkus 3.17.0.CR1 #1001
Conversation
Signed-off-by: Chris Laprun <[email protected]>
7600bf8
to
61583b0
Compare
@@ -79,6 +79,7 @@ | |||
<properties> | |||
<skipTests>true</skipTests> | |||
<skipITs>true</skipITs> | |||
<skipDocs>true</skipDocs> |
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.
@metacosm you reintroduced this :)
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.
Weird… Thanks for pointing it out!
@@ -121,7 +121,7 @@ CSVMetadataBuildItem gatherCSVMetadata(KubernetesConfig kubernetesConfig, | |||
|
|||
// note that version, replaces, etc. should probably be settable at the reconciler level | |||
// use version specified in bundle configuration, if not use the one extracted from the project, if available | |||
final var version = kubernetesConfig.getVersion().orElse(appConfiguration.getVersion()); | |||
final var version = kubernetesConfig.version().orElse(appConfiguration.getVersion()); |
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.
Not sure if we should push different changes in the update commits.
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 is a required change. The code won't compile without this change. This is the reason why the ecosystem checks have been failing for so long as well.
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.
OK, thanks for the explanation.
Signed-off-by: Chris Laprun [email protected]