Skip to main content

8 posts tagged with "release"

View All Tags

oracdc v2.15.5

· One min read
A2 Solutions
oracdc Development Team

oracdc v2.15.5 is now available.

What's New

  1. Java 25: oracdc now requires Java 25, completing the planned JVM transition (#161). The --enable-preview flag is no longer needed — only --enable-native-access=ALL-UNNAMED must be passed to the JVM.

  2. New parameter a2.archive.log.dest.id: Selects which archived redo log destination (V$ARCHIVE_DEST.DEST_ID) to read logs from when multiple archive log destinations are configured (#160). Default — 1.

  3. Bug fix: Fixed the binding of UPDATE operations materialized as a delete row piece (OP:11.3) plus overwrite row piece (OP:11.6) pair when parsing redo records (#157).

  4. Dependency updates: HikariCP 7.1.0, PostgreSQL JDBC 42.7.13, Log4j 2.26.1, Agrona 2.5.0.

oracdc v2.15.4

· One min read
A2 Solutions
oracdc Development Team

oracdc v2.15.4 is now available.

What's New

  1. Security fix: The Docker image no longer bundles the vulnerable jline jars, resolving GHSA-47qp-hqvx-6r3f and GHSA-2r2c-cx56-8933.

  2. Kubernetes config provider: The Docker image now bundles the Strimzi Kafka Kubernetes Config Provider, allowing connector configurations to reference values stored in Kubernetes Secrets and ConfigMaps.

  3. Docker image enhancements: The bundled Apicurio Registry AVRO converter has been updated to 3.3.0.

oracdc v2.15.3

· One min read
A2 Solutions
oracdc Development Team

oracdc v2.15.3 is now available.

What's New

  1. Logging migrated to Log4j 2: SLF4J has been replaced with Apache Log4j 2 across all Java sources (#150).

  2. Performance: Faster redo block checksum calculation — unnecessary memcpy calls and allocations have been removed from the hot path (#151).

  3. Bug fix: Fixed a NullPointerException in the TaskBase class (#152).

  4. Docker image enhancements: The Docker image now bundles an Apicurio Registry AVRO converter alongside the Confluent Schema Registry converters.

oracdc v2.15.2

· One min read
A2 Solutions
oracdc Development Team

oracdc v2.15.2 is now available.

What's New

  1. License change: oracdc is now licensed under the GNU Affero General Public License v3.0 (AGPL-3.0) (#148). License headers across the Java sources, the LICENSE file, and the Contributor License Agreement have been updated accordingly.

  2. Bug fix: Resolved an ArrayIndexOutOfBoundsException triggered by incorrect (Conditional rather than Always) supplemental logging, where NULL columns were missed during redo parsing (#147).

oracdc v2.15.1

· One min read
A2 Solutions
oracdc Development Team

oracdc v2.15.1 is now available.

What's New

  1. Bug fix: Resolved an issue with handling of guard columns in LabWare LIMS schemas (#144).

  2. Internal refactoring: Pseudo-columns processing has been reorganized into a dedicated Kafka-runtime module (KafkaPseudoColumnsProcessor), simplifying the core CDC engine and improving separation between the Oracle parsing layer and the Kafka Connect runtime.

oracdc v2.15.0

· 2 min read
A2 Solutions
oracdc Development Team

oracdc v2.15.0 is now available.

What's New

  1. Off-heap memory upgrade: Chronicle Queue has been replaced with Java's native Foreign Function and Memory API (MemorySegment) for off-heap transaction storage. This removes the Chronicle Queue dependency and leverages JDK-native memory management.

  2. Apache Mina SSH support: New SSH provider option (a2.ssh.provider=mina) using Apache Mina SSHD, alongside existing SSHJ and Maverick Synergy providers. Includes a new a2.ssh.connect.timeout parameter (default 30,000 ms).

  3. Performance improvements: Agrona-based optimizations for internal data structures.

  4. Bug fixes:

    • Fixed incorrect type cast in SinkTable for tables with LOB columns (#142)
    • Fixed OraCdcRedoMinerConnector error with Oracle 11g large UPDATE statements (#139)
    • Fixed wrong Date generation for test redo records
    • Corrected "the message value must only be a record schema" error
    • Dockerfile fix for CVE-2025-67030

oracdc v2.14.4

· One min read
A2 Solutions
oracdc Development Team

oracdc v2.14.4 is now available.

What's New

  1. Code cleanup: split code into core CDC code and code specific to the Kafka Connect ecosystem.

  2. Bug fixes