Skip to content

Commit

Permalink
Prepare for 0.22.3 release
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Patierno <[email protected]>

Fixed old OpenTelemetry dependency in Vert.x (#678)

Signed-off-by: Paolo Patierno <[email protected]>

Signed-off-by: Paolo Patierno <[email protected]>
ppatierno committed Oct 27, 2022

Verified

This commit was signed with the committer’s verified signature.
erikmd Erik Martin-Dorel
1 parent b58597a commit e01c993
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@

<groupId>io.strimzi</groupId>
<artifactId>kafka-bridge</artifactId>
<version>0.22.2</version>
<version>0.22.3</version>

<name>Strimzi Kafka Bridge</name>
<description>Bridge that allows HTTP- or AMQP-based clients to interact with Apache Kafka clusters.</description>
@@ -304,6 +304,16 @@
<artifactId>opentelemetry-exporter-jaeger</artifactId>
<version>${opentelemetry.version}</version>
</dependency>
<!--
Not used directly in the bridge code but brought by Vert.x which is using a pretty old version (1.13.0)
OpenTelemetry also introduced a breaking change in the API (SdkTraceBuilder.build() method) starting from 1.17.0
Need to override to a more recent version
-->
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-sdk-trace</artifactId>
<version>${opentelemetry.version}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-opentelemetry</artifactId>
@@ -560,6 +570,8 @@
<!-- Required to be able to use the Test Container on different platforms such as Arm based Macs -->
<!-- Can be removed once the Strimzi Test Container is using new Test Container version (should be in Strimzi Test Container 0.103) -->
<ignoredUnusedDeclaredDependency>net.java.dev.jna:jna:jar:5.8.0</ignoredUnusedDeclaredDependency>
<!-- OpenTelemetry - Vert.x using old version and OpenTelemetry breaking API compatibility. See dependency declaration for details. -->
<ignoredUnusedDeclaredDependency>io.opentelemetry:opentelemetry-sdk-trace</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</execution>
2 changes: 1 addition & 1 deletion release.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.22.2
0.22.3

0 comments on commit e01c993

Please sign in to comment.