]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[RELEASE] Released version 3.1-dev2 v3.1-dev2
authorWilly Tarreau <w@1wt.eu>
Sat, 29 Jun 2024 09:28:41 +0000 (11:28 +0200)
committerWilly Tarreau <w@1wt.eu>
Sat, 29 Jun 2024 09:28:41 +0000 (11:28 +0200)
Released version 3.1-dev2 with the following main changes :
    - BUG/MINOR: log: fix broken '+bin' logformat node option
    - DEBUG: hlua: distinguish burst timeout errors from exec timeout errors
    - REGTESTS: ssl: fix some regtests 'feature cmd' start condition
    - BUG/MEDIUM: ssl: AWS-LC + TLSv1.3 won't do ECDSA in RSA+ECDSA configuration
    - MINOR: ssl: activate sigalgs feature for AWS-LC
    - REGTESTS: ssl: activate new SSL reg-tests with AWS-LC
    - BUG/MEDIUM: proxy: fix email-alert invalid free
    - REORG: mailers: move free_email_alert() to mailers.c
    - BUG/MINOR: proxy: fix email-alert leak on deinit() (2nd try)
    - DOC: configuration: fix alphabetical order of bind options
    - DOC: management: document ptr lookup for table commands
    - BUG/MAJOR: quic: fix padding with short packets
    - BUG/MAJOR: quic: do not loop on emission on closing/draining state
    - MINOR: sample: date converter takes HTTP date and output an UNIX timestamp
    - SCRIPTS: git-show-backports: do not truncate git-show output
    - DOC: api/event_hdl: small updates, fix an example and add some precisions
    - BUG/MINOR: h3: fix crash on STOP_SENDING receive after GOAWAY emission
    - BUG/MINOR: mux-quic: fix crash on qcs SD alloc failure
    - BUG/MINOR: h3: fix BUG_ON() crash on control stream alloc failure
    - BUG/MINOR: quic: fix BUG_ON() on Tx pkt alloc failure
    - DEV: flags/show-fd-to-flags: adapt to recent versions
    - MINOR: capabilities: export capget and __user_cap_header_struct
    - MINOR: capabilities: prepare support for version 3
    - MINOR: capabilities: use _LINUX_CAPABILITY_VERSION_3
    - MINOR: cli/debug: show dev: add cmdline and version
    - MINOR: cli/debug: show dev: show capabilities
    - MINOR: debug: print gdb hints when crashing
    - BUILD: debug: also declare strlen() in __ABORT_NOW()
    - BUILD: Missing inclusion header for ssize_t type
    - BUG/MINOR: hlua: report proper context upon error in hlua_cli_io_handler_fct()
    - MINOR: cfgparse/log: remove leftover dead code
    - BUG/MEDIUM: stick-table: Decrement the ref count inside lock to kill a session
    - MINOR: stick-table: Always decrement ref count before killing a session
    - REORG: init: do MODE_CHECK_CONDITION logic first
    - REORG: init: encapsulate CHECK_CONDITION logic in a func
    - REORG: init: encapsulate 'reload' sockpair and master CLI listeners creation
    - REORG: init: encapsulate code that reads cfg files
    - BUG/MINOR: server: fix first server template name lookup UAF
    - MINOR: activity: make the memory profiling hash size configurable at build time
    - BUG/MEDIUM: server/dns: prevent DOWN/UP flap upon resolution timeout or error
    - BUG/MEDIUM: h3: ensure the ":method" pseudo header is totally valid
    - BUG/MEDIUM: h3: ensure the ":scheme" pseudo header is totally valid
    - BUG/MEDIUM: quic: fix race-condition in quic_get_cid_tid()
    - BUG/MINOR: quic: fix race condition in qc_check_dcid()
    - BUG/MINOR: quic: fix race-condition on trace for CID retrieval

CHANGELOG
VERDATE
VERSION
doc/configuration.txt
doc/internals/api/event_hdl.txt

index 808bd99fe737ba990e71a088dd3e63506894fe4f..ae314091dd88467835eb5058f1b0ca0f3848a7f2 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,53 @@
 ChangeLog :
 ===========
 
+2024/06/29 : 3.1-dev2
+    - BUG/MINOR: log: fix broken '+bin' logformat node option
+    - DEBUG: hlua: distinguish burst timeout errors from exec timeout errors
+    - REGTESTS: ssl: fix some regtests 'feature cmd' start condition
+    - BUG/MEDIUM: ssl: AWS-LC + TLSv1.3 won't do ECDSA in RSA+ECDSA configuration
+    - MINOR: ssl: activate sigalgs feature for AWS-LC
+    - REGTESTS: ssl: activate new SSL reg-tests with AWS-LC
+    - BUG/MEDIUM: proxy: fix email-alert invalid free
+    - REORG: mailers: move free_email_alert() to mailers.c
+    - BUG/MINOR: proxy: fix email-alert leak on deinit() (2nd try)
+    - DOC: configuration: fix alphabetical order of bind options
+    - DOC: management: document ptr lookup for table commands
+    - BUG/MAJOR: quic: fix padding with short packets
+    - BUG/MAJOR: quic: do not loop on emission on closing/draining state
+    - MINOR: sample: date converter takes HTTP date and output an UNIX timestamp
+    - SCRIPTS: git-show-backports: do not truncate git-show output
+    - DOC: api/event_hdl: small updates, fix an example and add some precisions
+    - BUG/MINOR: h3: fix crash on STOP_SENDING receive after GOAWAY emission
+    - BUG/MINOR: mux-quic: fix crash on qcs SD alloc failure
+    - BUG/MINOR: h3: fix BUG_ON() crash on control stream alloc failure
+    - BUG/MINOR: quic: fix BUG_ON() on Tx pkt alloc failure
+    - DEV: flags/show-fd-to-flags: adapt to recent versions
+    - MINOR: capabilities: export capget and __user_cap_header_struct
+    - MINOR: capabilities: prepare support for version 3
+    - MINOR: capabilities: use _LINUX_CAPABILITY_VERSION_3
+    - MINOR: cli/debug: show dev: add cmdline and version
+    - MINOR: cli/debug: show dev: show capabilities
+    - MINOR: debug: print gdb hints when crashing
+    - BUILD: debug: also declare strlen() in __ABORT_NOW()
+    - BUILD: Missing inclusion header for ssize_t type
+    - BUG/MINOR: hlua: report proper context upon error in hlua_cli_io_handler_fct()
+    - MINOR: cfgparse/log: remove leftover dead code
+    - BUG/MEDIUM: stick-table: Decrement the ref count inside lock to kill a session
+    - MINOR: stick-table: Always decrement ref count before killing a session
+    - REORG: init: do MODE_CHECK_CONDITION logic first
+    - REORG: init: encapsulate CHECK_CONDITION logic in a func
+    - REORG: init: encapsulate 'reload' sockpair and master CLI listeners creation
+    - REORG: init: encapsulate code that reads cfg files
+    - BUG/MINOR: server: fix first server template name lookup UAF
+    - MINOR: activity: make the memory profiling hash size configurable at build time
+    - BUG/MEDIUM: server/dns: prevent DOWN/UP flap upon resolution timeout or error
+    - BUG/MEDIUM: h3: ensure the ":method" pseudo header is totally valid
+    - BUG/MEDIUM: h3: ensure the ":scheme" pseudo header is totally valid
+    - BUG/MEDIUM: quic: fix race-condition in quic_get_cid_tid()
+    - BUG/MINOR: quic: fix race condition in qc_check_dcid()
+    - BUG/MINOR: quic: fix race-condition on trace for CID retrieval
+
 2024/06/14 : 3.1-dev1
     - REGTESTS: Remove REQUIRE_VERSION=2.1 from all tests
     - REGTESTS: Remove REQUIRE_VERSION=2.2 from all tests
diff --git a/VERDATE b/VERDATE
index b78983ead0e7d54ac0b8161811d3e4910de24fbb..bcbd021b78e70db977866371f7ab45d0a7a04a26 100644 (file)
--- a/VERDATE
+++ b/VERDATE
@@ -1,2 +1,2 @@
 $Format:%ci$
-2024/06/14
+2024/06/29
diff --git a/VERSION b/VERSION
index 479fea5efbd66e614e1410d62e26d8611ba0e455..9c7021d57a87b89eba61314bf143f3f35e0c0b29 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.1-dev1
+3.1-dev2
index 23218e5442303701597e2a18bea05afd13b52a02..01b078abc874590f7c2be94ac0277483d8218352 100644 (file)
@@ -3,7 +3,7 @@
                           Configuration Manual
                          ----------------------
                               version 3.1
-                              2024/06/14
+                              2024/06/29
 
 
 This document covers the configuration language as implemented in the version
index 347c91584483cbd8de35b8a2921425a6d49a289b..5f933ab1ab523f86c3afbb13ffef1fbbdd6ac69e 100644 (file)
@@ -1,5 +1,5 @@
                    -----------------------------------------
-                         event_hdl Guide - version 2.8
+                         event_hdl Guide - version 3.1
                           ( Last update: 2024-06-21 )
                    ------------------------------------------