Skip to content

Commit 1a60683

Browse files
committed
[release] Changelog for 3.5.0.Final
Signed-off-by: Jiri Pechanec <jiri.pechanec@centrum.cz>
1 parent 10c6684 commit 1a60683

File tree

5 files changed

+70
-4
lines changed

5 files changed

+70
-4
lines changed

_data/releases/3.3/series.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
summary: Version 3.3 release stream
22
version: "3.3"
33
overview: CockroachDB connector; Quarkus extension support for heartbeats, deserializers, custom converters and post-processors; Exactly-once delivery enabled for all connectors; Support for Oracle read-only replicas
4-
displayed: true
5-
hidden: false
4+
displayed: false
5+
hidden: true
66
tutorial: true
77
connectors:
88
- mysql

_data/releases/3.5/3.5.0.Final.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
date: 2026-03-31
2+
version: "3.5.0.Final"
3+
stable: true
4+
summary: Support for Informix JDBC driver 15; Connection validator for Infinispan and Qdrant
5+
# announcement_url:

playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ asciidoc:
5454
# A version prior to this in the version list will display the banner-development.hbs partial.
5555
# A version after this in the version list will display the banner-outdated.hbs partial.
5656
# This specific version will display the banner-current.hbs partial.
57-
page-version-current: '3.4'
57+
page-version-current: '3.5'
5858
# This specific version(if available) will display as devel
5959
page-version-devel: '3.5'
6060
# This attribute defines stable version url

playbook_author.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ asciidoc:
3636
# A version prior to this in the version list will display the banner-development.hbs partial.
3737
# A version after this in the version list will display the banner-outdated.hbs partial.
3838
# This specific version will display the banner-current.hbs partial.
39-
page-version-current: '3.4'
39+
page-version-current: '3.5'

releases/3.5/release-notes.asciidoc

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,67 @@ Release numbers follow http://semver.org[Semantic Versioning].
1515

1616
toc::[]
1717

18+
[[release-3.5.0-final]]
19+
== *Release 3.5.0.Final* _(March 31st 2026)_
20+
21+
See the https://github.com/orgs/debezium/projects/5/views/6?filterQuery=status%3AReleased+iteration%3A3.5.0.Final[complete list of issues].
22+
23+
=== Kafka compatibility
24+
25+
This release has been built against Kafka Connect 4.1.1 and has been tested with version 4.1.1 of the Kafka brokers.
26+
See the https://kafka.apache.org/documentation/#upgrade[Kafka documentation] for compatibility with other versions of Kafka brokers.
27+
28+
29+
=== Upgrading
30+
31+
Before upgrading any connector, be sure to check the backward-incompatible changes that have been made since the release you were using.
32+
33+
When you decide to upgrade one of these connectors to 3.5.0.Final from any earlier versions,
34+
first check the migration notes for the version you're using.
35+
Gracefully stop the running connector, remove the old plugin files, install the 3.5.0.Final plugin files, and restart the connector using the same configuration.
36+
Upon restart, the 3.5.0.Final connectors will continue where the previous connector left off.
37+
As one might expect, all change events previously written to Kafka by the old connector will not be modified.
38+
39+
If you are using our container images, then please do not forget to pull them fresh from https://quay.io/organization/debezium[Quay.io].
40+
41+
42+
=== Breaking changes
43+
44+
There are no breaking changes in this release.
45+
46+
47+
=== New features
48+
49+
* Support for Informix JDBC driver v15 https://github.com/debezium/dbz/issues/1622[debezium/dbz#1622]
50+
* Add connection validator for Infinispan [DBZ-9432] https://github.com/debezium/dbz/issues/1089[debezium/dbz#1089]
51+
* Claim Debezium Docs ownership in Context7 https://github.com/debezium/dbz/issues/1727[debezium/dbz#1727]
52+
53+
54+
=== Fixes
55+
56+
* A wrong connector class causes Debezium Server startup to loop infinitely [DBZ-8703] https://github.com/debezium/dbz/issues/1335[debezium/dbz#1335]
57+
* MicroTimestamp.java throws NullPointerException on JDK 25 when converting timestamp columns — same root cause as DBZ-9558 https://github.com/debezium/dbz/issues/1732[debezium/dbz#1732]
58+
* `quarkus-junit5-internal` is relocated to `quarkus-junit-internal` https://github.com/debezium/dbz/issues/1742[debezium/dbz#1742]
59+
* LogStreamingService passes null to consumer in doStream() https://github.com/debezium/dbz/issues/1747[debezium/dbz#1747]
60+
* GlobalExceptionMapper returns wrong misleading message for exceptions https://github.com/debezium/dbz/issues/1752[debezium/dbz#1752]
61+
* CockroachDB connector: Remove broken permission check, fix hardcoded values and changefeed detection https://github.com/debezium/dbz/issues/1765[debezium/dbz#1765]
62+
63+
64+
=== Other changes
65+
66+
* Ensure spaces are used for indentation in XML files (e.g. POMs) [DBZ-275] https://github.com/debezium/dbz/issues/102[debezium/dbz#102]
67+
* AI contribution guidelines https://github.com/debezium/dbz/issues/1684[debezium/dbz#1684]
68+
* Add JMH microbenchmarks for CockroachDB connector https://github.com/debezium/dbz/issues/1711[debezium/dbz#1711]
69+
* Clarify local kind setup and namespace-scoped example commands for debezium-platform https://github.com/debezium/dbz/issues/1730[debezium/dbz#1730]
70+
* Remove Scn.MAX constant from Scn class https://github.com/debezium/dbz/issues/1743[debezium/dbz#1743]
71+
* Add contributor name and alias https://github.com/debezium/dbz/issues/1744[debezium/dbz#1744]
72+
* Update KineticCafe/actions-dco to v2 https://github.com/debezium/dbz/issues/1746[debezium/dbz#1746]
73+
* Add connection validator for Qdrant Sink [DBZ-9441] https://github.com/debezium/dbz/issues/1098[debezium/dbz#1098]
74+
* Improve logging of LogMiner metrics & MISSING_SCN events https://github.com/debezium/dbz/issues/1762[debezium/dbz#1762]
75+
* SQS integration tests fail on CI due to LocalStack authentication requirements https://github.com/debezium/dbz/issues/1764[debezium/dbz#1764]
76+
77+
78+
1879
[[release-3.5.0-cr1]]
1980
== *Release 3.5.0.CR1* _(March 24th 2026)_
2081

0 commit comments

Comments
 (0)