Skip to content

Commit 025310e

Browse files
committed
Upgrade dependencies; prepare for release
1 parent edc88cb commit 025310e

File tree

2 files changed

+13
-19
lines changed

2 files changed

+13
-19
lines changed

build.gradle

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,28 +35,28 @@ ext {
3535
assertjVersion = '3.27.4'
3636
assertkVersion = '0.28.1'
3737
awaitilityVersion = '4.3.0'
38-
commonsHttpClientVersion = '5.4.4'
38+
commonsHttpClientVersion = '5.5'
3939
commonsPoolVersion = '2.12.1'
4040
hamcrestVersion = '3.0'
4141
hibernateValidationVersion = '9.0.1.Final'
42-
jacksonBomVersion = '2.19.2'
42+
jacksonBomVersion = '2.20.0-rc1'
4343
jackson3Version = '3.0.0-rc8'
4444
jaywayJsonPathVersion = '2.9.0'
4545
junitJupiterVersion = '5.13.4'
4646
kotlinCoroutinesVersion = '1.10.2'
47-
log4jVersion = '2.24.3'
47+
log4jVersion = '2.25.1'
4848
logbackVersion = '1.5.18'
4949
micrometerDocsVersion = '1.0.4'
50-
micrometerVersion = '1.16.0-SNAPSHOT'
51-
micrometerTracingVersion = '1.6.0-SNAPSHOT'
52-
mockitoVersion = '5.18.0'
53-
rabbitmqAmqpClientVersion = '0.6.0'
54-
rabbitmqStreamVersion = '1.1.0'
55-
rabbitmqVersion = '5.25.0'
56-
reactorVersion = '2025.0.0-SNAPSHOT'
57-
springDataVersion = '2025.1.0-SNAPSHOT'
50+
micrometerVersion = '1.16.0-M2'
51+
micrometerTracingVersion = '1.6.0-M2'
52+
mockitoVersion = '5.19.0'
53+
rabbitmqAmqpClientVersion = '0.7.0'
54+
rabbitmqStreamVersion = '1.2.0'
55+
rabbitmqVersion = '5.26.0'
56+
reactorVersion = '2025.0.0-M6'
57+
springDataVersion = '2025.1.0-M5'
5858
springRetryVersion = '2.0.12'
59-
springVersion = '7.0.0-SNAPSHOT'
59+
springVersion = '7.0.0-M8'
6060
testcontainersVersion = '1.21.3'
6161

6262
javaProjects = subprojects - project(':spring-amqp-bom')

spring-rabbit/src/test/java/org/springframework/amqp/rabbit/connection/SSLConnectionTests.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@
4444
import static org.mockito.Mockito.spy;
4545
import static org.mockito.Mockito.verify;
4646

47-
48-
4947
/**
5048
* @author Gary Russell
5149
* @author Heath Abelson
@@ -63,7 +61,7 @@ public void test() throws Exception {
6361
RabbitConnectionFactoryBean fb = new RabbitConnectionFactoryBean();
6462
fb.setUseSSL(true);
6563
fb.setSslPropertiesLocation(new ClassPathResource("ssl.properties"));
66-
fb.setClientProperties(Collections.<String, Object>singletonMap("foo", "bar"));
64+
fb.setClientProperties(Collections.singletonMap("foo", "bar"));
6765
fb.afterPropertiesSet();
6866
ConnectionFactory cf = fb.getObject();
6967
assertThat(cf.getClientProperties().get("foo")).isEqualTo("bar");
@@ -138,8 +136,6 @@ public void testSkipServerCertificateWithAlgorithm() throws Exception {
138136
verify(rabbitCf).useSslProtocol("TLSv1.1");
139137
}
140138

141-
142-
143139
@Test
144140
public void testUseSslProtocolWithProtocolShouldNotBeCalled() throws Exception {
145141
RabbitConnectionFactoryBean fb = new RabbitConnectionFactoryBean();
@@ -152,7 +148,6 @@ public void testUseSslProtocolWithProtocolShouldNotBeCalled() throws Exception {
152148
verify(rabbitCf, never()).useSslProtocol("TLSv1.2");
153149
}
154150

155-
156151
@Test
157152
public void testKSTS() throws Exception {
158153
RabbitConnectionFactoryBean fb = new RabbitConnectionFactoryBean();
@@ -261,5 +256,4 @@ public void credentials() {
261256
.isSameAs(service);
262257
}
263258

264-
265259
}

0 commit comments

Comments
 (0)