Skip to content

Commit 2c72350

Browse files
committed
Upgrade to Kafka 2.5.0
Closes gh-21032
1 parent 1eca70a commit 2c72350

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/kafka/KafkaPropertiesTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ class KafkaPropertiesTests {
3333

3434
@Test
3535
void isolationLevelEnumConsistentWithKafkaVersion() {
36-
org.apache.kafka.common.requests.IsolationLevel[] original = org.apache.kafka.common.requests.IsolationLevel
37-
.values();
36+
org.apache.kafka.common.IsolationLevel[] original = org.apache.kafka.common.IsolationLevel.values();
3837
assertThat(original).extracting("name").containsExactly(IsolationLevel.READ_UNCOMMITTED.name(),
3938
IsolationLevel.READ_COMMITTED.name());
4039
assertThat(original).extracting("id").containsExactly(IsolationLevel.READ_UNCOMMITTED.id(),

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ bom {
967967
]
968968
}
969969
}
970-
library("Kafka", "2.4.1") {
970+
library("Kafka", "2.5.0") {
971971
group("org.apache.kafka") {
972972
modules = [
973973
"connect-api",

0 commit comments

Comments
 (0)