Skip to content

Commit aaa55b1

Browse files
committed
Upgrade versions; prepare for release
1 parent e9a2168 commit aaa55b1

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,32 +39,32 @@ ext {
3939
modifiedFiles =
4040
files(grgit.status().unstaged.modified).filter{ f -> f.name.endsWith('.java') || f.name.endsWith('.kt') }
4141

42-
assertjVersion = '3.19.0'
42+
assertjVersion = '3.20.2'
4343
assertkVersion = '0.24'
44-
awaitilityVersion = '4.0.3'
44+
awaitilityVersion = '4.1.0'
4545
commonsCompressVersion = '1.20'
4646
commonsHttpClientVersion = '4.5.13'
47-
commonsPoolVersion = '2.9.0'
47+
commonsPoolVersion = '2.10.0'
4848
googleJsr305Version = '3.0.2'
4949
hamcrestVersion = '2.2'
5050
hibernateValidationVersion = '6.2.0.Final'
51-
jacksonBomVersion = '2.12.3'
51+
jacksonBomVersion = '2.12.4'
5252
jaywayJsonPathVersion = '2.4.0'
5353
junit4Version = '4.13.2'
5454
junitJupiterVersion = '5.7.2'
5555
log4jVersion = '2.14.1'
5656
logbackVersion = '1.2.3'
5757
lz4Version = '1.8.0'
58-
micrometerVersion = '1.7.0'
59-
mockitoVersion = '3.9.0'
58+
micrometerVersion = '1.8.0-M1'
59+
mockitoVersion = '3.11.2'
6060
protonJVersion = '0.33.8'
6161
rabbitmqStreamVersion = '0.1.0'
62-
rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '5.12.0'
63-
rabbitmqHttpClientVersion = '3.9.0.RELEASE'
64-
reactorVersion = '2020.0.7'
62+
rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '5.13.0'
63+
rabbitmqHttpClientVersion = '3.11.0'
64+
reactorVersion = '2020.0.9'
6565
snappyVersion = '1.1.8.4'
66-
springDataCommonsVersion = '2.5.1'
67-
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.3.8'
66+
springDataCommonsVersion = '2.6.0-M1'
67+
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.3.9'
6868
springRetryVersion = '1.3.1'
6969
zstdJniVersion = '1.5.0-2'
7070
}

spring-rabbit/src/test/java/org/springframework/amqp/rabbit/listener/MessageListenerContainerRetryIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ void testStatefulRetryWithNoMessageIds() throws Exception {
166166
// The container should have shutdown, so there are now no active consumers
167167
assertThatThrownBy(() -> doTestStatefulRetry(messageCount, txSize, failFrequency, concurrentConsumers))
168168
.hasMessageContaining("expected: 1")
169-
.hasMessageContaining("but was : 0");
169+
.hasMessageContaining("but was: 0");
170170
}
171171

172172
@RepeatedTest(10)

0 commit comments

Comments
 (0)