Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ allprojects {
force "org.bouncycastle:bcprov-jdk18on:${bouncycastleVersion}"
// force consistency in docker and connectors and saml
force "org.bouncycastle:bcpkix-jdk18on:${bouncycastleVersion}"
// docker dependency: force to mitigate CVEs in 4.1.46
// docker dependency: force to mitigate CVEs
force "io.netty:netty-resolver:${nettyVersion}"
force "io.netty:netty-resolver-dns:${nettyVersion}"
force "io.netty:netty-handler:${nettyVersion}"
Expand Down
12 changes: 12 additions & 0 deletions dependencyCheckSuppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,16 @@
<packageUrl regex="true">^pkg:maven/com\.google\.code\.gson/gson@.*$</packageUrl>
<vulnerabilityName>CVE-2025-53864</vulnerabilityName>
</suppress>

<!--
Rhino 1.7R3 is getting flagged with a potential DoS issue when toFixed() is called on very small floating point numbers.
Upgrading to a fixed version is not trivial. See https://github.com/LabKey/internal-issues/issues/724 for details.
-->
<suppress>
<notes><![CDATA[
file name: rhino-1.7R3.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.mozilla/rhino@.*$</packageUrl>
<vulnerabilityName>CVE-2025-66453</vulnerabilityName>
</suppress>
</suppressions>
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ buildFromSource=true

# The default version for LabKey artifacts that are built or that we depend on.
# override in an individual module's gradle.properties file as necessary
labkeyVersion=25.7.18
labkeyVersion=25.7.19
labkeyClientApiVersion=6.3.0

# Version numbers for the various binary artifacts that are included when
Expand Down Expand Up @@ -135,7 +135,7 @@ commonsLangVersion=2.6
commonsLoggingVersion=1.3.5
commonsMath3Version=3.6.1
commonsPoolVersion=1.6
commonsTextVersion=1.13.1
commonsTextVersion=1.15.0
commonsValidatorVersion=1.9.0
commonsVfs2Version=2.10.0

Expand Down Expand Up @@ -238,7 +238,7 @@ jxlVersion=2.6.3

kaptchaVersion=2.3

log4j2Version=2.24.3
log4j2Version=2.25.3

lombokVersion=1.18.38

Expand All @@ -247,7 +247,7 @@ luceneVersion=9.12.2
mssqlJdbcVersion=13.2.1.jre11

# force for docker
nettyVersion=4.2.5.Final
nettyVersion=4.2.9.Final

objenesisVersion=1.0

Expand Down
Loading