Skip to content

Commit 87191e0

Browse files
committed
Upgrade Versions; Prepare for Milestone Release
1 parent 182c580 commit 87191e0

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,26 +55,26 @@ ext {
5555
files(grgit.status().unstaged.modified).filter{ f -> f.name.endsWith('.java') || f.name.endsWith('.kt') }
5656
}
5757

58-
assertjVersion = '3.22.0'
58+
assertjVersion = '3.23.1'
5959
awaitilityVersion = '4.2.0'
6060
googleJsr305Version = '3.0.2'
6161
hamcrestVersion = '2.2'
6262
hibernateValidationVersion = '7.0.4.Final'
63-
jacksonBomVersion = '2.13.3'
63+
jacksonBomVersion = '2.13.4'
6464
jaywayJsonPathVersion = '2.6.0'
6565
junit4Version = '4.13.2'
66-
junitJupiterVersion = '5.8.2'
66+
junitJupiterVersion = '5.9.0'
6767
kafkaVersion = '3.2.2'
68-
log4jVersion = '2.17.2'
69-
micrometerVersion = '1.10.0-SNAPSHOT'
70-
micrometerTracingVersion = '1.0.0-SNAPSHOT'
68+
log4jVersion = '2.18.0'
69+
micrometerVersion = '1.10.0-M6'
70+
micrometerTracingVersion = '1.0.0-M8'
7171
mockitoVersion = '4.5.1'
72-
reactorVersion = '2020.0.19'
72+
reactorVersion = '2022.0.0-M6'
7373
scalaVersion = '2.13'
74-
springBootVersion = '2.6.7' // docs module
75-
springDataVersion = '2022.0.0-M5'
76-
springRetryVersion = '1.3.3'
77-
springVersion = '6.0.0-SNAPSHOT'
74+
springBootVersion = '2.6.11' // docs module
75+
springDataVersion = '2022.0.0-M6'
76+
springRetryVersion = '2.0.0-M1'
77+
springVersion = '6.0.0-M6'
7878
zookeeperVersion = '3.6.3'
7979

8080
idPrefix = 'kafka'

spring-kafka/src/test/java/org/springframework/kafka/listener/adapter/KafkaBackoffAwareMessageListenerAdapterTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class KafkaBackoffAwareMessageListenerAdapterTests {
8181
@Mock
8282
private KafkaConsumerBackoffManager kafkaConsumerBackoffManager;
8383

84-
private KafkaConsumerBackoffManager.Context context = mock(KafkaConsumerBackoffManager.Context.class);
84+
private final KafkaConsumerBackoffManager.Context context = mock(KafkaConsumerBackoffManager.Context.class);
8585

8686
private final Clock clock = Clock.fixed(Instant.EPOCH, ZoneId.systemDefault());
8787

@@ -166,7 +166,7 @@ void shouldWrapExceptionInTimestampedException() {
166166

167167
// when
168168
assertThatThrownBy(() -> backoffAwareMessageListenerAdapter.onMessage(data))
169-
.isExactlyInstanceOf(TimestampedException.class).getCause().isEqualTo(thrownException);
169+
.isExactlyInstanceOf(TimestampedException.class).cause().isEqualTo(thrownException);
170170

171171
// then
172172
then(kafkaConsumerBackoffManager).should(times(1))

0 commit comments

Comments
 (0)