From a1b715d509e520fba3cdc827f710e6d3039f7770 Mon Sep 17 00:00:00 2001 From: Ankit Sethi Date: Wed, 19 Nov 2025 17:27:28 -0600 Subject: [PATCH] Upgrade UnboundID LDAP SDK to 7.0.3 (#138053) --- build-tools-internal/version.properties | 1 + docs/changelog/138053.yaml | 5 +++++ gradle/verification-metadata.xml | 6 +++--- x-pack/plugin/core/build.gradle | 2 +- x-pack/plugin/security/build.gradle | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 docs/changelog/138053.yaml diff --git a/build-tools-internal/version.properties b/build-tools-internal/version.properties index ded2250d7614e..a2c7e071d5b94 100644 --- a/build-tools-internal/version.properties +++ b/build-tools-internal/version.properties @@ -20,6 +20,7 @@ google_oauth_client = 1.34.1 awsv1sdk = 1.12.746 awsv2sdk = 2.28.13 reactive_streams = 1.0.4 +ldapsdk = 7.0.3 antlr4 = 4.13.1 # bouncy castle version for non-fips. fips jars use a different version diff --git a/docs/changelog/138053.yaml b/docs/changelog/138053.yaml new file mode 100644 index 0000000000000..23ba9bcacfbfb --- /dev/null +++ b/docs/changelog/138053.yaml @@ -0,0 +1,5 @@ +pr: 138053 +summary: Upgrade UnboundID LDAP SDK to 7.0.3 +area: Security +type: upgrade +issues: [] diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml index acd3588b2a8b8..82915cc27d76a 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -1187,9 +1187,9 @@ - - - + + + diff --git a/x-pack/plugin/core/build.gradle b/x-pack/plugin/core/build.gradle index e69f86b6c69e1..4e6a65e822d69 100644 --- a/x-pack/plugin/core/build.gradle +++ b/x-pack/plugin/core/build.gradle @@ -56,7 +56,7 @@ dependencies { testImplementation project(':modules:mapper-extras') // security deps - api 'com.unboundid:unboundid-ldapsdk:6.0.3' + api "com.unboundid:unboundid-ldapsdk:${versions.ldapsdk}" implementation project(":x-pack:plugin:core:template-resources") diff --git a/x-pack/plugin/security/build.gradle b/x-pack/plugin/security/build.gradle index 40335591c792b..4fb85959134af 100644 --- a/x-pack/plugin/security/build.gradle +++ b/x-pack/plugin/security/build.gradle @@ -40,7 +40,7 @@ dependencies { testImplementation(testArtifact(project(xpackModule('core')))) internalClusterTestImplementation(testArtifact(project(xpackModule('core')))) - api 'com.unboundid:unboundid-ldapsdk:6.0.3' + api "com.unboundid:unboundid-ldapsdk:${versions.ldapsdk}" // the following are all SAML dependencies - might as well download the whole internet api "org.opensaml:opensaml-core:${versions.opensaml}"