From abf078b15fd5c6c209e72f969a10b712f605c583 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Fri, 18 Feb 2022 18:08:02 +0100 Subject: [PATCH] [RELEASE] Released version 2.5.3 Released version 2.5.3 with the following main changes : - MINOR: sock: move the unused socket cleaning code into its own function - BUG/MEDIUM: mworker: close unused transferred FDs on load failure - BUG/MINOR: mworker: fix a FD leak of a sockpair upon a failed reload - BUG/MINOR: sink: Use the right field in appctx context in release callback - BUG/MEDIUM: resolvers: Really ignore trailing dot in domain names - BUG/MEDIUM: fd: always align fdtab[] to 64 bytes - BUG/MAJOR: compiler: relax alignment constraints on certain structures - MINOR: httpclient: Don't limit data transfer to 1024 bytes - BUG/MINOR: httpclient: reinit flags in httpclient_start() - BUG/MINOR: mailers: negotiate SMTP, not ESMTP - BUG/MINOR: ssl: Add missing return value check in ssl_ocsp_response_print - BUG/MINOR: ssl: Fix leak in "show ssl ocsp-response" CLI command - BUG/MINOR: ssl: Missing return value check in ssl_ocsp_response_print - CLEANUP: httpclient/cli: fix indentation alignment of the help message - BUG/MINOR: tools: url2sa reads ipv4 too far - BUG/MEDIUM: httpclient: limit transfers to the maximum available room - DEBUG: buffer: check in __b_put_blk() whether the buffer room is respected --- CHANGELOG | 19 +++++++++++++++++++ VERDATE | 2 +- VERSION | 2 +- doc/configuration.txt | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4d5b353..feeb686 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,25 @@ ChangeLog : =========== +2022/02/18 : 2.5.3 + - MINOR: sock: move the unused socket cleaning code into its own function + - BUG/MEDIUM: mworker: close unused transferred FDs on load failure + - BUG/MINOR: mworker: fix a FD leak of a sockpair upon a failed reload + - BUG/MINOR: sink: Use the right field in appctx context in release callback + - BUG/MEDIUM: resolvers: Really ignore trailing dot in domain names + - BUG/MEDIUM: fd: always align fdtab[] to 64 bytes + - BUG/MAJOR: compiler: relax alignment constraints on certain structures + - MINOR: httpclient: Don't limit data transfer to 1024 bytes + - BUG/MINOR: httpclient: reinit flags in httpclient_start() + - BUG/MINOR: mailers: negotiate SMTP, not ESMTP + - BUG/MINOR: ssl: Add missing return value check in ssl_ocsp_response_print + - BUG/MINOR: ssl: Fix leak in "show ssl ocsp-response" CLI command + - BUG/MINOR: ssl: Missing return value check in ssl_ocsp_response_print + - CLEANUP: httpclient/cli: fix indentation alignment of the help message + - BUG/MINOR: tools: url2sa reads ipv4 too far + - BUG/MEDIUM: httpclient: limit transfers to the maximum available room + - DEBUG: buffer: check in __b_put_blk() whether the buffer room is respected + 2022/02/16 : 2.5.2 - BUG/MEDIUM: connection: properly leave stopping list on error - BUG/MEDIUM: htx: Adjust length to add DATA block in an empty HTX buffer diff --git a/VERDATE b/VERDATE index 10bb433..3fb9ae4 100644 --- a/VERDATE +++ b/VERDATE @@ -1,2 +1,2 @@ $Format:%ci$ -2022/02/16 +2022/02/18 diff --git a/VERSION b/VERSION index f225a78..aedc15b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.5.2 +2.5.3 diff --git a/doc/configuration.txt b/doc/configuration.txt index 67025e2..f1d5ca5 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -4,7 +4,7 @@ ---------------------- version 2.5 willy tarreau - 2022/02/16 + 2022/02/18 This document covers the configuration language as implemented in the version -- 1.7.10.4