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 to Apicurio Registry 2.0.1.Final #17976

Merged
merged 1 commit into from
Jun 17, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
<log4j2-jboss-logmanager.version>1.0.0.Final</log4j2-jboss-logmanager.version>
<log4j-jboss-logmanager.version>1.2.0.Final</log4j-jboss-logmanager.version>
<avro.version>1.10.2</avro.version>
<apicurio-registry.version>2.0.0.Final</apicurio-registry.version>
<apicurio-registry.version>2.0.1.Final</apicurio-registry.version>
<jacoco.version>0.8.7</jacoco.version>
<testcontainers.version>1.15.3</testcontainers.version>
<docker-java.version>3.2.8</docker-java.version> <!-- must be the version Testcontainers use -->
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/apicurio-registry-dev-services.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Note that the Kafka channels in SmallRye Reactive messaging are automatically co
== Configuring the image

Dev Services for Apicurio Registry uses `apicurio/apicurio-registry-mem` images.
You can select any version from https://hub.docker.com/r/apicurio/apicurio-registry-mem:
You can select any 2.x version from https://hub.docker.com/r/apicurio/apicurio-registry-mem:

[source, properties]
----
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/kafka-schema-registry-avro.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ services:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181

schema-registry:
image: apicurio/apicurio-registry-mem:2.0.0.Final
image: apicurio/apicurio-registry-mem:2.0.1.Final
ports:
- 8081:8080
depends_on:
Expand Down Expand Up @@ -572,7 +572,7 @@ public class KafkaAndSchemaRegistryTestResource implements QuarkusTestResourceLi
@Override
public Map<String, String> start() {
kafka.start();
registry = new GenericContainer<>("apicurio/apicurio-registry-mem:2.0.0.Final")
registry = new GenericContainer<>("apicurio/apicurio-registry-mem:2.0.1.Final")
.withExposedPorts(8080)
.withEnv("QUARKUS_PROFILE", "prod");
registry.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ApicurioRegistryDevServicesBuildTimeConfig {
* The Apicurio Registry image to use.
* Note that only Apicurio Registry 2.x images are supported.
*/
@ConfigItem(defaultValue = "apicurio/apicurio-registry-mem:2.0.0.Final")
@ConfigItem(defaultValue = "apicurio/apicurio-registry-mem:2.0.1.Final")
public String imageName;

}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-serdes-avro-serde</artifactId>
<version>2.0.0.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/kafka-avro-apicurio2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-->

<properties>
<apicurio.version>2.0.0.Final</apicurio.version>
<apicurio.version>2.0.1.Final</apicurio.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static String getApicurioSchemaRegistryUrl() {
@Override
public Map<String, String> start() {
kafka.start();
registry = new GenericContainer<>("apicurio/apicurio-registry-mem:2.0.0.Final")
registry = new GenericContainer<>("apicurio/apicurio-registry-mem:2.0.1.Final")
.withExposedPorts(8080)
.withEnv("QUARKUS_PROFILE", "prod");
registry.start();
Expand Down