Skip to content

Commit e298f77

Browse files
committed
Upgrade dependencies; prepare for release
1 parent cc56b7a commit e298f77

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
id 'io.spring.nohttp' version '0.0.11' apply false
2020
id 'org.ajoberstar.grgit' version '4.1.1'
2121
id 'io.spring.dependency-management' version '1.1.0'
22-
id 'com.jfrog.artifactory' version '4.31.4' apply false
22+
id 'com.jfrog.artifactory' version '4.31.9' apply false
2323
id 'org.jetbrains.dokka' version '1.7.20'
2424
id 'org.asciidoctor.jvm.pdf' version '3.3.2'
2525
id 'org.asciidoctor.jvm.gems' version '3.3.2'
@@ -65,15 +65,15 @@ ext {
6565
ftpServerVersion = '1.2.0'
6666
graalvmVersion = '22.3.1'
6767
greenmailVersion = '2.0.0'
68-
groovyVersion = '4.0.10'
68+
groovyVersion = '4.0.11'
6969
hamcrestVersion = '2.2'
70-
hazelcastVersion = '5.2.2'
70+
hazelcastVersion = '5.2.3'
7171
hibernateVersion = '6.1.7.Final'
7272
hsqldbVersion = '2.7.1'
7373
h2Version = '2.1.214'
7474
jacksonVersion = '2.14.2'
7575
jaxbVersion = '4.0.2'
76-
jcifsVersion = '2.1.33'
76+
jcifsVersion = '2.1.34'
7777
jeroMqVersion = '0.5.3'
7878
jmsApiVersion = '3.1.0'
7979
jpaApiVersion = '3.1.0'
@@ -84,31 +84,31 @@ ext {
8484
jythonVersion = '2.7.3'
8585
kotlinCoroutinesVersion = '1.6.4'
8686
kryoVersion = '5.3.0'
87-
lettuceVersion = '6.2.3.RELEASE'
87+
lettuceVersion = '6.2.4.RELEASE'
8888
log4jVersion = '2.19.0'
8989
mailVersion = '1.0.0'
90-
micrometerTracingVersion = '1.0.3'
91-
micrometerVersion = '1.10.5'
90+
micrometerTracingVersion = '1.0.4'
91+
micrometerVersion = '1.10.6'
9292
mockitoVersion = '4.10.0'
9393
mongoDriverVersion = '4.8.2'
9494
mysqlVersion = '8.0.32'
9595
pahoMqttClientVersion = '1.2.5'
9696
postgresVersion = '42.5.4'
9797
r2dbch2Version = '1.0.0.RELEASE'
98-
reactorVersion = '2022.0.5'
98+
reactorVersion = '2022.0.6'
9999
resilience4jVersion = '1.7.1'
100100
romeToolsVersion = '1.18.0'
101101
rsocketVersion = '1.1.3'
102102
servletApiVersion = '6.0.0'
103103
smackVersion = '4.4.6'
104-
springAmqpVersion = '3.0.3'
105-
springDataVersion = '2022.0.4'
104+
springAmqpVersion = '3.0.4'
105+
springDataVersion = '2022.0.5'
106106
springGraphqlVersion = '1.1.3'
107-
springKafkaVersion = '3.0.5'
107+
springKafkaVersion = '3.0.6'
108108
springRetryVersion = '2.0.1'
109-
springSecurityVersion = '6.0.2'
110-
springVersion = '6.0.7'
111-
springWsVersion = '4.0.1'
109+
springSecurityVersion = '6.0.3'
110+
springVersion = '6.0.8'
111+
springWsVersion = '4.0.3'
112112
testcontainersVersion = '1.17.6'
113113
tomcatVersion = '10.1.7'
114114
xmlUnitVersion = '2.9.1'

gradle/docs.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ext {
2-
backendVersion = '0.0.3'
3-
micrometerDocsVersion='1.0.0'
2+
backendVersion = '0.0.5'
3+
micrometerDocsVersion='1.0.1'
44
}
55

66
configurations {

spring-integration-smb/src/test/java/org/springframework/integration/smb/session/SmbSessionFactoryWithCIFSContextTests.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import jcifs.CIFSContext;
2424
import jcifs.context.SingletonContext;
2525
import jcifs.smb.SmbFile;
26+
import jcifs.util.Strings;
2627
import org.junit.After;
2728
import org.junit.Before;
2829
import org.junit.Test;
@@ -88,10 +89,9 @@ public void testHandleFileContentMessage() {
8889

8990
class TestSmbSessionFactory extends SmbSessionFactory {
9091

91-
private CIFSContext context;
92+
private final CIFSContext context;
9293

9394
protected TestSmbSessionFactory(CIFSContext _context) {
94-
assertThat(_context).as("CIFSContext object is null.").isNotNull();
9595
this.context = _context;
9696
}
9797

@@ -101,7 +101,8 @@ protected SmbSession createSession() {
101101
// test for a constructor with a CIFSContext
102102
SmbShare smbShare = new SmbShare(this, this.context);
103103
assertThat(smbShare).as("SmbShare object is null.").isNotNull();
104-
assertThat(smbShare.toString()).isEqualTo("smb://sambaguest:sambaguest@localhost:445/smb-share/");
104+
assertThat(smbShare.toString())
105+
.isEqualTo(Strings.maskSecretValue("smb://sambaguest:sambaguest@localhost:445/smb-share/"));
105106

106107
// the rest has been copied from SmbSendingMessageHandlerTests
107108
when(smbSession.remove(Mockito.anyString())).thenReturn(true);

0 commit comments

Comments
 (0)