Skip to content

Commit 3e69fcc

Browse files
committed
[RELEASE] Released version 2.6-dev7
Released version 2.6-dev7 with the following main changes : - BUILD: calltrace: fix wrong include when building with TRACE=1 - MINOR: ssl: Use DH parameters defined in RFC7919 instead of hard coded ones - MEDIUM: ssl: Disable DHE ciphers by default - BUILD: ssl: Fix compilation with OpenSSL 1.0.2 - MINOR: mux-quic: split xfer and STREAM frames build - REORG: quic: use a dedicated module for qc_stream_desc - MINOR: quic-stream: use distinct tree nodes for quic stream and qcs - MINOR: quic-stream: add qc field - MEDIUM: quic: implement multi-buffered Tx streams - MINOR: quic-stream: refactor ack management - MINOR: quic: limit total stream buffers per connection - MINOR: mux-quic: implement immediate send retry - MINOR: cfg-quic: define tune.quic.conn-buf-limit - MINOR: ssl: Add 'show ssl providers' cli command and providers list in -vv option - REGTESTS: ssl: Update error messages that changed with OpenSSLv3.1.0-dev - BUG/MEDIUM: quic: Possible crash with released mux - BUG/MINOR: mux-quic: unsubscribe on release - BUG/MINOR: mux-quic: handle null timeout - BUG/MEDIUM: logs: fix http-client's log srv initialization - BUG/MINOR: mux-quic: remove dead code in qcs_xfer_data() - DEV: stream: Fix conn-streams dump in full stream message - CLEANUP: conn-stream: Rename cs_conn_close() and cs_conn_drain_and_close() - CLEANUP: conn-stream: Rename cs_applet_release() - MINOR: conn-stream: Rely on endpoint shutdown flags to shutdown an applet - BUG/MINOR: cache: Disable cache if applet creation fails - BUG/MINOR: backend: Don't allow to change backend applet - BUG/MEDIUM: conn-stream: Set back CS to RDY state when the appctx is created - MINOR: stream: Don't needlessly detach server endpoint on early client abort - MINOR: conn-stream: Make cs_detach_* private and use cs_destroy() from outside - MINOR: init: add the pre-check callback - MEDIUM: httpclient: change the init sequence - MEDIUM: httpclient/ssl: verify required - MINOR: httpclient/mworker: disable in the master process - MEDIUM: httpclient/ssl: verify is configurable and disabled by default - BUG/MAJOR: connection: Never remove connection from idle lists outside the lock - BUG/MEDIUM: mux-quic: fix stalled POST requets - BUG/MINOR: mux-quic: fix POST with abortonclose - MINOR: task: add a new task_instant_wakeup() function - MEDIUM: queue: use tasklet_instant_wakeup() to wake tasks - DOC: remove my name from the config doc
1 parent 1401b9c commit 3e69fcc

File tree

4 files changed

+45
-3
lines changed

4 files changed

+45
-3
lines changed

CHANGELOG

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

4+
2022/04/23 : 2.6-dev7
5+
- BUILD: calltrace: fix wrong include when building with TRACE=1
6+
- MINOR: ssl: Use DH parameters defined in RFC7919 instead of hard coded ones
7+
- MEDIUM: ssl: Disable DHE ciphers by default
8+
- BUILD: ssl: Fix compilation with OpenSSL 1.0.2
9+
- MINOR: mux-quic: split xfer and STREAM frames build
10+
- REORG: quic: use a dedicated module for qc_stream_desc
11+
- MINOR: quic-stream: use distinct tree nodes for quic stream and qcs
12+
- MINOR: quic-stream: add qc field
13+
- MEDIUM: quic: implement multi-buffered Tx streams
14+
- MINOR: quic-stream: refactor ack management
15+
- MINOR: quic: limit total stream buffers per connection
16+
- MINOR: mux-quic: implement immediate send retry
17+
- MINOR: cfg-quic: define tune.quic.conn-buf-limit
18+
- MINOR: ssl: Add 'show ssl providers' cli command and providers list in -vv option
19+
- REGTESTS: ssl: Update error messages that changed with OpenSSLv3.1.0-dev
20+
- BUG/MEDIUM: quic: Possible crash with released mux
21+
- BUG/MINOR: mux-quic: unsubscribe on release
22+
- BUG/MINOR: mux-quic: handle null timeout
23+
- BUG/MEDIUM: logs: fix http-client's log srv initialization
24+
- BUG/MINOR: mux-quic: remove dead code in qcs_xfer_data()
25+
- DEV: stream: Fix conn-streams dump in full stream message
26+
- CLEANUP: conn-stream: Rename cs_conn_close() and cs_conn_drain_and_close()
27+
- CLEANUP: conn-stream: Rename cs_applet_release()
28+
- MINOR: conn-stream: Rely on endpoint shutdown flags to shutdown an applet
29+
- BUG/MINOR: cache: Disable cache if applet creation fails
30+
- BUG/MINOR: backend: Don't allow to change backend applet
31+
- BUG/MEDIUM: conn-stream: Set back CS to RDY state when the appctx is created
32+
- MINOR: stream: Don't needlessly detach server endpoint on early client abort
33+
- MINOR: conn-stream: Make cs_detach_* private and use cs_destroy() from outside
34+
- MINOR: init: add the pre-check callback
35+
- MEDIUM: httpclient: change the init sequence
36+
- MEDIUM: httpclient/ssl: verify required
37+
- MINOR: httpclient/mworker: disable in the master process
38+
- MEDIUM: httpclient/ssl: verify is configurable and disabled by default
39+
- BUG/MAJOR: connection: Never remove connection from idle lists outside the lock
40+
- BUG/MEDIUM: mux-quic: fix stalled POST requets
41+
- BUG/MINOR: mux-quic: fix POST with abortonclose
42+
- MINOR: task: add a new task_instant_wakeup() function
43+
- MEDIUM: queue: use tasklet_instant_wakeup() to wake tasks
44+
- DOC: remove my name from the config doc
45+
446
2022/04/16 : 2.6-dev6
547
- CLEANUP: connection: reduce the with of the mux dump output
648
- CI: Update to actions/checkout@v3

VERDATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
$Format:%ci$
2-
2022/04/16
2+
2022/04/23

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6-dev6
1+
2.6-dev7

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 2.6
6-
2022/04/16
6+
2022/04/23
77

88

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

0 commit comments

Comments
 (0)