Bump vespa-feed-client + pin BouncyCastle 1.85, opennlp 1.9.5 (19 CVEs incl. 2 critical) - #1992
Open
odosk wants to merge 1 commit into
Open
Bump vespa-feed-client + pin BouncyCastle 1.85, opennlp 1.9.5 (19 CVEs incl. 2 critical)#1992odosk wants to merge 1 commit into
odosk wants to merge 1 commit into
Conversation
…incl. 2 critical) - album-recommendation-random-data + book-search + client-java: pin bcprov-jdk18on 1.85.2 / bcpkix-jdk18on 1.85 / bcutil-jdk18on 1.85 over vespa-feed-client's transitive BC 1.84 (CVE-2026-8763 critical + 16 HIGH) - client-java: vespa-feed-client 8.677.31 -> 8.738.17 (jackson-core 2.21.1 -> 2.22.1, fixes CVE-2026-68494) + jetty/ayza/guava bumps - book-search: vespa_version 8.695.32 -> 8.738.17, junit 5.14.4, jackson-databind 2.22.2, logback 1.6.3 - going-crazy: opennlp-tools 1.9.4 -> 1.9.5 (fixes CVE-2026-42027 critical; 40682/42440 need opennlp 2.5.9 - out of scope, see VESPANG-3395) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
hmusum
approved these changes
Aug 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes 19 Mend HIGH/CRITICAL CVEs (VESPANG-3395) across four example apps. The main cause:
vespa-feed-client— including the latest 8.738.17 — still depends on Bouncy Castle 1.84, which carries 17 CVEs fixed in BC 1.85 (incl. critical CVE-2026-8763). Since no released platform version ships BC 1.85 yet, this PR pins BC explicitly in the three consumer manifests.Changed Files
examples/operations/monitoring/album-recommendation-monitoring/album-recommendation-random-data/pom.xmldependencyManagementpins:bcprov-jdk18on 1.85.2,bcpkix-jdk18on 1.85,bcutil-jdk18on 1.85(override vespa-feed-client's BC 1.84)examples/clients/client-java/app/build.gradle.kts+gradle/libs.versions.tomlvespa-feed-client: 8.677.31 → 8.738.17 — brings jackson-core 2.21.1 → 2.22.1, which fixes CVE-2026-68494examples/book-search/pom.xml(sibling fix — same vulnerable tree, not yet flagged by Mend)vespa_version8.695.32 → 8.738.17, BCdependencyManagementpins as aboveexamples/lucene-linguistics/going-crazy/pom.xmldependencyManagementpin:opennlp-tools 1.9.5(patch release in the same 1.9 line as the 1.9.4 pulled by lucene-analysis-opennlp) — fixes critical CVE-2026-42027CVEs Addressed
Verified against GitHub Advisory Database / OSV.dev:
Implementation Notes
vespa-feed-clientin all three consumer manifests; even the newest release (8.738.17,bouncycastle.vespa.version=1.84) is affected, hence explicit pins/constraints rather than a feed-client bump alone. The pins should be dropped once the platform moves to BC ≥ 1.85.book-searchjunit went to 5.14.4 (latest 5.x) rather than junit 6: its tests are testcontainers/docker-gated and can't be exercised in this environment, so a major-version test-framework jump would be unverifiable.Verification
mvn package dependency:list(album-recommendation-random-data, containerised): BUILD SUCCESS; resolves bcprov 1.85.2, bcpkix 1.85, bcutil 1.85, jackson-core 2.22.1mvn package dependency:list(going-crazy, containerised): BUILD SUCCESS; resolves opennlp-tools 1.9.5./gradlew compileJava+app:dependencies(client-java, containerised): BC 1.84 → 1.85/1.85.2 constraint applied, jackson-core 2.22.1, feed-client 8.738.17mvn compile(book-search, containerised): BUILD SUCCESS. Pre-existing on master: book-searchtestscope cannot resolve —ai.vespa:vespa-testcontainers:1.0.0is not on Maven Central (fails identically on unmodified master); not addressed here.test / htmlproofer, which fails on an unrelated dead external link (https://www.shad4fasthtml.com/) and fails identically on master (pre-existing, not introduced here).