Skip to content
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

Update apicurio registry dependencies #32527

Merged
merged 1 commit into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@
<log4j2-api.version>2.20.0</log4j2-api.version>
<log4j-jboss-logmanager.version>1.3.0.Final</log4j-jboss-logmanager.version>
<avro.version>1.11.1</avro.version>
<apicurio-registry.version>2.3.1.Final</apicurio-registry.version>
<apicurio-common-rest-client.version>0.1.13.Final</apicurio-common-rest-client.version> <!-- must be the version Apicurio Registry uses -->
<apicurio-registry.version>2.4.2.Final</apicurio-registry.version>
<apicurio-common-rest-client.version>0.1.15.Final</apicurio-common-rest-client.version> <!-- must be the version Apicurio Registry uses -->
<testcontainers.version>1.17.6</testcontainers.version> <!-- Make sure to also update docker-java.version to match its needs -->
<docker-java.version>3.2.13</docker-java.version> <!-- must be the version Testcontainers use -->
<com.dajudge.kindcontainer>1.3.0</com.dajudge.kindcontainer>
Expand Down
6 changes: 3 additions & 3 deletions docs/src/main/asciidoc/kafka-schema-registry-avro.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ services:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181

schema-registry:
image: apicurio/apicurio-registry-mem:2.1.5.Final
image: apicurio/apicurio-registry-mem:2.4.2.Final
ports:
- 8081:8080
depends_on:
Expand Down Expand Up @@ -583,7 +583,7 @@ public class KafkaAndSchemaRegistryTestResource implements QuarkusTestResourceLi
@Override
public Map<String, String> start() {
kafka.start();
registry = new GenericContainer<>("apicurio/apicurio-registry-mem:2.1.5.Final")
registry = new GenericContainer<>("apicurio/apicurio-registry-mem:2.4.2.Final")
.withExposedPorts(8080)
.withEnv("QUARKUS_PROFILE", "prod");
registry.start();
Expand Down Expand Up @@ -622,7 +622,7 @@ For example, with Apicurio dev service if you set the image name to use version

[source,properties]
----
quarkus.apicurio-registry.devservices.image-name=quay.io/apicurio/apicurio-registry-mem:2.1.5.Final
quarkus.apicurio-registry.devservices.image-name=quay.io/apicurio/apicurio-registry-mem:2.4.2.Final
----

You need to make sure that `apicurio-registry-serdes-avro-serde` dependency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ApicurioRegistryDevServicesBuildTimeConfig {
* Note that only Apicurio Registry 2.x images are supported.
* Specifically, the image repository must end with {@code apicurio/apicurio-registry-mem}.
*/
@ConfigItem(defaultValue = "quay.io/apicurio/apicurio-registry-mem:2.2.3.Final")
@ConfigItem(defaultValue = "quay.io/apicurio/apicurio-registry-mem:2.4.2.Final")
public String imageName;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ quarkus.log.category.\"org.apache.zookeeper\".level=WARN
# enable health check
quarkus.kafka.health.enabled=true

quarkus.apicurio-registry.devservices.image-name=quay.io/apicurio/apicurio-registry-mem:2.2.5.Final
quarkus.apicurio-registry.devservices.image-name=quay.io/apicurio/apicurio-registry-mem:2.4.2.Final