diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ad55c2d77..3025ed0a4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Bumps `org.owasp.dependencycheck` from 8.4.2 to 9.0.1 - Bumps `com.diffplug.spotless` from 6.22.0 to 6.23.0 - Bumps `org.apache.httpcomponents.core5:httpcore5-h2` from 5.2.3 to 5.2.4 +- Bumps `org.apache.httpcomponents.client5:httpclient5` from 5.2.1 to 5.2.3 This section is for maintaining a changelog for all breaking changes for the client that cannot be released in the 2.x line. All other non-breaking changes should be added to [Unreleased 2.x] section. diff --git a/java-client/build.gradle.kts b/java-client/build.gradle.kts index 01475b7666..96b3f1e5a3 100644 --- a/java-client/build.gradle.kts +++ b/java-client/build.gradle.kts @@ -159,7 +159,7 @@ dependencies { compileOnly("org.opensearch.client", "opensearch-rest-client", opensearchVersion) testImplementation("org.opensearch.test", "framework", opensearchVersion) - api("org.apache.httpcomponents.client5:httpclient5:5.2.1") { + api("org.apache.httpcomponents.client5:httpclient5:5.2.3") { exclude(group = "org.apache.httpcomponents.core5") } api("org.apache.httpcomponents.core5:httpcore5:5.2.3")