diff --git a/CHANGELOG.md b/CHANGELOG.md index 43c938e3c..9d4e97638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Dependencies - Bump `gradle-wrapper` from 9.31. to 9.4.0 ([#1930](https://github.com/opensearch-project/opensearch-java/pull/1930)) - Bump `commons-logging:commons-logging` from 1.3.5 to 1.3.6 ([#1922](https://github.com/opensearch-project/opensearch-java/pull/1922)) +- Bump `org.apache.httpcomponents.core5:httpcore5-h2` from 5.4.1 to 5.4.2 ([#1919](https://github.com/opensearch-project/opensearch-java/pull/1919)) ### Changed diff --git a/java-client/build.gradle.kts b/java-client/build.gradle.kts index 9f5548498..caf16b865 100644 --- a/java-client/build.gradle.kts +++ b/java-client/build.gradle.kts @@ -194,8 +194,8 @@ dependencies { api("org.apache.httpcomponents.client5:httpclient5:5.6") { exclude(group = "org.apache.httpcomponents.core5") } - api("org.apache.httpcomponents.core5:httpcore5:5.4.1") - api("org.apache.httpcomponents.core5:httpcore5-h2:5.4.1") + api("org.apache.httpcomponents.core5:httpcore5:5.4.2") + api("org.apache.httpcomponents.core5:httpcore5-h2:5.4.2") // Apache 2.0 // https://search.maven.org/artifact/com.google.code.findbugs/jsr305