Skip to content

Commit

Permalink
Upgrade debezium to 3.1.0.Alpha2 (#508)
Browse files Browse the repository at this point in the history
* Upgrade debezium to 3.1.0.Alpha2

* Upgrade debezium to 3.1.0.Alpha2
  • Loading branch information
ismailsimsek authored Feb 21, 2025
1 parent 81e7962 commit cac1ca3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.apache.iceberg.data.GenericRecord;
import org.apache.iceberg.types.Types;
import org.apache.kafka.common.serialization.Serde;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

import java.io.IOException;
Expand All @@ -32,7 +33,6 @@
import static org.junit.jupiter.api.Assertions.*;

@QuarkusTest
@QuarkusTestResource(value = CatalogJdbc.class, restrictToAnnotatedClass = true)
class RecordConverterTest {
final String serdeWithSchema = Files.readString(Path.of("src/test/resources/json/serde-with-schema.json"));
final String unwrapWithSchema = Files.readString(Path.of("src/test/resources/json/unwrap-with-schema.json"));
Expand All @@ -41,6 +41,10 @@ class RecordConverterTest {
final String unwrapWithArraySchema2 = Files.readString(Path.of("src/test/resources/json/serde-with-array2.json"));

RecordConverterTest() throws IOException {
}

@BeforeAll
static void setup() {
// configure and set
IcebergChangeConsumer.valSerde.configure(Collections.emptyMap(), false);
IcebergChangeConsumer.valDeserializer = IcebergChangeConsumer.valSerde.deserializer();
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>io.debezium</groupId>
<artifactId>debezium-build-parent</artifactId>
<version>3.0.7.Final</version>
<version>3.1.0.Alpha2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>debezium-server-iceberg</artifactId>
Expand All @@ -25,7 +25,7 @@
<!-- NOTE: this is overriden by release process using CLI argument -->
<revision>0.0.1-SNAPSHOT</revision>
<!-- Debezium Version! NOTE: keep same as parent.version above! -->
<version.debezium>3.0.7.Final</version.debezium>
<version.debezium>3.1.0.Alpha2</version.debezium>

<!-- Instruct the build to use only UTF-8 encoding for source code -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit cac1ca3

Please sign in to comment.