Skip to content

Commit dd25b81

Browse files
Update labkeyVersion to 25.3.10
2 parents 2def415 + 4875509 commit dd25b81

2 files changed

Lines changed: 37 additions & 2 deletions

File tree

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ buildFromSource=true
4444

4545
# The default version for LabKey artifacts that are built or that we depend on.
4646
# override in an individual module's gradle.properties file as necessary
47-
labkeyVersion=25.3.9
47+
labkeyVersion=25.3.10
4848
labkeyClientApiVersion=6.2.0
4949

5050
# Version numbers for the various binary artifacts that are included when
@@ -291,7 +291,7 @@ snappyJavaVersion=1.1.10.7
291291
# Also, update apacheTomcatVersion above to match Spring Boot's Tomcat dependency version
292292
springBootVersion=3.4.5
293293
# This usually matches the Spring Framework version dictated by springBootVersion
294-
springVersion=6.2.6
294+
springVersion=6.2.7
295295

296296
sqliteJdbcVersion=3.49.1.0
297297

server/embedded/build.gradle

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,46 @@ dependencies {
4343
}
4444

4545
// Allows forcing a Spring Framework version that differs from spring-boot's version (e.g., to address CVEs)
46+
implementation('org.springframework:spring-aop') {
47+
version {
48+
strictly "${springVersion}"
49+
}
50+
}
51+
implementation('org.springframework:spring-beans') {
52+
version {
53+
strictly "${springVersion}"
54+
}
55+
}
56+
implementation('org.springframework:spring-context') {
57+
version {
58+
strictly "${springVersion}"
59+
}
60+
}
61+
implementation('org.springframework:spring-core') {
62+
version {
63+
strictly "${springVersion}"
64+
}
65+
}
66+
implementation('org.springframework:spring-expression') {
67+
version {
68+
strictly "${springVersion}"
69+
}
70+
}
71+
implementation('org.springframework:spring-jcl') {
72+
version {
73+
strictly "${springVersion}"
74+
}
75+
}
4676
implementation('org.springframework:spring-web') {
4777
version {
4878
strictly "${springVersion}"
4979
}
5080
}
81+
implementation('org.springframework:spring-webmvc') {
82+
version {
83+
strictly "${springVersion}"
84+
}
85+
}
5186

5287
// Allows forcing a Tomcat version that differs from spring-boot's version (e.g., to address CVEs or regressions,
5388
// or to test a Tomcat release candidate)

0 commit comments

Comments
 (0)