diff --git a/build-tools-internal/version.properties b/build-tools-internal/version.properties index a723169c0a697..14acb95ed9b9a 100644 --- a/build-tools-internal/version.properties +++ b/build-tools-internal/version.properties @@ -19,6 +19,7 @@ commons_lang3 = 3.9 google_oauth_client = 1.34.1 awsv2sdk = 2.31.78 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 66ff416f4dfae..116721c29993b 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -1369,9 +1369,9 @@ - - - + + + diff --git a/x-pack/plugin/core/build.gradle b/x-pack/plugin/core/build.gradle index 7b37cfef0e715..bdbd769af2a94 100644 --- a/x-pack/plugin/core/build.gradle +++ b/x-pack/plugin/core/build.gradle @@ -76,7 +76,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 8de0bbd29014f..46e667cfc372d 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}"