[RELEASE] Released version 2.6.6
Released version 2.6.6 with the following main changes : - MEDIUM: peers: limit the number of updates sent at once - MINOR: Revert part of clarifying samples support per os commit - BUILD: makefile: enable crypt(3) for NetBSD - BUG/MINOR: quic: Retransmitted frames marked as acknowledged - BUG/MINOR: quic: Possible crash with "tls-ticket-keys" on QUIC bind lines - BUG/MINOR: h1: Support headers case adjustment for TCP proxies - BUG/MINOR: quic: Possible crash when verifying certificates - BUILD: quic: add some ifdef around the SSL_ERROR_* for libressl - BUILD: ssl: fix ssl_sock_switchtx_cbk when no client_hello_cb - BUILD: quic: temporarly ignore chacha20_poly1305 for libressl - BUILD: quic: enable early data only with >= openssl 1.1.1 - BUILD: ssl: fix the ifdef mess in ssl_sock_initial_ctx - BUILD: quic: fix the #ifdef in ssl_quic_initial_ctx() - MINOR: quic: add QUIC support when no client_hello_cb - MINOR: quic: Add traces about sent or resent TX frames - MINOR: quic: No TRACE_LEAVE() in retrieve_qc_conn_from_cid() - BUG/MINOR: quic: Wrong connection ID to thread ID association - BUG/MINOR: task: always reset a new tasklet's call date - BUG/MINOR: task: make task_instant_wakeup() work on a task not a tasklet - MINOR: task: permanently enable latency measurement on tasklets - CLEANUP: task: rename ->call_date to ->wake_date - BUG/MINOR: task: Fix detection of tasks profiling in tasklet_wakeup_after() - BUG/MINOR: sched: properly account for the CPU time of dying tasks - MINOR: sched: store the current profile entry in the thread context - BUG/MINOR: stream/sched: take into account CPU profiling for the last call - BUG/MINOR: signals/poller: set the poller timeout to 0 when there are signals - BUG/MINOR: quic: Speed up the handshake completion only one time - BUG/MINOR: quic: Trace fix about packet number space information. - BUG/MINOR: h3: Crash when h3 trace verbosity is "minimal" - MINOR: h3: Add the quic_conn object to h3 traces - MINOR: h3: Missing connection argument for a TRACE_LEAVE() argument - MINOR: h3: Send the h3 settings with others streams (requests) - BUG/MINOR: signals/poller: ensure wakeup from signals - CI: cirrus-ci: bump FreeBSD image to 13-1 - DEV: flags: fix usage message to reflect available options - DEV: flags: add missing CO_FL_FDLESS connection flag - BUG/MEDIUM: proxy: ensure pause_proxy() and resume_proxy() own PROXY_LOCK - MINOR: listener: small API change - MINOR: proxy/listener: support for additional PAUSED state - BUG/MINOR: stats: fixing stat shows disabled frontend status as 'OPEN' - CLEANUP: pollers: remove dead code in the polling loop - BUG/MINOR: mux-h1: Increment open_streams counter when H1 stream is created - REGTESTS: healthcheckmail: Relax matching on the healthcheck log message - CLEANUP: listener: function comment typo in stop_listener() - BUG/MINOR: listener: null pointer dereference suspected by coverity - REGTESTS: log: test the log-forward feature - BUG/MEDIUM: sink: bad init sequence on tcp sink from a ring. - REGTESTS: ssl/log: test the log-forward with SSL - DOC: fix TOC in starter guide for subsection 3.3.8. Statistics - MEDIUM: quic: separate path for rx and tx with set_encryption_secrets - BUG/MEDIUM: mux-quic: fix crash on early app-ops release - CLEANUP: mux-quic: remove stconn usage in h3/hq - BUG/MINOR: mux-quic: do not remotely close stream too early - BUG/MEDIUM: server: segv when adding server with hostname from CLI - CLEANUP: quic,ssl: fix tiny typos in C comments - BUG/MEDIUM: captures: free() an error capture out of the proxy lock - BUILD: fd: fix a build warning on the DWCAS - SCRIPTS: announce-release: update some URLs to https - BUG/MEDIUM: mux-quic: fix nb_hreq decrement - BUG/MINOR: mux-quic: do not keep detached qcs with empty Tx buffers - REORG: mux-quic: extract traces in a dedicated source file - REORG: mux-quic: export HTTP related function in a dedicated file - MINOR: mux-quic: refactor snd_buf - BUG/MEDIUM: mux-quic: properly trim HTX buffer on snd_buf reset - REGTESTS: ssl: adopt tests to OpenSSL-3.0.N - REGTESTS: ssl: adopt tests to OpenSSL-3.0.N - REGTESTS: ssl: fix grep invocation to use extended regex in ssl_generate_certificate.vtc - BUG/MINOR: log: improper behavior when escaping log data
This commit is contained in:
parent
9779c1b5d7
commit
274d1a4dff
70
CHANGELOG
70
CHANGELOG
@ -1,6 +1,76 @@
|
||||
ChangeLog :
|
||||
===========
|
||||
|
||||
2022/09/22 : 2.6.6
|
||||
- MEDIUM: peers: limit the number of updates sent at once
|
||||
- MINOR: Revert part of clarifying samples support per os commit
|
||||
- BUILD: makefile: enable crypt(3) for NetBSD
|
||||
- BUG/MINOR: quic: Retransmitted frames marked as acknowledged
|
||||
- BUG/MINOR: quic: Possible crash with "tls-ticket-keys" on QUIC bind lines
|
||||
- BUG/MINOR: h1: Support headers case adjustment for TCP proxies
|
||||
- BUG/MINOR: quic: Possible crash when verifying certificates
|
||||
- BUILD: quic: add some ifdef around the SSL_ERROR_* for libressl
|
||||
- BUILD: ssl: fix ssl_sock_switchtx_cbk when no client_hello_cb
|
||||
- BUILD: quic: temporarly ignore chacha20_poly1305 for libressl
|
||||
- BUILD: quic: enable early data only with >= openssl 1.1.1
|
||||
- BUILD: ssl: fix the ifdef mess in ssl_sock_initial_ctx
|
||||
- BUILD: quic: fix the #ifdef in ssl_quic_initial_ctx()
|
||||
- MINOR: quic: add QUIC support when no client_hello_cb
|
||||
- MINOR: quic: Add traces about sent or resent TX frames
|
||||
- MINOR: quic: No TRACE_LEAVE() in retrieve_qc_conn_from_cid()
|
||||
- BUG/MINOR: quic: Wrong connection ID to thread ID association
|
||||
- BUG/MINOR: task: always reset a new tasklet's call date
|
||||
- BUG/MINOR: task: make task_instant_wakeup() work on a task not a tasklet
|
||||
- MINOR: task: permanently enable latency measurement on tasklets
|
||||
- CLEANUP: task: rename ->call_date to ->wake_date
|
||||
- BUG/MINOR: task: Fix detection of tasks profiling in tasklet_wakeup_after()
|
||||
- BUG/MINOR: sched: properly account for the CPU time of dying tasks
|
||||
- MINOR: sched: store the current profile entry in the thread context
|
||||
- BUG/MINOR: stream/sched: take into account CPU profiling for the last call
|
||||
- BUG/MINOR: signals/poller: set the poller timeout to 0 when there are signals
|
||||
- BUG/MINOR: quic: Speed up the handshake completion only one time
|
||||
- BUG/MINOR: quic: Trace fix about packet number space information.
|
||||
- BUG/MINOR: h3: Crash when h3 trace verbosity is "minimal"
|
||||
- MINOR: h3: Add the quic_conn object to h3 traces
|
||||
- MINOR: h3: Missing connection argument for a TRACE_LEAVE() argument
|
||||
- MINOR: h3: Send the h3 settings with others streams (requests)
|
||||
- BUG/MINOR: signals/poller: ensure wakeup from signals
|
||||
- CI: cirrus-ci: bump FreeBSD image to 13-1
|
||||
- DEV: flags: fix usage message to reflect available options
|
||||
- DEV: flags: add missing CO_FL_FDLESS connection flag
|
||||
- BUG/MEDIUM: proxy: ensure pause_proxy() and resume_proxy() own PROXY_LOCK
|
||||
- MINOR: listener: small API change
|
||||
- MINOR: proxy/listener: support for additional PAUSED state
|
||||
- BUG/MINOR: stats: fixing stat shows disabled frontend status as 'OPEN'
|
||||
- CLEANUP: pollers: remove dead code in the polling loop
|
||||
- BUG/MINOR: mux-h1: Increment open_streams counter when H1 stream is created
|
||||
- REGTESTS: healthcheckmail: Relax matching on the healthcheck log message
|
||||
- CLEANUP: listener: function comment typo in stop_listener()
|
||||
- BUG/MINOR: listener: null pointer dereference suspected by coverity
|
||||
- REGTESTS: log: test the log-forward feature
|
||||
- BUG/MEDIUM: sink: bad init sequence on tcp sink from a ring.
|
||||
- REGTESTS: ssl/log: test the log-forward with SSL
|
||||
- DOC: fix TOC in starter guide for subsection 3.3.8. Statistics
|
||||
- MEDIUM: quic: separate path for rx and tx with set_encryption_secrets
|
||||
- BUG/MEDIUM: mux-quic: fix crash on early app-ops release
|
||||
- CLEANUP: mux-quic: remove stconn usage in h3/hq
|
||||
- BUG/MINOR: mux-quic: do not remotely close stream too early
|
||||
- BUG/MEDIUM: server: segv when adding server with hostname from CLI
|
||||
- CLEANUP: quic,ssl: fix tiny typos in C comments
|
||||
- BUG/MEDIUM: captures: free() an error capture out of the proxy lock
|
||||
- BUILD: fd: fix a build warning on the DWCAS
|
||||
- SCRIPTS: announce-release: update some URLs to https
|
||||
- BUG/MEDIUM: mux-quic: fix nb_hreq decrement
|
||||
- BUG/MINOR: mux-quic: do not keep detached qcs with empty Tx buffers
|
||||
- REORG: mux-quic: extract traces in a dedicated source file
|
||||
- REORG: mux-quic: export HTTP related function in a dedicated file
|
||||
- MINOR: mux-quic: refactor snd_buf
|
||||
- BUG/MEDIUM: mux-quic: properly trim HTX buffer on snd_buf reset
|
||||
- REGTESTS: ssl: adopt tests to OpenSSL-3.0.N
|
||||
- REGTESTS: ssl: adopt tests to OpenSSL-3.0.N
|
||||
- REGTESTS: ssl: fix grep invocation to use extended regex in ssl_generate_certificate.vtc
|
||||
- BUG/MINOR: log: improper behavior when escaping log data
|
||||
|
||||
2022/09/03 : 2.6.5
|
||||
- BUG/MINOR: quic: Wrong list_for_each_entry() use when building packets from qc_do_build_pkt()
|
||||
- BUG/MINOR: quic: Safer QUIC frame builders
|
||||
|
@ -3,7 +3,7 @@
|
||||
Configuration Manual
|
||||
----------------------
|
||||
version 2.6
|
||||
2022/09/03
|
||||
2022/09/22
|
||||
|
||||
|
||||
This document covers the configuration language as implemented in the version
|
||||
|
Loading…
x
Reference in New Issue
Block a user