diff --git a/build-tools-internal/version.properties b/build-tools-internal/version.properties index a76bc9154b5ee..242b7e33d0c2f 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 6d22402fb3f6d..4fd3ee12302a8 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -1312,9 +1312,9 @@ - - - + + + diff --git a/x-pack/plugin/core/build.gradle b/x-pack/plugin/core/build.gradle index 621edf2a08099..cc763a96365d0 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 dfa0669d3f212..4e1e92d6a1ec0 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}"