Skip to content

Commit f819f4b

Browse files
committed
Upgrade to mongoDB 4.11.0
* Refine the `modifiedFiles` resolution
1 parent 7169215 commit f819f4b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Diff for: build.gradle

+8-4
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,13 @@ ext {
4545
linkScmConnection = 'scm:git:git://github.com/spring-projects/spring-integration.git'
4646
linkScmDevConnection = 'scm:git:ssh://[email protected]:spring-projects/spring-integration.git'
4747

48-
modifiedFiles = !isCI
49-
? files(grgit.status().unstaged.modified).filter { f -> f.name.endsWith('.java') || f.name.endsWith('.kt') }
50-
: files()
48+
modifiedFiles =
49+
files()
50+
.from {
51+
files(grgit.status().unstaged.modified)
52+
.filter { f -> f.name.endsWith('.java') || f.name.endsWith('.kt') }
53+
}
54+
modifiedFiles.finalizeValueOnRead()
5155

5256
apacheSshdVersion = '2.10.0'
5357
artemisVersion = '2.30.0'
@@ -92,7 +96,7 @@ ext {
9296
micrometerTracingVersion = '1.2.0-SNAPSHOT'
9397
micrometerVersion = '1.12.0-SNAPSHOT'
9498
mockitoVersion = '5.5.0'
95-
mongoDriverVersion = '4.10.2'
99+
mongoDriverVersion = '4.11.0'
96100
mysqlVersion = '8.0.33'
97101
oracleVersion = '23.3.0.23.09'
98102
pahoMqttClientVersion = '1.2.5'

0 commit comments

Comments
 (0)