diff --git a/CHANGELOG b/CHANGELOG index 5f09077088e84..0f8ec5a66f13e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,89 @@ ChangeLog : =========== +2024/11/08 : 2.9.12 + - BUG/MINOR: h1: do not forward h2c upgrade header token + - BUG/MINOR: h2: reject extended connect for h2c protocol + - MINOR: mux-h1: Set EOI on SE during demux when both side are in DONE state + - BUG/MEDIUM: mux-h1/mux-h2: Reject upgrades with payload on H2 side only + - REGTESTS: h1/h2: Update script testing H1/H2 protocol upgrades + - REGTESTS: shorten a bit the delay for the h1/h2 upgrade test + - BUG/MEDIUM: cli: Deadlock when setting frontend maxconn + - BUG/MINOR: server: make sure the HMAINT state is part of MAINT + - BUG/MINOR: cfgparse-global: fix allowed args number for setenv + - MINOR: quic: convert qc_stream_desc release field to flags + - MINOR: quic: implement function to check if STREAM is fully acked + - BUG/MEDIUM: quic: handle retransmit for standalone FIN STREAM + - BUG/MINOR: quic: prevent freeze after early QCS closure + - MINOR: task: define two new one-shot events for use with WOKEN_OTHER or MSG + - BUG/MEDIUM: stream: make stream_shutdown() async-safe + - BUG/MINOR: queue: make sure that maintenance redispatches server queue + - MINOR: server: make srv_shutdown_sessions() call pendconn_redistribute() + - BUG/MEDIUM: queue: always dequeue the backend when redistributing the last server + - BUG/MINOR: mux-h1: Fix condition to set EOI on SE during zero-copy forwarding + - BUG/MINOR: http-ana: Disable fast-fwd for unfinished req waiting for upgrade + - MINOR: debug: make mark_tainted() return the previous value + - MINOR: chunk: drop the global thread_dump_buffer + - MINOR: debug: split ha_thread_dump() in two parts + - MINOR: debug: slightly change the thread_dump_pointer signification + - MINOR: debug: make ha_thread_dump_done() take the pointer to be used + - MINOR: debug: replace ha_thread_dump() with its two components + - MEDIUM: debug: on panic, make the target thread automatically allocate its buf + - BUG/MEDIUM: server: server stuck in maintenance after FQDN change + - BUG/MEDIUM: hlua: make hlua_ctx_renew() safe + - BUG/MEDIUM: hlua: properly handle sample func errors in hlua_run_sample_{fetch,conv}() + - BUG/MEDIUM: mux-quic: ensure timeout server is active for short requests + - BUG/MEDIUM: queue: make sure never to queue when there's no more served conns + - BUG/MINOR: httpclient: return NULL when no proxy available during httpclient_new() + - BUG/MEDIUM: stconn: Wait iobuf is empty to shut SE down during a check send + - BUG/MINOR: http-ana: Don't report a server abort if response payload is invalid + - BUG/MEDIUM: stconn: Check FF data of SC to perform a shutdown in sc_notify() + - BUG/MAJOR: filters/htx: Add a flag to state the payload is altered by a filter + - REGTESTS: Never reuse server connection in http-messaging/truncated.vtc + - BUG/MINOR: quic: avoid leaking post handshake frames + - BUG/MEDIUM: quic: avoid freezing 0RTT connections + - DOC: config: fix rfc7239 forwarded typo in desc + - BUG/MINOR: mworker: fix mworker-max-reloads parser + - BUG/MEDIUM: mux-h2: Remove H2S from send list if data are sent via 0-copy FF + - BUG/MEDIUM: connection/http-reuse: fix address collision on unhandled address families + - MINOR: activity/memprofile: always return "other" bin on NULL return address + - MINOR: activity/memprofile: show per-DSO stats + - BUG/MINOR: mux-quic: do not close STREAM with empty FIN if no data sent + - BUG/MINOR: server: fix dynamic server leak with check on failed init + - BUG/MEDIUM: stconn: Report blocked send if sends are blocked by an error + - BUG/MINOR: http-ana: Fix wrong client abort reports during responses forwarding + - BUG/MINOR: stconn: Don't disable 0-copy FF if EOS was reported on consumer side + - BUG/MEDIUM: server: fix race on servers_list during server deletion + - BUILD: debug: silence a build warning with threads disabled + - MINOR: pools: export the pools variable + - MINOR: debug: place a magic pattern at the beginning of post_mortem + - MINOR: debug: place the post_mortem struct in its own section. + - MINOR: debug: store important pointers in post_mortem + - MINOR: cli: remove non-printable characters from 'debug dev fd' + - BUG/MINOR: trace: stop rewriting argv with -dt + - BUG/MINOR: ssl/cli: 'set ssl cert' does not check the transaction name correctly + - BUG/MEDIUM: mux-h1: Fix how timeouts are applied on H1 connections + - BUG/MINOR: http-ana: Report internal error if an action yields on a final eval + - MINOR: stream: Save last evaluated rule on invalid yield + - DOC: config: document connection error 44 (reverse connect failure) + - CLEANUP: connection: properly name the CO_ER_SSL_FATAL enum entry + - MINOR: cli/debug: show dev: add cmdline and version + - MINOR: connection: add more connection error codes to cover common errno + - MINOR: rawsock: set connection error codes when returning from recv/send/splice + - MINOR: connection: add new sample fetch functions fc_err_name and bc_err_name + - MINOR: stream: maintain a counter of the number of active streams. + - MINOR: debug: print gdb hints when crashing + - MINOR: debug: do not limit backtraces to stuck threads + - MINOR: debug: also add a pointer to struct global to post_mortem + - MINOR: debug: also add fdtab and acitvity to struct post_mortem + - MINOR: debug: remove the redundant process.thread_info array from post_mortem + - MINOR: wdt: move the local timers to a struct + - MINOR: debug: add a function to dump a stuck thread + - DEBUG: wdt: better detect apparently locked up threads and warn about them + - DEBUG: cli: make it possible for "debug dev loop" to trigger warnings + - DEBUG: wdt: make the blocked traffic warning delay configurable + - MINOR: debug: move the "recover now" warn message after the optional notes + 2024/09/19 : 2.9.11 - BUG/MEDIUM: server/addr: fix tune.events.max-events-at-once event miss and leak - BUG/MEDIUM: stconn: Report error on SC on send if a previous SE error was set diff --git a/VERDATE b/VERDATE index 07ee80b9d7574..249d92fbcc0d9 100644 --- a/VERDATE +++ b/VERDATE @@ -1,2 +1,2 @@ $Format:%ci$ -2024/09/19 +2024/11/08 diff --git a/VERSION b/VERSION index dd9ac7fe82db5..d9d3601284045 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.9.11 +2.9.12 diff --git a/doc/configuration.txt b/doc/configuration.txt index f1118561e9103..91013d8ec877a 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -3,7 +3,7 @@ Configuration Manual ---------------------- version 2.9 - 2024/09/19 + 2024/11/08 This document covers the configuration language as implemented in the version