Fridrich Strba 2024-11-07 12:36:26 +00:00 committed by Git OBS Bridge
parent 1255e22e6c
commit 483bdacac0

View File

@ -1,3 +1,33 @@
-------------------------------------------------------------------
Thu Nov 7 12:27:13 UTC 2024 - Fridrich Strba <fstrba@suse.com>
- Update to version 4.5.14
* HTTPCLIENT-2206: Corrected resource de-allocation by fluent
response objects.
* HTTPCLIENT-2174: URIBuilder to return a new empty list instead
of unmodifiable Collections#emptyList.
* Don't retry requests in case of NoRouteToHostException.
* HTTPCLIENT-2144: RequestBuilder fails to correctly copy charset
of requests with form url-encoded body.
* PR #269: 4.5.x use array fill and more.
+ Use Arrays.fill().
+ Remove redundant modifiers.
+ Use Collections.addAll() and Collection.addAll() APIs instead
of loops.
+ Remove redundant returns.
+ No need to explicitly declare an array when calling a vararg
method.
+ Remote extra semicolons (;).
+ Use a 'L' instead of 'l' to make long literals more readable.
* PublicSuffixListParser.parseByType(Reader) allocates but does
not use a 256 char StringBuilder.
* Incorrect handling of malformed authority component by
URIUtils#extractHost (bsc#1177488, CVE-2020-13956).
* Avoid updating Content-Length header in a 304 response.
* Bug fix: BasicExpiresHandler is annotated as immutable but is
not (#239)
* HTTPCLIENT-2076: Fixed NPE in LaxExpiresHandler (#222).
-------------------------------------------------------------------
Tue Feb 20 14:35:47 UTC 2024 - Fridrich Strba <fstrba@suse.com>