]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[RELEASE] Released version 3.0-dev2 v3.0-dev2
authorWilly Tarreau <w@1wt.eu>
Fri, 26 Jan 2024 19:11:39 +0000 (20:11 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 26 Jan 2024 19:11:39 +0000 (20:11 +0100)
Released version 3.0-dev2 with the following main changes :
    - MINOR: ot: logsrv struct becomes logger
    - MINOR: ssl: Update ssl_fc_curve/ssl_bc_curve to use SSL_get0_group_name
    - CLEANUP: ssl: fix indentation in smp_fetch_ssl_fc_ec()
    - DEV: patchbot: produce a verdict for too long commit messages
    - CLEANUP: ssl: fix indentation in smp_fetch_ssl_fc_ec() (part 2)
    - CLEANUP: quic: Double quic_dgram_parse() prototype declaration.
    - BUG/MINOR: map: list-based matching potential ordering regression
    - REGTESTS: add a test to ensure map-ordering is preserved
    - DOC: config: fix typo about map_*_key converters
    - DOC: configuration: corrected description of keyword tune.ssl.ocsp-update.mindelay
    - MINOR: map: mapfile ordering also matters for tree-based match types
    - DEV: phash: add a trivial perfect hash generator for integers
    - OPTIM: http: simplify http_get_status_idx() using a hash
    - CLEANUP: http: avoid duplicating literals in find_http_meth()
    - MINOR: http: add infrastructure to choose status codes for err / fail
    - MEDIUM: http_act: check status codes against the bit fields for err/fail
    - MEDIUM: http: add the ability to redefine http-err-codes and http-fail-codes
    - CI: codespell: ignore some words in URLs
    - CI: codespell: add more words to whitelist
    - CLEANUP: fix spelling of "occured" in src/h3.c
    - BUILD: quic: missing include for quic_tp
    - BUG/MINOR: mux-quic: do not prevent non-STREAM sending on flow control
    - MEDIUM: ssl: allow multiple fallback certificate to allow ECDSA/RSA selection
    - MEDIUM: ssl: generate '*' SNI filters for default certificates
    - MEDIUM: ssl: does not use default_ctx for 'generate-certificate' option
    - REORG: ssl: move 'generate-certificates' code to ssl_gencert.c
    - DOC: configuration: update configuration on how to have multiple default certs
    - MEDIUM: ssl: implements 'default-crt' keyword for bind Lines
    - CI: github: update wolfSSL to 5.6.6
    - DOC: INSTALL: require at least WolfSSL 5.6.6
    - DEV: h2: add support for multiple flags in mkhdr
    - DEV: h2: support hex-encoded data sequences in mkhdr
    - BUG/MINOR: mux-h2: also count streams for refused ones
    - BUG/MEDIUM: quic: keylog callback not called (USE_OPENSSL_COMPAT)
    - MINOR: vars: fix indentation in var_clear_buffer()
    - DOC: configuration: fix set-dst in actions keywords matrix
    - BUG/MEDIUM: mux-h2: refine connection vs stream error on headers
    - MINOR: mux-h2/traces: add a missing trace on connection WU with negative inc
    - MINOR: mux-h2: add a counter of "glitches" on a connection
    - MINOR: connection: add a new mux_ctl to report number of connection glitches
    - MINOR: mux-h2: implement MUX_CTL_GET_GLITCHES
    - MINOR: connection: add sample fetches to report per-connection glitches
    - BUILD: stick-table: fix build error on 32-bit platforms
    - MINOR: quic: Transport parameters encoding without version_information
    - MINOR: quic: Enable early data at SSL session level (aws-lc)
    - MINOR: ssl_sock: Early data disabled during SSL_CTX switching (aws-lc)
    - MINOR: quic: Correctly wait for the completion of handshakes with early data (aws-lc)
    - BUG/MEDIUM: cli: some err/warn msg dumps add LR into CSV output on stat's CLI
    - BUG/MINOR: jwt: fix jwt_verify crash on 32-bit archs
    - BUILD: quic: fix build error when using the compatibility layer
    - BUILD: quic: Fix build error when building QUIC against wolfssl.
    - BUILD: quic: Fix build error when building QUIC against libressl.
    - BUG/MINOR: hlua: fix uninitialized var in hlua_core_get_var()
    - CLEANUP: hlua: fix indent, remove extra return in hlua_core_get_var()
    - BUG/MEDIUM: cache: Fix crash when deleting secondary entry
    - BUG/MINOR: quic: newreno QUIC congestion control algorithm no more available
    - CLEANUP: quic: Remove unused CUBIC_BETA_SCALE_FACTOR_SHIFT macro.
    - MINOR: quic: Stop hardcoding a scale shifting value (CUBIC_BETA_SCALE_FACTOR_SHIFT)
    - MINOR: quic: extract qc_stream_buf free in a dedicated function
    - BUG/MEDIUM: quic: remove unsent data from qc_stream_desc buf
    - CLEANUP: fix spelling of "elemt"
    - CI: extend spell check white list
    - CI: enable spell check on git push
    - BUILD: makefile: also define cmd_CXX to pretty-print C++ build commands
    - BUILD/MEDIUM: deviceatlas: addon build rework.
    - DOC: deviceatlas: update to be in line with the v3 api.
    - BUILD/MEDIUM: deviceatlas: updating the addon part.
    - BUILD: deviceatlas: remove unneeded depenency on libcurl / libzip
    - BUILD: deviceatlas: fix empty "-I" left on CFLAGS
    - Revert "CI: enable spell check on git push"

CHANGELOG
VERDATE
VERSION
doc/configuration.txt

index 8b710f07597777d03f8dad6d0299d0a4d466a68a..2d5e222c0e7cbcf49df80751948e30cce4d9023f 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,78 @@
 ChangeLog :
 ===========
 
+2024/01/26 : 3.0-dev2
+    - MINOR: ot: logsrv struct becomes logger
+    - MINOR: ssl: Update ssl_fc_curve/ssl_bc_curve to use SSL_get0_group_name
+    - CLEANUP: ssl: fix indentation in smp_fetch_ssl_fc_ec()
+    - DEV: patchbot: produce a verdict for too long commit messages
+    - CLEANUP: ssl: fix indentation in smp_fetch_ssl_fc_ec() (part 2)
+    - CLEANUP: quic: Double quic_dgram_parse() prototype declaration.
+    - BUG/MINOR: map: list-based matching potential ordering regression
+    - REGTESTS: add a test to ensure map-ordering is preserved
+    - DOC: config: fix typo about map_*_key converters
+    - DOC: configuration: corrected description of keyword tune.ssl.ocsp-update.mindelay
+    - MINOR: map: mapfile ordering also matters for tree-based match types
+    - DEV: phash: add a trivial perfect hash generator for integers
+    - OPTIM: http: simplify http_get_status_idx() using a hash
+    - CLEANUP: http: avoid duplicating literals in find_http_meth()
+    - MINOR: http: add infrastructure to choose status codes for err / fail
+    - MEDIUM: http_act: check status codes against the bit fields for err/fail
+    - MEDIUM: http: add the ability to redefine http-err-codes and http-fail-codes
+    - CI: codespell: ignore some words in URLs
+    - CI: codespell: add more words to whitelist
+    - CLEANUP: fix spelling of "occured" in src/h3.c
+    - BUILD: quic: missing include for quic_tp
+    - BUG/MINOR: mux-quic: do not prevent non-STREAM sending on flow control
+    - MEDIUM: ssl: allow multiple fallback certificate to allow ECDSA/RSA selection
+    - MEDIUM: ssl: generate '*' SNI filters for default certificates
+    - MEDIUM: ssl: does not use default_ctx for 'generate-certificate' option
+    - REORG: ssl: move 'generate-certificates' code to ssl_gencert.c
+    - DOC: configuration: update configuration on how to have multiple default certs
+    - MEDIUM: ssl: implements 'default-crt' keyword for bind Lines
+    - CI: github: update wolfSSL to 5.6.6
+    - DOC: INSTALL: require at least WolfSSL 5.6.6
+    - DEV: h2: add support for multiple flags in mkhdr
+    - DEV: h2: support hex-encoded data sequences in mkhdr
+    - BUG/MINOR: mux-h2: also count streams for refused ones
+    - BUG/MEDIUM: quic: keylog callback not called (USE_OPENSSL_COMPAT)
+    - MINOR: vars: fix indentation in var_clear_buffer()
+    - DOC: configuration: fix set-dst in actions keywords matrix
+    - BUG/MEDIUM: mux-h2: refine connection vs stream error on headers
+    - MINOR: mux-h2/traces: add a missing trace on connection WU with negative inc
+    - MINOR: mux-h2: add a counter of "glitches" on a connection
+    - MINOR: connection: add a new mux_ctl to report number of connection glitches
+    - MINOR: mux-h2: implement MUX_CTL_GET_GLITCHES
+    - MINOR: connection: add sample fetches to report per-connection glitches
+    - BUILD: stick-table: fix build error on 32-bit platforms
+    - MINOR: quic: Transport parameters encoding without version_information
+    - MINOR: quic: Enable early data at SSL session level (aws-lc)
+    - MINOR: ssl_sock: Early data disabled during SSL_CTX switching (aws-lc)
+    - MINOR: quic: Correctly wait for the completion of handshakes with early data (aws-lc)
+    - BUG/MEDIUM: cli: some err/warn msg dumps add LR into CSV output on stat's CLI
+    - BUG/MINOR: jwt: fix jwt_verify crash on 32-bit archs
+    - BUILD: quic: fix build error when using the compatibility layer
+    - BUILD: quic: Fix build error when building QUIC against wolfssl.
+    - BUILD: quic: Fix build error when building QUIC against libressl.
+    - BUG/MINOR: hlua: fix uninitialized var in hlua_core_get_var()
+    - CLEANUP: hlua: fix indent, remove extra return in hlua_core_get_var()
+    - BUG/MEDIUM: cache: Fix crash when deleting secondary entry
+    - BUG/MINOR: quic: newreno QUIC congestion control algorithm no more available
+    - CLEANUP: quic: Remove unused CUBIC_BETA_SCALE_FACTOR_SHIFT macro.
+    - MINOR: quic: Stop hardcoding a scale shifting value (CUBIC_BETA_SCALE_FACTOR_SHIFT)
+    - MINOR: quic: extract qc_stream_buf free in a dedicated function
+    - BUG/MEDIUM: quic: remove unsent data from qc_stream_desc buf
+    - CLEANUP: fix spelling of "elemt"
+    - CI: extend spell check white list
+    - CI: enable spell check on git push
+    - BUILD: makefile: also define cmd_CXX to pretty-print C++ build commands
+    - BUILD/MEDIUM: deviceatlas: addon build rework.
+    - DOC: deviceatlas: update to be in line with the v3 api.
+    - BUILD/MEDIUM: deviceatlas: updating the addon part.
+    - BUILD: deviceatlas: remove unneeded depenency on libcurl / libzip
+    - BUILD: deviceatlas: fix empty "-I" left on CFLAGS
+    - Revert "CI: enable spell check on git push"
+
 2024/01/06 : 3.0-dev1
     - MINOR: channel: Use dedicated functions to deal with STREAMER flags
     - MEDIUM: applet: Handle channel's STREAMER flags on applets size
diff --git a/VERDATE b/VERDATE
index beccd14e686e418d22997c000f6ab78095ecd781..e39b7fb339d8749fb3a1753ec4386f6a59a32e4e 100644 (file)
--- a/VERDATE
+++ b/VERDATE
@@ -1,2 +1,2 @@
 $Format:%ci$
-2024/01/06
+2024/01/26
diff --git a/VERSION b/VERSION
index 4d557a6af247880ca6cf03bbe793d0a1f80f7850..3ef83f96a0e6f896dbc4d167fbfdd66fb0baedcd 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0-dev1
+3.0-dev2
index 477d86b9409778d65f7a91399fd813bc0213be9c..f9bb1478326a18e75c557ec954d5854aec6c2d18 100644 (file)
@@ -3,7 +3,7 @@
                           Configuration Manual
                          ----------------------
                               version 3.0
-                              2024/01/06
+                              2024/01/26
 
 
 This document covers the configuration language as implemented in the version