Skip to content

Commit 71b00a9

Browse files
committed
[RELEASE] Released version 3.4-dev2
Released version 3.4-dev2 with the following main changes : - BUG/MEDIUM: mworker/listener: ambiguous use of RX_F_INHERITED with shards - BUG/MEDIUM: http-ana: Properly detect client abort when forwarding response (v2) - BUG/MEDIUM: stconn: Don't report abort from SC if read0 was already received - BUG/MEDIUM: quic: Don't try to use hystart if not implemented - CLEANUP: backend: Remove useless test on server's xprt - CLEANUP: tcpcheck: Remove useless test on the xprt used for healthchecks - CLEANUP: ssl-sock: Remove useless tests on connection when resuming TLS session - REGTESTS: quic: fix a TLS stack usage - REGTESTS: list all skipped tests including 'feature cmd' ones - CI: github: remove openssl no-deprecated job - CI: github: add a job to test the master branch of OpenSSL - CI: github: openssl-master.yml misses actions/checkout - BUG/MEDIUM: backend: Do not remove CO_FL_SESS_IDLE in assign_server() - CI: github: use git prefix for openssl-master.yml - BUG/MEDIUM: mux-h2: synchronize all conditions to create a new backend stream - REGTESTS: fix error when no test are skipped - MINOR: cpu-topo: Turn the cpu policy configuration into a struct - MEDIUM: cpu-topo: Add a "threads-per-core" keyword to cpu-policy - MEDIUM: cpu-topo: Add a "cpu-affinity" option - MEDIUM: cpu-topo: Add a new "max-threads-per-group" global keyword - MEDIUM: cpu-topo: Add the "per-thread" cpu_affinity - MEDIUM: cpu-topo: Add the "per-ccx" cpu_affinity - BUG/MINOR: cpu-topo: fix -Wlogical-not-parentheses build with clang - DOC: config: fix number of values for "cpu-affinity" - MINOR: tools: add a secure implementation of memset - MINOR: mux-h2: add missing glitch count for non-decodable H2 headers - MINOR: mux-h2: perform a graceful close at 75% glitches threshold - MEDIUM: mux-h1: implement basic glitches support - MINOR: mux-h1: perform a graceful close at 75% glitches threshold - MEDIUM: cfgparse: acknowledge that proxy ID auto numbering starts at 2 - MINOR: cfgparse: remove useless checks on no server in backend - OPTIM/MINOR: proxy: do not init proxy management task if unused - MINOR: patterns: preliminary changes for reorganization - MEDIUM: patterns: reorganize pattern reference elements - CLEANUP: patterns: remove dead code - OPTIM: patterns: cache the current generation - MINOR: tcp: add new bind option "tcp-ss" to instruct the kernel to save the SYN - MINOR: protocol: support a generic way to call getsockopt() on a connection - MINOR: tcp: implement the get_opt() function - MINOR: tcp_sample: implement the fc_saved_syn sample fetch function - CLEANUP: assorted typo fixes in the code, commits and doc - BUG/MEDIUM: cpu-topo: Don't forget to reset visited_ccx. - BUG/MAJOR: set the correct generation ID in pat_ref_append(). - BUG/MINOR: backend: fix the conn_retries check for TFO - BUG/MINOR: backend: inspect request not response buffer to check for TFO - MINOR: net_helper: add sample converters to decode ethernet frames - MINOR: net_helper: add sample converters to decode IP packet headers - MINOR: net_helper: add sample converters to decode TCP headers - MINOR: net_helper: add ip.fp() to build a simplified fingerprint of a SYN - MINOR: net_helper: prepare the ip.fp() converter to support more options - MINOR: net_helper: add an option to ip.fp() to append the TTL to the fingerprint - MINOR: net_helper: add an option to ip.fp() to append the source address - DOC: config: fix the length attribute name for stick tables of type binary / string - MINOR: mworker/cli: only keep positive PIDs in proc_list - CLEANUP: mworker: remove duplicate list.h include - BUG/MINOR: mworker/cli: fix show proc pagination using reload counter - MINOR: mworker/cli: extract worker "show proc" row printer - MINOR: cpu-topo: Factorize code - MINOR: cpu-topo: Rename variables to better fit their usage - BUG/MEDIUM: peers: Properly handle shutdown when trying to get a line - BUG/MEDIUM: mux-h1: Take care to update <kop> value during zero-copy forwarding - MINOR: threads: Avoid using a thread group mask when stopping. - MINOR: hlua: Add support for lua 5.5 - MEDIUM: cpu-topo: Add an optional directive for per-group affinity - BUG/MEDIUM: mworker: can't use signals after a failed reload - BUG/MEDIUM: stconn: Move data from <kip> to <kop> during zero-copy forwarding - DOC: config: fix a few typos and refine cpu-affinity - MINOR: receiver: Remove tgroup_mask from struct shard_info - BUG/MINOR: quic: fix deprecated warning for window size keyword
1 parent e061547 commit 71b00a9

File tree

5 files changed

+75
-4
lines changed

5 files changed

+75
-4
lines changed

CHANGELOG

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,77 @@
11
ChangeLog :
22
===========
33

4+
2026/01/07 : 3.4-dev2
5+
- BUG/MEDIUM: mworker/listener: ambiguous use of RX_F_INHERITED with shards
6+
- BUG/MEDIUM: http-ana: Properly detect client abort when forwarding response (v2)
7+
- BUG/MEDIUM: stconn: Don't report abort from SC if read0 was already received
8+
- BUG/MEDIUM: quic: Don't try to use hystart if not implemented
9+
- CLEANUP: backend: Remove useless test on server's xprt
10+
- CLEANUP: tcpcheck: Remove useless test on the xprt used for healthchecks
11+
- CLEANUP: ssl-sock: Remove useless tests on connection when resuming TLS session
12+
- REGTESTS: quic: fix a TLS stack usage
13+
- REGTESTS: list all skipped tests including 'feature cmd' ones
14+
- CI: github: remove openssl no-deprecated job
15+
- CI: github: add a job to test the master branch of OpenSSL
16+
- CI: github: openssl-master.yml misses actions/checkout
17+
- BUG/MEDIUM: backend: Do not remove CO_FL_SESS_IDLE in assign_server()
18+
- CI: github: use git prefix for openssl-master.yml
19+
- BUG/MEDIUM: mux-h2: synchronize all conditions to create a new backend stream
20+
- REGTESTS: fix error when no test are skipped
21+
- MINOR: cpu-topo: Turn the cpu policy configuration into a struct
22+
- MEDIUM: cpu-topo: Add a "threads-per-core" keyword to cpu-policy
23+
- MEDIUM: cpu-topo: Add a "cpu-affinity" option
24+
- MEDIUM: cpu-topo: Add a new "max-threads-per-group" global keyword
25+
- MEDIUM: cpu-topo: Add the "per-thread" cpu_affinity
26+
- MEDIUM: cpu-topo: Add the "per-ccx" cpu_affinity
27+
- BUG/MINOR: cpu-topo: fix -Wlogical-not-parentheses build with clang
28+
- DOC: config: fix number of values for "cpu-affinity"
29+
- MINOR: tools: add a secure implementation of memset
30+
- MINOR: mux-h2: add missing glitch count for non-decodable H2 headers
31+
- MINOR: mux-h2: perform a graceful close at 75% glitches threshold
32+
- MEDIUM: mux-h1: implement basic glitches support
33+
- MINOR: mux-h1: perform a graceful close at 75% glitches threshold
34+
- MEDIUM: cfgparse: acknowledge that proxy ID auto numbering starts at 2
35+
- MINOR: cfgparse: remove useless checks on no server in backend
36+
- OPTIM/MINOR: proxy: do not init proxy management task if unused
37+
- MINOR: patterns: preliminary changes for reorganization
38+
- MEDIUM: patterns: reorganize pattern reference elements
39+
- CLEANUP: patterns: remove dead code
40+
- OPTIM: patterns: cache the current generation
41+
- MINOR: tcp: add new bind option "tcp-ss" to instruct the kernel to save the SYN
42+
- MINOR: protocol: support a generic way to call getsockopt() on a connection
43+
- MINOR: tcp: implement the get_opt() function
44+
- MINOR: tcp_sample: implement the fc_saved_syn sample fetch function
45+
- CLEANUP: assorted typo fixes in the code, commits and doc
46+
- BUG/MEDIUM: cpu-topo: Don't forget to reset visited_ccx.
47+
- BUG/MAJOR: set the correct generation ID in pat_ref_append().
48+
- BUG/MINOR: backend: fix the conn_retries check for TFO
49+
- BUG/MINOR: backend: inspect request not response buffer to check for TFO
50+
- MINOR: net_helper: add sample converters to decode ethernet frames
51+
- MINOR: net_helper: add sample converters to decode IP packet headers
52+
- MINOR: net_helper: add sample converters to decode TCP headers
53+
- MINOR: net_helper: add ip.fp() to build a simplified fingerprint of a SYN
54+
- MINOR: net_helper: prepare the ip.fp() converter to support more options
55+
- MINOR: net_helper: add an option to ip.fp() to append the TTL to the fingerprint
56+
- MINOR: net_helper: add an option to ip.fp() to append the source address
57+
- DOC: config: fix the length attribute name for stick tables of type binary / string
58+
- MINOR: mworker/cli: only keep positive PIDs in proc_list
59+
- CLEANUP: mworker: remove duplicate list.h include
60+
- BUG/MINOR: mworker/cli: fix show proc pagination using reload counter
61+
- MINOR: mworker/cli: extract worker "show proc" row printer
62+
- MINOR: cpu-topo: Factorize code
63+
- MINOR: cpu-topo: Rename variables to better fit their usage
64+
- BUG/MEDIUM: peers: Properly handle shutdown when trying to get a line
65+
- BUG/MEDIUM: mux-h1: Take care to update <kop> value during zero-copy forwarding
66+
- MINOR: threads: Avoid using a thread group mask when stopping.
67+
- MINOR: hlua: Add support for lua 5.5
68+
- MEDIUM: cpu-topo: Add an optional directive for per-group affinity
69+
- BUG/MEDIUM: mworker: can't use signals after a failed reload
70+
- BUG/MEDIUM: stconn: Move data from <kip> to <kop> during zero-copy forwarding
71+
- DOC: config: fix a few typos and refine cpu-affinity
72+
- MINOR: receiver: Remove tgroup_mask from struct shard_info
73+
- BUG/MINOR: quic: fix deprecated warning for window size keyword
74+
475
2025/12/10 : 3.4-dev1
576
- BUG/MINOR: jwt: Missing "case" in switch statement
677
- DOC: configuration: ECH support details

VERDATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
$Format:%ci$
2-
2025/12/10
2+
2026/01/07

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4-dev1
1+
3.4-dev2

doc/configuration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Configuration Manual
44
----------------------
55
version 3.4
6-
2025/12/10
6+
2026/01/07
77

88

99
This document covers the configuration language as implemented in the version

src/haproxy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* HAProxy : High Availability-enabled HTTP/TCP proxy
3-
* Copyright 2000-2025 Willy Tarreau <willy@haproxy.org>.
3+
* Copyright 2000-2026 Willy Tarreau <willy@haproxy.org>.
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License

0 commit comments

Comments
 (0)