Skip to content
1 change: 1 addition & 0 deletions build-tools-internal/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog/138053.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 138053
summary: Upgrade UnboundID LDAP SDK to 7.0.3
area: Security
type: upgrade
issues: []
6 changes: 3 additions & 3 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1369,9 +1369,9 @@
<sha256 value="6eb0f1cecc687655f8d9c167073f4c2eda4805040d03f982d4d127a141bde375" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="com.unboundid" name="unboundid-ldapsdk" version="6.0.3">
<artifact name="unboundid-ldapsdk-6.0.3.jar">
<sha256 value="a635f130b482d8b02cc317632de762518d6bfedfecbd6972d1029124aaaf89d8" origin="Generated by Gradle"/>
<component group="com.unboundid" name="unboundid-ldapsdk" version="7.0.3">
<artifact name="unboundid-ldapsdk-7.0.3.jar">
<sha256 value="7f1b9141f2c955d3a03b3f5da2c450bd616826e921a87fc19264a3f22b35e2fb" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="com.vaadin.external.google" name="android-json" version="0.0.20131108.vaadin1">
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugin/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugin/security/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down