Skip to content

Commit 6e893b9

Browse files
committed
[RELEASE] Released version 2.0-dev2
Released version 2.0-dev2 with the following main changes : - CLEANUP: http: Remove unreachable code in parse_http_req_capture - CLEANUP: stream: Remove bogus loop in conn_si_send_proxy - MINOR: lists: Implement locked variations. - MEDIUM: servers: Used a locked list for idle_orphan_conns. - MEDIUM: servers: Reorganize the way idle connections are cleaned. - BUG/MEDIUM: lists: Properly handle the case we're removing the first elt. - MINOR: cfgparse: Add a cast to make gcc happier. - BUG/MEDIUM: standard: Wrong reallocation size. - BUG/MINOR: listener: keep accept rate counters accurate under saturation - DOC: fix alphabetic ordering for "tune.fail-alloc" setting - MAJOR: config: disable support for nbproc and nbthread in parallel - MEDIUM: listener: keep a single thread-mask and warn on "process" misuse - MAJOR: listener: do not hold the listener lock in listener_accept() - MINOR: listener: maintain a per-thread count of the number of connections on a listener - MINOR: tools: implement functions to look up the nth bit set in a mask - MINOR: listener: pre-compute some thread counts per bind_conf - MINOR: listener: implement multi-queue accept for threads - MAJOR: listener: use the multi-queue for multi-thread listeners - MINOR: activity: add accept queue counters for pushed and overflows - MINOR: config: add global tune.listener.multi-queue setting - MAJOR: threads: enable one thread per CPU by default - DOC: update management.txt to reflect that threads are used by default - BUG/MINOR: config: don't over-count the global maxsock value - BUG/MEDIUM: list: fix the rollback on addq in the locked liss - BUG/MEDIUM: list: fix LIST_POP_LOCKED's removal of the last pointer - BUG/MEDIUM: list: add missing store barriers when updating elements and head - MINOR: list: make the delete and pop operations idempotent - MINOR: server: remove a few unneeded LIST_INIT calls after LIST_DEL_LOCKED - BUG/MEDIUM: listener: use a self-locked list for the dequeue lists - BUG/MEDIUM: listener: make sure the listener never accepts too many conns - BUG/MEDIUM: list: correct fix for LIST_POP_LOCKED's removal of last element - MINOR: listener: introduce listener_backlog() to report the backlog value - MINOR: listener: do not needlessly set l->maxconn - MINOR: proxy: do not change the listeners' maxconn when updating the frontend's - MEDIUM: config: don't enforce a low frontend maxconn value anymore - MINOR: peers: Add a message for heartbeat. - MINOR: global: keep a copy of the initial rlim_fd_cur and rlim_fd_max values - BUG/MINOR: init: never lower rlim_fd_max - BUG/MINOR: checks: make external-checks restore the original rlim_fd_cur/max - BUG/MINOR: mworker: be careful to restore the original rlim_fd_cur/max on reload - MINOR: init: make the maxpipe computation more accurate - MINOR: init: move some maxsock updates earlier - MEDIUM: init: make the global maxconn default to what rlim_fd_cur permits - REGTEST: fix a spurious "nbthread 4" in the connection test - DOC: update the text related to the global maxconn value - BUG/MAJOR: mux-h2: fix race condition between close on both ends - MINOR: sample: Replace "req.ungrpc" smp fetch by a "ungrpc" converter. - BUG/MEDIUM: list: fix again LIST_ADDQ_LOCKED - MINOR: htx: unconditionally handle parsing errors in requests or responses - MINOR: mux-h2: always pass HTX_FL_PARSING_ERROR between h2s and buf on RX - BUG/MEDIUM: h2/htx: verify that :path doesn't contain invalid chars - MINOR: sample: Code factorization "ungrpc" converter. - MINOR: sample: Rework gRPC converter code. - CLEANUP: wurfl: remove dead, broken and unmaintained code - MINOR: config: relax the range checks on cpu-map - BUG/MINOR: ssl: fix warning about ssl-min/max-ver support - MINOR: sample: Extract some protocol buffers specific code. - DOC: Remove tabs and fixed punctuation. - MINOR: sample: Add a protocol buffers specific converter. - REGTEST: Peers reg tests. - REGTEST: Enable reg tests with HEAD HTTP method usage. - MINOR: lists: add a LIST_DEL_INIT() macro - MINOR: task: use LIST_DEL_INIT() to remove a task from the queue - MINOR: listener: improve incoming traffic distribution - MINOR: tools: implement my_flsl() - MEDIUM: listener: change the LB algorithm again to use two round robins instead - CLEANUP: listener: remove old thread bit mapping - MINOR: listener: move thr_idx from the bind_conf to the listener - BUG/MEDIUM: logs: Only attempt to free startup_logs once. - BUG/MAJOR: config: Wrong maxconn adjustment. - BUG/MEDIUM: 51d: fix possible segfault on deinit_51degrees() - OPTIM: task: limit the impact of memory barriers in taks_remove_from_task_list() - MINOR: fd: Remove debugging code. - BUG/MEDIUM: listeners: Don't call fd_stop_recv() if fd_updt is NULL. - MINOR: threads: Implement __ha_barrier_atomic*. - MEDIUM: threads: Use __ATOMIC_SEQ_CST when using the newer atomic API. - MINOR: threads: Add macros to do atomic operation with no memory barrier. - MEDIUM: various: Use __ha_barrier_atomic* when relevant. - MEDIUM: applets: Use the new _HA_ATOMIC_* macros. - MEDIUM: xref: Use the new _HA_ATOMIC_* macros. - MEDIUM: fd: Use the new _HA_ATOMIC_* macros. - MEDIUM: freq_ctr: Use the new _HA_ATOMIC_* macros. - MEDIUM: proxy: Use the new _HA_ATOMIC_* macros. - MEDIUM: server: Use the new _HA_ATOMIC_* macros. - MEDIUM: task: Use the new _HA_ATOMIC_* macros. - MEDIUM: activity: Use the new _HA_ATOMIC_* macros. - MEDIUM: backend: Use the new _HA_ATOMIC_* macros. - MEDIUM: cache: Use the new _HA_ATOMIC_* macros. - MEDIUM: checks: Use the new _HA_ATOMIC_* macros. - MEDIUM: pollers: Use the new _HA_ATOMIC_* macros. - MEDIUM: compression: Use the new _HA_ATOMIC_* macros. - MEDIUM: spoe: Use the new _HA_ATOMIC_* macros. - MEDIUM: threads: Use the new _HA_ATOMIC_* macros. - MEDIUM: http: Use the new _HA_ATOMIC_* macros. - MEDIUM: lb/threads: Use the new _HA_ATOMIC_* macros. - MEDIUM: listeners: Use the new _HA_ATOMIC_* macros. - MEDIUM: logs: Use the new _HA_ATOMIC_* macros. - MEDIUM: memory: Use the new _HA_ATOMIC_* macros. - MEDIUM: peers: Use the new _HA_ATOMIC_* macros. - MEDIUM: proto_tcp: Use the new _HA_ATOMIC_* macros. - MEDIUM: queues: Use the new _HA_ATOMIC_* macros. - MEDIUM: sessions: Use the new _HA_ATOMIC_* macros. - MEDIUM: ssl: Use the new _HA_ATOMIC_* macros. - MEDIUM: stream: Use the new _HA_ATOMIC_* macros. - MEDIUM: tcp_rules: Use the new _HA_ATOMIC_* macros. - MEDIUM: time: Use the new _HA_ATOMIC_* macros. - MEDIUM: vars: Use the new _HA_ATOMIC_* macros. - MINOR: config: remove obsolete use of DEFAULT_MAXCONN at various places - MINOR: config: continue to rely on DEFAULT_MAXCONN to set the minimum maxconn - BUG/MEDIUM: list: fix incorrect pointer unlocking in LIST_DEL_LOCKED() - BUG/MEDIUM: listener: make sure we don't pick stopped threads - MEDIUM: list: Remove useless barriers. - MEDIUM: list: Use _HA_ATOMIC_* - MEDIUM: connections: Use _HA_ATOMIC_* - BUG/MAJOR: tasks: Use the TASK_GLOBAL flag to know if we're in the global rq. - BUG/MEDIUM: threads/fd: do not forget to take into account epoll_fd/pipes - BUG/MEDIUM: init/threads: consider epoll_fd/pipes for automatic maxconn calculation - BUG/MEDIUM: tasks: Make sure we wake sleeping threads if needed. - BUG/MINOR: mux-h1: Don't report an error on EOS if no message was received - BUG/MINOR: stats/htx: Call channel_add_input() when response headers are sent - BUG/MINOR: lua/htx: Use channel_add_input() when response data are added - BUG/MINOR: lua/htx: Don't forget to call htx_to_buf() when appropriate - MINOR: stats: Add the status code STAT_STATUS_IVAL to handle invalid requests - MINOR: stats: Move stuff about the stats status codes in stats files - BUG/MINOR: stats: Be more strict on what is a valid request to the stats applet - Revert "REGTEST: Enable reg tests with HEAD HTTP method usage." - BUILD: listener: shut up a build warning when threads are disabled - BUILD: Makefile: allow the reg-tests target to be verbose - BUILD: Makefile: resolve LEVEL before calling run-regtests - BUG/MAJOR: spoe: Fix initialization of thread-dependent fields - BUG/MAJOR: stats: Fix how huge POST data are read from the channel - BUG/MINOR: http/counters: fix missing increment of fe->srv_aborts - BUG/MEDIUM: mux-h2: Always wakeup streams with no id to avoid frozen streams - MINOR: mux-h2: Set REFUSED_STREAM error to reset a stream if no data was never sent - MINOR: muxes: Report the Last read with a dedicated flag - MINOR: proto-http/proto-htx: Make error handling clearer during data forwarding - BUILD: tools: fix a build warning on some 32-bit archs - MINOR: init: report the list of optionally available services - MEDIUM: proto_htx: Switch to infinite forwarding if there is no data filter - BUG/MINOR: cache: Fully consume large requests in the cache applet - BUG/MINOR: stats: Fully consume large requests in the stats applet - BUG/MEDIUM: lua: Fully consume large requests when an HTTP applet ends - MINOR: proto_http: Add function to handle the header "Expect: 100-continue" - MINOR: proto_htx: Add function to handle the header "Expect: 100-continue" - MINOR: stats/cache: Handle the header Expect when applets are registered - MINOR: http/applets: Handle all applets intercepting HTTP requests the same way - CLEANUP: cache: don't export http_cache_applet anymore - MINOR: lua: Don't handle the header Expect in lua HTTP applets anymore - BUG/MINOR: doc: Be accurate on the behavior on pool-purge-delay. - Revert "MEDIUM: proto_htx: Switch to infinite forwarding if there is no data filter" - BUG/MEDIUM: mux-h2: Make sure we destroyed the h2s once shutr/shutw is done. - BUG/MEDIUM: mux-h2: Don't bother keeping the h2s if detaching and nothing to send. - BUG/MEDIUM: mux-h2: Use the right list in h2_stop_senders(). - MINOR: mux-h2: copy small data blocks more often and reduce the number of pauses - CLEANUP: mux-h2: add some comments to help understand the code - BUG/MEDIUM: ssl: ability to set TLS 1.3 ciphers using ssl-default-server-ciphersuites - BUG/MINOR: log: properly format IPv6 address when LOG_OPT_HEXA modifier is used. - BUG/MEDIUM: h2: Try to be fair when sending data. - BUG/MINOR: proto-http: Don't forward request body anymore on error - MINOR: mux-h2: Remove useless test on ES flag in h2_frt_transfer_data() - MINOR: connection: and new flag to mark end of input (EOI) - MINOR: channel: Report EOI on the input channel if it was reached in the mux - MEDIUM: mux-h2: Don't mix the end of the message with the end of stream - MINOR: mux-h1: Set CS_FL_EOI the end of the message is reached - BUG/MEDIUM: http/htx: Fix handling of the option abortonclose - CLEANUP: muxes/stream-int: Remove flags CS_FL_READ_NULL and SI_FL_READ_NULL - MEDIUM: proto_htx: Reintroduce the infinite forwarding on data - BUG/MEDIUM: h2: only destroy the h2s if h2s->cs is NULL. - BUG/MEDIUM: h2: Use the new sending_list in h2s_notify_send(). - BUG/MEDIUM: h2: Follow the same logic in h2_deferred_shut than in h2_snd_buf. - BUG/MEDIUM: h2: Remove the tasklet from the task list if unsubscribing. - BUG/MEDIUM: task/h2: add an idempotent task removal fucntion - CLEANUP: task: only perform a LIST_DEL() when the list is not empty - BUG/MEDIUM: mux-h2: make sure to always notify streams of EOS condition - CONTRIB: debug: report the CS and CF's EOI flags - MINOR: channel: don't unset CF_SHUTR_NOW after shutting down.
1 parent 65e04eb commit 6e893b9

File tree

5 files changed

+185
-4
lines changed

5 files changed

+185
-4
lines changed

CHANGELOG

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

4+
2019/03/26 : 2.0-dev2
5+
- CLEANUP: http: Remove unreachable code in parse_http_req_capture
6+
- CLEANUP: stream: Remove bogus loop in conn_si_send_proxy
7+
- MINOR: lists: Implement locked variations.
8+
- MEDIUM: servers: Used a locked list for idle_orphan_conns.
9+
- MEDIUM: servers: Reorganize the way idle connections are cleaned.
10+
- BUG/MEDIUM: lists: Properly handle the case we're removing the first elt.
11+
- MINOR: cfgparse: Add a cast to make gcc happier.
12+
- BUG/MEDIUM: standard: Wrong reallocation size.
13+
- BUG/MINOR: listener: keep accept rate counters accurate under saturation
14+
- DOC: fix alphabetic ordering for "tune.fail-alloc" setting
15+
- MAJOR: config: disable support for nbproc and nbthread in parallel
16+
- MEDIUM: listener: keep a single thread-mask and warn on "process" misuse
17+
- MAJOR: listener: do not hold the listener lock in listener_accept()
18+
- MINOR: listener: maintain a per-thread count of the number of connections on a listener
19+
- MINOR: tools: implement functions to look up the nth bit set in a mask
20+
- MINOR: listener: pre-compute some thread counts per bind_conf
21+
- MINOR: listener: implement multi-queue accept for threads
22+
- MAJOR: listener: use the multi-queue for multi-thread listeners
23+
- MINOR: activity: add accept queue counters for pushed and overflows
24+
- MINOR: config: add global tune.listener.multi-queue setting
25+
- MAJOR: threads: enable one thread per CPU by default
26+
- DOC: update management.txt to reflect that threads are used by default
27+
- BUG/MINOR: config: don't over-count the global maxsock value
28+
- BUG/MEDIUM: list: fix the rollback on addq in the locked liss
29+
- BUG/MEDIUM: list: fix LIST_POP_LOCKED's removal of the last pointer
30+
- BUG/MEDIUM: list: add missing store barriers when updating elements and head
31+
- MINOR: list: make the delete and pop operations idempotent
32+
- MINOR: server: remove a few unneeded LIST_INIT calls after LIST_DEL_LOCKED
33+
- BUG/MEDIUM: listener: use a self-locked list for the dequeue lists
34+
- BUG/MEDIUM: listener: make sure the listener never accepts too many conns
35+
- BUG/MEDIUM: list: correct fix for LIST_POP_LOCKED's removal of last element
36+
- MINOR: listener: introduce listener_backlog() to report the backlog value
37+
- MINOR: listener: do not needlessly set l->maxconn
38+
- MINOR: proxy: do not change the listeners' maxconn when updating the frontend's
39+
- MEDIUM: config: don't enforce a low frontend maxconn value anymore
40+
- MINOR: peers: Add a message for heartbeat.
41+
- MINOR: global: keep a copy of the initial rlim_fd_cur and rlim_fd_max values
42+
- BUG/MINOR: init: never lower rlim_fd_max
43+
- BUG/MINOR: checks: make external-checks restore the original rlim_fd_cur/max
44+
- BUG/MINOR: mworker: be careful to restore the original rlim_fd_cur/max on reload
45+
- MINOR: init: make the maxpipe computation more accurate
46+
- MINOR: init: move some maxsock updates earlier
47+
- MEDIUM: init: make the global maxconn default to what rlim_fd_cur permits
48+
- REGTEST: fix a spurious "nbthread 4" in the connection test
49+
- DOC: update the text related to the global maxconn value
50+
- BUG/MAJOR: mux-h2: fix race condition between close on both ends
51+
- MINOR: sample: Replace "req.ungrpc" smp fetch by a "ungrpc" converter.
52+
- BUG/MEDIUM: list: fix again LIST_ADDQ_LOCKED
53+
- MINOR: htx: unconditionally handle parsing errors in requests or responses
54+
- MINOR: mux-h2: always pass HTX_FL_PARSING_ERROR between h2s and buf on RX
55+
- BUG/MEDIUM: h2/htx: verify that :path doesn't contain invalid chars
56+
- MINOR: sample: Code factorization "ungrpc" converter.
57+
- MINOR: sample: Rework gRPC converter code.
58+
- CLEANUP: wurfl: remove dead, broken and unmaintained code
59+
- MINOR: config: relax the range checks on cpu-map
60+
- BUG/MINOR: ssl: fix warning about ssl-min/max-ver support
61+
- MINOR: sample: Extract some protocol buffers specific code.
62+
- DOC: Remove tabs and fixed punctuation.
63+
- MINOR: sample: Add a protocol buffers specific converter.
64+
- REGTEST: Peers reg tests.
65+
- REGTEST: Enable reg tests with HEAD HTTP method usage.
66+
- MINOR: lists: add a LIST_DEL_INIT() macro
67+
- MINOR: task: use LIST_DEL_INIT() to remove a task from the queue
68+
- MINOR: listener: improve incoming traffic distribution
69+
- MINOR: tools: implement my_flsl()
70+
- MEDIUM: listener: change the LB algorithm again to use two round robins instead
71+
- CLEANUP: listener: remove old thread bit mapping
72+
- MINOR: listener: move thr_idx from the bind_conf to the listener
73+
- BUG/MEDIUM: logs: Only attempt to free startup_logs once.
74+
- BUG/MAJOR: config: Wrong maxconn adjustment.
75+
- BUG/MEDIUM: 51d: fix possible segfault on deinit_51degrees()
76+
- OPTIM: task: limit the impact of memory barriers in taks_remove_from_task_list()
77+
- MINOR: fd: Remove debugging code.
78+
- BUG/MEDIUM: listeners: Don't call fd_stop_recv() if fd_updt is NULL.
79+
- MINOR: threads: Implement __ha_barrier_atomic*.
80+
- MEDIUM: threads: Use __ATOMIC_SEQ_CST when using the newer atomic API.
81+
- MINOR: threads: Add macros to do atomic operation with no memory barrier.
82+
- MEDIUM: various: Use __ha_barrier_atomic* when relevant.
83+
- MEDIUM: applets: Use the new _HA_ATOMIC_* macros.
84+
- MEDIUM: xref: Use the new _HA_ATOMIC_* macros.
85+
- MEDIUM: fd: Use the new _HA_ATOMIC_* macros.
86+
- MEDIUM: freq_ctr: Use the new _HA_ATOMIC_* macros.
87+
- MEDIUM: proxy: Use the new _HA_ATOMIC_* macros.
88+
- MEDIUM: server: Use the new _HA_ATOMIC_* macros.
89+
- MEDIUM: task: Use the new _HA_ATOMIC_* macros.
90+
- MEDIUM: activity: Use the new _HA_ATOMIC_* macros.
91+
- MEDIUM: backend: Use the new _HA_ATOMIC_* macros.
92+
- MEDIUM: cache: Use the new _HA_ATOMIC_* macros.
93+
- MEDIUM: checks: Use the new _HA_ATOMIC_* macros.
94+
- MEDIUM: pollers: Use the new _HA_ATOMIC_* macros.
95+
- MEDIUM: compression: Use the new _HA_ATOMIC_* macros.
96+
- MEDIUM: spoe: Use the new _HA_ATOMIC_* macros.
97+
- MEDIUM: threads: Use the new _HA_ATOMIC_* macros.
98+
- MEDIUM: http: Use the new _HA_ATOMIC_* macros.
99+
- MEDIUM: lb/threads: Use the new _HA_ATOMIC_* macros.
100+
- MEDIUM: listeners: Use the new _HA_ATOMIC_* macros.
101+
- MEDIUM: logs: Use the new _HA_ATOMIC_* macros.
102+
- MEDIUM: memory: Use the new _HA_ATOMIC_* macros.
103+
- MEDIUM: peers: Use the new _HA_ATOMIC_* macros.
104+
- MEDIUM: proto_tcp: Use the new _HA_ATOMIC_* macros.
105+
- MEDIUM: queues: Use the new _HA_ATOMIC_* macros.
106+
- MEDIUM: sessions: Use the new _HA_ATOMIC_* macros.
107+
- MEDIUM: ssl: Use the new _HA_ATOMIC_* macros.
108+
- MEDIUM: stream: Use the new _HA_ATOMIC_* macros.
109+
- MEDIUM: tcp_rules: Use the new _HA_ATOMIC_* macros.
110+
- MEDIUM: time: Use the new _HA_ATOMIC_* macros.
111+
- MEDIUM: vars: Use the new _HA_ATOMIC_* macros.
112+
- MINOR: config: remove obsolete use of DEFAULT_MAXCONN at various places
113+
- MINOR: config: continue to rely on DEFAULT_MAXCONN to set the minimum maxconn
114+
- BUG/MEDIUM: list: fix incorrect pointer unlocking in LIST_DEL_LOCKED()
115+
- BUG/MEDIUM: listener: make sure we don't pick stopped threads
116+
- MEDIUM: list: Remove useless barriers.
117+
- MEDIUM: list: Use _HA_ATOMIC_*
118+
- MEDIUM: connections: Use _HA_ATOMIC_*
119+
- BUG/MAJOR: tasks: Use the TASK_GLOBAL flag to know if we're in the global rq.
120+
- BUG/MEDIUM: threads/fd: do not forget to take into account epoll_fd/pipes
121+
- BUG/MEDIUM: init/threads: consider epoll_fd/pipes for automatic maxconn calculation
122+
- BUG/MEDIUM: tasks: Make sure we wake sleeping threads if needed.
123+
- BUG/MINOR: mux-h1: Don't report an error on EOS if no message was received
124+
- BUG/MINOR: stats/htx: Call channel_add_input() when response headers are sent
125+
- BUG/MINOR: lua/htx: Use channel_add_input() when response data are added
126+
- BUG/MINOR: lua/htx: Don't forget to call htx_to_buf() when appropriate
127+
- MINOR: stats: Add the status code STAT_STATUS_IVAL to handle invalid requests
128+
- MINOR: stats: Move stuff about the stats status codes in stats files
129+
- BUG/MINOR: stats: Be more strict on what is a valid request to the stats applet
130+
- Revert "REGTEST: Enable reg tests with HEAD HTTP method usage."
131+
- BUILD: listener: shut up a build warning when threads are disabled
132+
- BUILD: Makefile: allow the reg-tests target to be verbose
133+
- BUILD: Makefile: resolve LEVEL before calling run-regtests
134+
- BUG/MAJOR: spoe: Fix initialization of thread-dependent fields
135+
- BUG/MAJOR: stats: Fix how huge POST data are read from the channel
136+
- BUG/MINOR: http/counters: fix missing increment of fe->srv_aborts
137+
- BUG/MEDIUM: mux-h2: Always wakeup streams with no id to avoid frozen streams
138+
- MINOR: mux-h2: Set REFUSED_STREAM error to reset a stream if no data was never sent
139+
- MINOR: muxes: Report the Last read with a dedicated flag
140+
- MINOR: proto-http/proto-htx: Make error handling clearer during data forwarding
141+
- BUILD: tools: fix a build warning on some 32-bit archs
142+
- MINOR: init: report the list of optionally available services
143+
- MEDIUM: proto_htx: Switch to infinite forwarding if there is no data filter
144+
- BUG/MINOR: cache: Fully consume large requests in the cache applet
145+
- BUG/MINOR: stats: Fully consume large requests in the stats applet
146+
- BUG/MEDIUM: lua: Fully consume large requests when an HTTP applet ends
147+
- MINOR: proto_http: Add function to handle the header "Expect: 100-continue"
148+
- MINOR: proto_htx: Add function to handle the header "Expect: 100-continue"
149+
- MINOR: stats/cache: Handle the header Expect when applets are registered
150+
- MINOR: http/applets: Handle all applets intercepting HTTP requests the same way
151+
- CLEANUP: cache: don't export http_cache_applet anymore
152+
- MINOR: lua: Don't handle the header Expect in lua HTTP applets anymore
153+
- BUG/MINOR: doc: Be accurate on the behavior on pool-purge-delay.
154+
- Revert "MEDIUM: proto_htx: Switch to infinite forwarding if there is no data filter"
155+
- BUG/MEDIUM: mux-h2: Make sure we destroyed the h2s once shutr/shutw is done.
156+
- BUG/MEDIUM: mux-h2: Don't bother keeping the h2s if detaching and nothing to send.
157+
- BUG/MEDIUM: mux-h2: Use the right list in h2_stop_senders().
158+
- MINOR: mux-h2: copy small data blocks more often and reduce the number of pauses
159+
- CLEANUP: mux-h2: add some comments to help understand the code
160+
- BUG/MEDIUM: ssl: ability to set TLS 1.3 ciphers using ssl-default-server-ciphersuites
161+
- BUG/MINOR: log: properly format IPv6 address when LOG_OPT_HEXA modifier is used.
162+
- BUG/MEDIUM: h2: Try to be fair when sending data.
163+
- BUG/MINOR: proto-http: Don't forward request body anymore on error
164+
- MINOR: mux-h2: Remove useless test on ES flag in h2_frt_transfer_data()
165+
- MINOR: connection: and new flag to mark end of input (EOI)
166+
- MINOR: channel: Report EOI on the input channel if it was reached in the mux
167+
- MEDIUM: mux-h2: Don't mix the end of the message with the end of stream
168+
- MINOR: mux-h1: Set CS_FL_EOI the end of the message is reached
169+
- BUG/MEDIUM: http/htx: Fix handling of the option abortonclose
170+
- CLEANUP: muxes/stream-int: Remove flags CS_FL_READ_NULL and SI_FL_READ_NULL
171+
- MEDIUM: proto_htx: Reintroduce the infinite forwarding on data
172+
- BUG/MEDIUM: h2: only destroy the h2s if h2s->cs is NULL.
173+
- BUG/MEDIUM: h2: Use the new sending_list in h2s_notify_send().
174+
- BUG/MEDIUM: h2: Follow the same logic in h2_deferred_shut than in h2_snd_buf.
175+
- BUG/MEDIUM: h2: Remove the tasklet from the task list if unsubscribing.
176+
- BUG/MEDIUM: task/h2: add an idempotent task removal fucntion
177+
- CLEANUP: task: only perform a LIST_DEL() when the list is not empty
178+
- BUG/MEDIUM: mux-h2: make sure to always notify streams of EOS condition
179+
- CONTRIB: debug: report the CS and CF's EOI flags
180+
- MINOR: channel: don't unset CF_SHUTR_NOW after shutting down.
181+
4182
2019/02/26 : 2.0-dev1
5183
- MINOR: mux-h2: only increase the connection window with the first update
6184
- REGTESTS: remove the expected window updates from H2 handshakes

VERDATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
$Format:%ci$
2-
2019/02/26
2+
2019/03/26

VERSION

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

doc/configuration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
----------------------
55
version 2.0
66
willy tarreau
7-
2019/02/26
7+
2019/03/26
88

99

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

examples/haproxy.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
22
Name: haproxy
3-
Version: 2.0-dev1
3+
Version: 2.0-dev2
44
Release: 1
55
License: GPL
66
Group: System Environment/Daemons
@@ -74,6 +74,9 @@ fi
7474
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}
7575

7676
%changelog
77+
* Tue Mar 26 2019 Willy Tarreau <[email protected]>
78+
- updated to 2.0-dev2
79+
7780
* Tue Feb 26 2019 Willy Tarreau <[email protected]>
7881
- updated to 2.0-dev1
7982

0 commit comments

Comments
 (0)