diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index e04339542..929eccc82 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt @@ -1,10 +1,10 @@ -Release 5.4 BETA1 +Release 5.4 ------------------ -This is the first BETA release in the 5.4 release series. It upgrades HttpCore to version -5.3-beta1 and adds a few minor improvements and fixes. +This 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! Please note the new cache entry serialization format is incompatible with earlier +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. @@ -36,6 +36,58 @@ Notable changes and features included in the 5.4 series: * HttpContext optimization and performance improvement. +* Async cache is no longer considered experimental. + + +Change Log +------------------- + +* HTTPCLIENT-2338: Put compress exec interceptor after retry exec interceptor. + Contributed by Oleg Kalnichevski + +* Upgraded HttpCore to version 5.3. + Contributed by Oleg Kalnichevski + +* Javadoc improvements. + Contributed by Gary Gregory + +* DeflateInputStream extends FilterInputStream + Contributed by Gary Gregory + +* HTTPCLIENT-2335: Added close() method with CloseMode parameter to CloseableHttpResponse. + Contributed by Oleg Kalnichevski + +* HTTPCLIENT-2336: Corrected hostname identity verification logic. + Contributed by Oleg Kalnichevski + +* HTTPCLIENT-2336: Updated PublicSuffixMatcher to use the 'formal algorithm' as specified + https://github.com/publicsuffix/list/wiki/Format#formal-algorithm. + Contributed by Adrian Woodhead + +* Input streams returned by DecompressingEntity#getContent to support mark(int) and reset() + if the underlying stream does. + Contributed by Gary Gregory + +* Improved FQDN matching. + Contributed by Oleg Kalnichevski + +* Removed @Experimental from async cache classes. + Contributed by Oleg Kalnichevski + +* HTTPCLIENT-2333: Update execution scope upon request redirect to avoid re-execution + of the original request in case of an I/O error. + Contributed by Oleg Kalnichevski + +* Re-introduced LaxRedirectStrategy from 4.x + Contributed by Otavio Prado + + + +Release 5.4 BETA1 +------------------ + +This is the first BETA release in the 5.4 release series. It upgrades HttpCore to version +5.3-beta1 and adds a few minor improvements and fixes. Change Log