Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build-tools-internal/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 @@ -1187,9 +1187,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 @@ -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")

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