What changed, and why it matters
This commit simply updates the JUnit testing library from version 5.10.0 to 5.14.1. JUnit is only used for running tests during development and is not included in the actual wallet application that users run. There is no indication of any security issue being fixed or introduced.
No security action required. Treat as routine dependency maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff changes two Gradle dependency lines for JUnit Jupiter API and engine from 5.10.0 to 5.14.1. These are test-scoped dependencies (testImplementation/testRuntimeOnly) and do not affect production runtime artifacts. No security-relevant code changes are present in the diff, and no vendor or external references describe this as a security fix.
Changed components
build.gradle test dependenciesJUnit Jupiter test frameworkInspect captured patch +4 / −4
diff --git a/build.gradle b/build.gradle
index e3c2b97..ee37118 100644
--- a/build.gradle
+++ b/build.gradle
@@ -110,8 +110,8 @@ dependencies {
implementation('com.sparrowwallet:toucan:0.9.0')
implementation('com.jcraft:jzlib:1.1.3')
implementation('io.github.doblon8:jzbar:0.3.0')
- testImplementation('org.junit.jupiter:junit-jupiter-api:5.10.0')
- testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.10.0')
+ testImplementation('org.junit.jupiter:junit-jupiter-api:5.14.1')
+ testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.14.1')
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.