Skip to content

Commit

Permalink
chore: update to latest Quarkus micro
Browse files Browse the repository at this point in the history
While I agree you should stay compatible with the minor requested by the
Operator SDK extension, I don't think it's a good idea to stay on the
micro as you are missing all the fixes we are pushing since at the
moment the version used here is 3.17.0.

So my advice is: update to the latest micro of the minor branch
requested for the Operator SDK.

This is important for #1076 as otherwise, you will have to wait a lot
longer to get the fix. Also it's good practice in general.
  • Loading branch information
gsmet committed Dec 24, 2024
1 parent e39603e commit ca4b84c
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,12 @@
<version.surefire-plugin>3.5.2</version.surefire-plugin>

<!--
Keep "version.quarkus-platform" in sync with the Quarkus Operator SDK extension Quarkus version:
https://github.com/quarkiverse/quarkus-operator-sdk/blob/main/pom.xml#L15 for the Quarkus
Keep "version.quarkus-platform" in sync with the Quarkus Operator SDK extension.
Use the latest micro of the minor branch requested by the Quarkus Operator SDK extension.
See https://github.com/quarkiverse/quarkus-operator-sdk/blob/main/pom.xml#L15 for the Quarkus
Operator SDK extension version defined below ("version.quarkus-operator-sdk").
-->
<version.quarkus-platform>3.17.0</version.quarkus-platform>
<version.quarkus-platform>3.17.5</version.quarkus-platform>
<version.quarkus-operator-sdk>6.9.1</version.quarkus-operator-sdk>

<version.cyclonedx>9.1.0-patch</version.cyclonedx>
Expand Down Expand Up @@ -92,6 +93,13 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${version.quarkus-platform}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.quarkiverse.operatorsdk</groupId>
<artifactId>quarkus-operator-sdk-bom</artifactId>
Expand Down

0 comments on commit ca4b84c

Please sign in to comment.