Skip to content

Commit eabb7fa

Browse files
Update dependency org.pitest:pitest to v1.20.1 (#1328)
* Update dependency org.pitest:pitest to v1.20.1 * update build.gradle to resolve CVE‑2025‑48976 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FeliTam <[email protected]>
1 parent 2001964 commit eabb7fa

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def versions = [
172172
lombok : '1.18.38',
173173
mapStruct : '1.3.0.Final',
174174
pact_version : '4.1.34',
175-
piTest : '1.20.0',
175+
piTest : '1.20.1',
176176
probateCommonsVersion : '2.2.2',
177177
restAssured : '5.5.5',
178178
serenity : '4.2.34',
@@ -322,6 +322,17 @@ dependencies {
322322
}
323323
}
324324

325+
configurations.configureEach {
326+
resolutionStrategy {
327+
eachDependency { details ->
328+
// Resolve CVE‑2025‑48976
329+
if (details.requested.name == 'commons-fileupload') {
330+
details.useVersion '1.6.0'
331+
}
332+
}
333+
}
334+
}
335+
325336
tasks.register('fortifyScan', JavaExec) {
326337
mainClass.set("uk.gov.hmcts.fortifyclient.FortifyClientMainApp")
327338
classpath += sourceSets.test.runtimeClasspath

config/owasp/suppressions.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
-->
1919
<cve>CVE-2025-48734</cve>
2020
</suppress>
21-
<suppress until = "2025-10-15">
22-
<cve>CVE-2025-48976</cve>
23-
</suppress>
2421
<suppress until = "2025-10-15">
2522
<!--
2623
Apache Commons Lang ClassUtils.getClass(...) can throw an Error

0 commit comments

Comments
 (0)