From 7875877cb88c71cf27a2d50ceed2b0d817a2fd0a Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 15 Sep 2024 06:40:53 -0400 Subject: [PATCH] Minor tweaks --- RELEASE_NOTES.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index dc569646e..929eccc82 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt @@ -2,9 +2,9 @@ ------------------ 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 Public Suffix matching algorithm implementation. +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. @@ -54,13 +54,13 @@ Change Log * DeflateInputStream extends FilterInputStream Contributed by Gary Gregory -* HTTPCLIENT-2335: Added #close method with CloseMode parameter to CloseableHttpResponse. +* 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 'formal algorithm' as specified +* HTTPCLIENT-2336: Updated PublicSuffixMatcher to use the 'formal algorithm' as specified https://github.com/publicsuffix/list/wiki/Format#formal-algorithm. Contributed by Adrian Woodhead @@ -74,8 +74,8 @@ Change Log * Removed @Experimental from async cache classes. Contributed by Oleg Kalnichevski -* HTTPCLIENT-2333: update execution scope upon request redirect in order to avoid re-execution - of the original request in case of an i/o error. +* 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