Skip to content

Commit c96f511

Browse files
committed
Upgrade versions; prepare for release
1 parent 3bc00a9 commit c96f511

File tree

5 files changed

+14
-26
lines changed

5 files changed

+14
-26
lines changed

Diff for: build.gradle

+9-9
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,21 @@ ext {
5959
awaitilityVersion = '4.1.1'
6060
googleJsr305Version = '3.0.2'
6161
hamcrestVersion = '2.2'
62-
hibernateValidationVersion = '6.2.0.Final'
63-
jacksonBomVersion = '2.13.1'
62+
hibernateValidationVersion = '6.2.3.Final'
63+
jacksonBomVersion = '2.13.2'
6464
jaywayJsonPathVersion = '2.6.0'
6565
junit4Version = '4.13.2'
6666
junitJupiterVersion = '5.8.2'
6767
kafkaVersion = '3.1.0'
68-
log4jVersion = '2.17.1'
69-
micrometerVersion = '2.0.0-SNAPSHOT'
68+
log4jVersion = '2.17.2'
69+
micrometerVersion = '2.0.0-M3'
7070
mockitoVersion = '4.0.0'
71-
reactorVersion = '2020.0.16'
71+
reactorVersion = '2020.0.17'
7272
scalaVersion = '2.13'
73-
springBootVersion = '2.6.3' // docs module
74-
springDataVersion = '2022.0.0-M1'
75-
springRetryVersion = '1.3.1'
76-
springVersion = '6.0.0-M2'
73+
springBootVersion = '2.6.4' // docs module
74+
springDataVersion = '2022.0.0-M2'
75+
springRetryVersion = '1.3.2'
76+
springVersion = '6.0.0-M3'
7777
zookeeperVersion = '3.6.3'
7878

7979
idPrefix = 'kafka'

Diff for: gradle/wrapper/gradle-wrapper.jar

285 Bytes
Binary file not shown.

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionSha256Sum=9afb3ca688fc12c761a0e9e4321e4d24e977a4a8916c8a768b1fe05ddb4d6b66

Diff for: spring-kafka-docs/src/main/asciidoc/appendix.adoc

+1-12
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,12 @@
44
When using Spring for Apache Kafka in a Spring Boot application, the Apache Kafka dependency versions are determined by Spring Boot's dependency management.
55
If you wish to use a different version of `kafka-clients` or `kafka-streams`, and use the embedded kafka broker for testing, you need to override their version used by Spring Boot dependency management and add two `test` artifacts for Apache Kafka.
66

7-
IMPORTANT: There is a bug in Apache Kafka 3.0.0 when running the embedded broker on Microsoft Windows https://issues.apache.org/jira/browse/KAFKA-13391[KAFKA-13391].
8-
To use the embedded broker on Windows, you need to downgrade the Apache Kafka version to 2.8.1 until 3.0.1 is available.
9-
When using 2.8.1, you also need to exclude `zookeeper` dependency from `spring-kafka-test`.
10-
117
====
128
[source, xml, subs="+attributes", role="primary"]
139
.Maven
1410
----
1511
<properties>
16-
<kafka.version>2.8.1</kafka.version>
12+
<kafka.version>3.1.0</kafka.version>
1713
</properties>
1814
1915
<dependency>
@@ -30,13 +26,6 @@ When using 2.8.1, you also need to exclude `zookeeper` dependency from `spring-k
3026
<groupId>org.springframework.kafka</groupId>
3127
<artifactId>spring-kafka-test</artifactId>
3228
<scope>test</scope>
33-
<!-- needed if downgrading to Apache Kafka 2.8.1 -->
34-
<exclusions>
35-
<exclusion>
36-
<groupId>org.apache.zookeeper</groupId>
37-
<artifactId>zookeeper</artifactId>
38-
</exclusion>
39-
</exclusions>
4029
</dependency>
4130
4231
<dependency>

Diff for: spring-kafka-docs/src/main/asciidoc/quick-tour.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ However, the quickest way to get started is to use https://start.spring.io[start
5151

5252
This quick tour works with the following versions:
5353

54-
* Apache Kafka Clients 3.0.0
55-
* Spring Framework 5.3.x
56-
* Minimum Java version: 8
54+
* Apache Kafka Clients 3.1.x
55+
* Spring Framework 6.0.x
56+
* Minimum Java version: 17
5757

5858
==== Getting Started
5959

0 commit comments

Comments
 (0)