Skip to content

Commit 01a2cb5

Browse files
committed
3.5.0.CR1 announcement: Apply suggestions
Signed-off-by: Chris Cranford <chris@hibernate.org>
1 parent 998b860 commit 01a2cb5

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

_posts/2026-03-26-debezium-3-5-cr1-released.adoc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,23 @@ But as we begin to look at moving Debezium Server to be based on the Debezium Qu
6262
With Debezium 3.5, we have introduced a new compatibility layer that allows running Debezium source connectors that are not natively implemented in the extension framework.
6363
This provides a solid foundation not only for Debezium Server, but to running any Debezium source connector within Quarkus, as long as using non-native builds is acceptable (https://github.com/debezium/dbz/issues/1612[dbz#1612]).
6464

65+
For example, in a Quarkus application to use the Debezium Informix connector, which currently does not have a native build option, you would add the following dependencies:
66+
67+
[source,xml]
68+
----
69+
<!-- add the Debezium Quarkus Engine -->
70+
<dependency>
71+
<groupId>io.debezium</groupId>
72+
<artifactId>debezium-quarkus-engine</artifactId>
73+
</dependency>
74+
75+
<!-- add the Debezium-ready Connector for your datasource -->
76+
<dependency>
77+
<groupId>io.debezium</groupId>
78+
<artifactId>debezium-connector-informix</artifactId>
79+
</dependency>
80+
----
81+
6582
==== Automate Cache Invalidation with Hibernate
6683

6784
A second-level cache, aka (L2C), and search indexes can boost an application's performance, but the information in these data stores can quickly become stale when changes are made to the data outside the scope of Hibernate ORM.
@@ -158,6 +175,7 @@ https://github.com/Binayak490-cyber[Binayak Das],
158175
https://github.com/Naros[Chris Cranford],
159176
https://github.com/div-dev123[Divyansh Agrawal],
160177
https://github.com/d1vyanshu-kumar[Divyanshu Kumar],
178+
https://github.com/kmos[Giovanni Panice],
161179
https://github.com/jpechane[Jiri Pechanec],
162180
https://github.com/kartikangiras[Kartik Angiras],
163181
https://github.com/nrkljo[Lars M. Johansson],

0 commit comments

Comments
 (0)