fix(deps): update dependency org.apache.httpcomponents.client5:httpclient5 to v5.6.4 - #19
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update dependency org.apache.httpcomponents.client5:httpclient5 to v5.6.4#19renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
February 15, 2023 10:10
fa44c15 to
01e14b5
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
November 23, 2023 11:09
01e14b5 to
15d018a
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
December 1, 2023 12:46
15d018a to
2e64139
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
December 6, 2023 10:56
2e64139 to
c54133a
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
January 24, 2024 18:24
c54133a to
5b93cbf
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
September 19, 2024 16:47
5b93cbf to
488e4dc
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
October 28, 2024 19:57
488e4dc to
60b31db
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
February 2, 2025 13:00
60b31db to
5fc33e1
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
March 26, 2025 22:53
5fc33e1 to
afd9f04
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
April 24, 2025 19:06
afd9f04 to
71a9422
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
May 22, 2025 16:24
71a9422 to
c4ae974
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
September 27, 2025 17:30
c4ae974 to
db749cb
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
December 19, 2025 20:57
db749cb to
43de733
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
December 20, 2025 13:46
43de733 to
309c38e
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
April 19, 2026 09:41
309c38e to
6aca1b6
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
June 30, 2026 00:12
6aca1b6 to
3df7a2b
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
July 31, 2026 17:32
3df7a2b to
edd189d
Compare
renovate
Bot
force-pushed
the
renovate/httpclient5
branch
from
August 9, 2026 09:58
edd189d to
5256326
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.2→5.6.4Release Notes
apache/httpcomponents-client (org.apache.httpcomponents.client5:httpclient5)
v5.6This is the first ALPHA release in the 5.6 release series. It adds several features
such as transport content decompression and content compression for the async transport,
support for Unix sockets, experimental support for SCRAM-SHA-256 authentication scheme,
and Micrometer/OTel observations & metrics.
Commons Compress, Brotli codec, and ZStd codec are optional dependencies and get
wired into the execution pipeline only if present on the classpath.
Notable changes and features included in the 5.6 series:
Unix domain socket support.
Support for pluggable content codecs via Commons-Compress in the classic transport.
(optional).
Support for transparent content decompression and content compression with
deflate,gzip,zstd(optional), andbrotli(optional) codecs in the async transport.Micrometer/OTel observations & metrics (optinal).
Off-lock connection disposal by the classic pooling connection manager. Experimental.
SCRAM-SHA-256 authentication scheme (RFC 7804). Experimental.
Request Priority support (RFC 9218). Experimental.
Compatibility notes:
As of this version, HttpClient uses BUILTIN HostnameVerificationPolicy by default, delegating
host verification to JSSE security manager. One must explicitly configure the TLS strategy
to continue using the hostname verifier shipped with HttpClient.
Five-second TCP keep-alive is now enabled by default.
v5.5This is the first GA release in the 5.5 release series. This release finalizes the 5.5
APIs and adds several experimental features and improvements, such as request multiplexing
over a shared HTTP/2 connection and the Classic API facade acting as a compatibility
bridge between classic I/O client services and the asynchronous message transport used
internally.
Notable changes and features included in the 5.5 series:
Improved conformance to RFC 7616 (HTTP Digest Access Authentication).
The connection pool implementation acts as a caching facade in front of a standard
managed connection pool and shares already leased connections to multiplex message
exchanges over active HTTP/2 connections. Experimental.
Extended Auth API and improved authentication protocol logic to support mutual
authentication.
The Classic API facade now acts as a compatibility bridge between the classic I/O client
services (based on the standard InputStream / OutputStream model) and the asynchronous
message transport used internally. This is experimental.
HTTP/2 support for the Fluent Facade (via Classic API facade). This is experimental.
Compatibility notes:
request manually added headers that are considered sensitive.
v5.4This is the first GA release in the 5.4 release series. This release finalizes the 5.4 APIs,
upgrades HttpCore to version 5.3 and improves the Public Suffix matching algorithm implementation.
IMPORTANT! The new cache entry serialization format is incompatible with earlier
versions of HttpClient Cache. Persistent caches (file system based, Memcached, EhCAche
with object serialization) created with any earlier version MUST be flushed and re-populated
or the cache backend MUST be configured to use the old, deprecated cache entry serializer.
Notable changes and features included in the 5.4 series:
Improved conformance to RFC 9110 (HTTP Semantics), RFC 7616 (HTTP Digest Access
Authentication), RFC 2617 (’Basic’ HTTP Authentication Scheme).
UTF-8 encoding is used by default for text where appropriate.
Compatibility with Java Virtual Threads and Java 21 Runtime.
Redesign and rewrite of the HTTP caching protocol layer for better efficiency
and improved conformance to RFC 9111 (HTTP Caching).
Cache control and context APIs.
ETag APIs.
TLS SNI and endpoint identification improvements.
Support for RFC 2817 (Upgrading to TLS Within HTTP/1.1).
Auth cache no longer makes use of Java serialization.
Deprecation of ConnectionSocketFactory and LayeredConnectionSocketFactory.
HttpContext optimization and performance improvement.
Async cache is no longer considered experimental.
v5.3This is the first GA release in the 5.3 release series. This release finalizes the 5.3 APIs
and also includes all bug fixes from the 5.2 release branch.
The 5.3 release series introduces support for the Bearer authentication scheme (RFC 6750) and
deprecates NTLM and GSS-based experimental authentication schemes in favor of Basic / Bearer
authentication with TLS.
Notable changes and features included in the 5.3 series:
Introduction of the Bearer authentication scheme.
Deprecation of the NTLM authentication scheme.
Deprecation of the GSS-based experimental authentication schemes.
Support for load distribution across multiple proxies.
v5.2.1This is a maintenance release that fixes several regressions found in release 5.2.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.