blob: 9faf4c34ed0988a1bfc87810f5184f37e5fb5c9d [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
willy tarreau4302f492005-12-18 01:00:37 +01003
Willy Tarreau6c1b6672019-02-26 16:43:49 +010042019/02/26 : 2.0-dev1
5 - MINOR: mux-h2: only increase the connection window with the first update
6 - REGTESTS: remove the expected window updates from H2 handshakes
7 - BUG/MINOR: mux-h2: make empty HEADERS frame return a connection error
8 - BUG/MEDIUM: mux-h2: mark that we have too many CS once we have more than the max
9 - MEDIUM: mux-h2: remove padlen during headers phase
10 - MINOR: h2: add a bit-based frame type representation
11 - MINOR: mux-h2: remove useless check for empty frame length in h2s_decode_headers()
12 - MEDIUM: mux-h2: decode HEADERS frames before allocating the stream
13 - MINOR: mux-h2: make h2c_send_rst_stream() use the dummy stream's error code
14 - MINOR: mux-h2: add a new dummy stream for the REFUSED_STREAM error code
15 - MINOR: mux-h2: fail stream creation more cleanly using RST_STREAM
16 - MINOR: buffers: add a new b_move() function
17 - MINOR: mux-h2: make h2_peek_frame_hdr() support an offset
18 - MEDIUM: mux-h2: handle decoding of CONTINUATION frames
19 - CLEANUP: mux-h2: remove misleading comments about CONTINUATION
20 - BUG/MEDIUM: servers: Don't try to reuse connection if we switched server.
21 - BUG/MEDIUM: tasks: Decrement tasks_run_queue in tasklet_free().
22 - BUG/MINOR: htx: send the proper authenticate header when using http-request auth
23 - BUG/MEDIUM: mux_h2: Don't add to the idle list if we're full.
24 - BUG/MEDIUM: servers: Fail if we fail to allocate a conn_stream.
25 - BUG/MAJOR: servers: Use the list api correctly to avoid crashes.
26 - BUG/MAJOR: servers: Correctly use LIST_ELEM().
27 - BUG/MAJOR: sessions: Use an unlimited number of servers for the conn list.
28 - BUG/MEDIUM: servers: Flag the stream_interface on handshake error.
29 - MEDIUM: servers: Be smarter when switching connections.
30 - MEDIUM: sessions: Keep track of which connections are idle.
31 - MINOR: payload: add sample fetch for TLS ALPN
32 - BUG/MEDIUM: log: don't mark log FDs as non-blocking on terminals
33 - MINOR: channel: Add the function channel_add_input
34 - MINOR: stats/htx: Call channel_add_input instead of updating channel state by hand
35 - BUG/MEDIUM: cache: Be sure to end the forwarding when XFER length is unknown
36 - BUG/MAJOR: htx: Return the good block address after a defrag
37 - MINOR: lb: allow redispatch when using consistent hash
38 - CLEANUP: mux-h2: fix end-of-stream flag name when processing headers
39 - BUG/MEDIUM: mux-h2: always restart reading if data are available
40 - BUG/MINOR: mux-h2: set the stream-full flag when leaving h2c_decode_headers()
41 - BUG/MINOR: mux-h2: don't check the CS count in h2c_bck_handle_headers()
42 - BUG/MINOR: mux-h2: mark end-of-stream after processing response HEADERS, not before
43 - BUG/MINOR: mux-h2: only update rxbuf's length for H1 headers
44 - BUG/MEDIUM: mux-h1: use per-direction flags to indicate transitions
45 - BUG/MEDIUM: mux-h1: make HTX chunking consistent with H2
46 - BUG/MAJOR: stream-int: Update the stream expiration date in stream_int_notify()
47 - BUG/MEDIUM: proto-htx: Set SI_FL_NOHALF on server side when request is done
48 - BUG/MEDIUM: mux-h1: Add a task to handle connection timeouts
49 - MINOR: mux-h2: make h2c_decode_headers() return a status, not a count
50 - MINOR: mux-h2: add a new dummy stream : h2_error_stream
51 - MEDIUM: mux-h2: make h2c_decode_headers() support recoverable errors
52 - BUG/MINOR: mux-h2: detect when the HTX EOM block cannot be added after headers
53 - MINOR: mux-h2: remove a misleading and impossible test
54 - CLEANUP: mux-h2: clean the stream error path on HEADERS frame processing
55 - MINOR: mux-h2: check for too many streams only for idle streams
56 - MINOR: mux-h2: set H2_SF_HEADERS_RCVD when a HEADERS frame was decoded
57 - BUG/MEDIUM: mux-h2: decode trailers in HEADERS frames
58 - MINOR: h2: add h2_make_h1_trailers to turn H2 headers to H1 trailers
59 - MEDIUM: mux-h2: pass trailers to H1 (legacy mode)
60 - MINOR: htx: add a new function to add a block without filling it
61 - MINOR: h2: add h2_make_htx_trailers to turn H2 headers to HTX trailers
62 - MEDIUM: mux-h2: pass trailers to HTX
63 - MINOR: mux-h1: parse the content-length header on output and set H1_MF_CLEN
64 - BUG/MEDIUM: mux-h1: don't enforce chunked encoding on requests
65 - MINOR: mux-h2: make HTX_BLK_EOM processing idempotent
66 - MINOR: h1: make the H1 headers block parser able to parse headers only
67 - MEDIUM: mux-h2: emit HEADERS frames when facing HTX trailers blocks
68 - MINOR: stream/htx: Add info about the HTX structs in "show sess all" command
69 - MINOR: stream: Add the subscription events of SIs in "show sess all" command
70 - MINOR: mux-h1: Add the subscription events in "show fd" command
71 - BUG/MEDIUM: h1: Get the h1m state when restarting the headers parsing
72 - BUG/MINOR: cache/htx: Be sure to count partial trailers
73 - BUG/MEDIUM: h1: In h1_init(), wake the tasklet instead of calling h1_recv().
74 - BUG/MEDIUM: server: Defer the mux init until after xprt has been initialized.
75 - MINOR: connections: Remove a stall comment.
76 - BUG/MEDIUM: cli: make "show sess" really thread-safe
77 - BUILD: add a new file "version.c" to carry version updates
78 - MINOR: stream/htx: add the HTX flags output in "show sess all"
79 - MINOR: stream/cli: fix the location of the waiting flag in "show sess all"
80 - MINOR: stream/cli: report more info about the HTTP messages on "show sess all"
81 - BUG/MINOR: lua: bad args are returned for Lua actions
82 - BUG/MEDIUM: lua: dead lock when Lua tasks are trigerred
83 - MINOR: htx: Add an helper function to get the max space usable for a block
84 - MINOR: channel/htx: Add HTX version for some helper functions
85 - BUG/MEDIUM: cache/htx: Respect the reserve when cached objects are served
86 - BUG/MINOR: stats/htx: Respect the reserve when the stats page is dumped
87 - DOC: regtest: make it clearer what the purpose of the "broken" series is
88 - REGTEST: mailers: add new test for 'mailers' section
89 - REGTEST: Add a reg test for health-checks over SSL/TLS.
90 - BUG/MINOR: mux-h1: Close connection on shutr only when shutw was really done
91 - MEDIUM: mux-h1: Clarify how shutr/shutw are handled
92 - BUG/MINOR: compression: Disable it if another one is already in progress
93 - BUG/MINOR: filters: Detect cache+compression config on legacy HTTP streams
94 - BUG/MINOR: cache: Disable the cache if any compression filter precedes it
95 - REGTEST: Add some informatoin to test results.
96 - MINOR: htx: Add a function to truncate all blocks after a specific offset
97 - MINOR: channel/htx: Add the HTX version of channel_truncate/erase
98 - BUG/MINOR: proto_htx: Use HTX versions to truncate or erase a buffer
99 - BUG/CRITICAL: mux-h2: re-check the frame length when PRIORITY is used
100 - DOC: Fix typo in req.ssl_alpn example (commit 4afdd138424ab...)
101 - DOC: http-request cache-use / http-response cache-store expects cache name
102 - REGTEST: "capture (request|response)" regtest.
103 - BUG/MINOR: lua/htx: Respect the reserve when data are send from an HTX applet
104 - REGTEST: filters: add compression test
105 - BUG/MEDIUM: init: Initialize idle_orphan_conns for first server in server-template
106 - BUG/MEDIUM: ssl: Disable anti-replay protection and set max data with 0RTT.
107 - DOC: Be a bit more explicit about allow-0rtt security implications.
108 - MINOR: mux-h1: make the mux_h1_ops struct static
109 - BUILD: makefile: add an EXTRA_OBJS variable to help build optional code
110 - BUG/MEDIUM: connection: properly unregister the mux on failed initialization
111 - BUG/MAJOR: cache: fix confusion between zero and uninitialized cache key
112 - REGTESTS: test case for map_regm commit 271022150d
113 - REGTESTS: Basic tests for concat,strcmp,word,field,ipmask converters
114 - REGTESTS: Basic tests for using maps to redirect requests / select backend
115 - DOC: REGTESTS README varnishtest -Dno-htx= define.
116 - MINOR: spoe: Make the SPOE filter compatible with HTX proxies
117 - MINOR: checks: Store the proxy in checks.
118 - BUG/MEDIUM: checks: Avoid having an associated server for email checks.
119 - REGTEST: Switch to vtest.
120 - REGTEST: Adapt reg test doc files to vtest.
121 - BUG/MEDIUM: h1: Make sure we destroy an inactive connectin that did shutw.
122 - BUG/MINOR: base64: dec func ignores padding for output size checking
123 - BUG/MEDIUM: ssl: missing allocation failure checks loading tls key file
124 - MINOR: ssl: add support of aes256 bits ticket keys on file and cli.
125 - BUG/MINOR: backend: don't use url_param_name as a hint for BE_LB_ALGO_PH
126 - BUG/MINOR: backend: balance uri specific options were lost across defaults
127 - BUG/MINOR: backend: BE_LB_LKUP_CHTREE is a value, not a bit
128 - MINOR: backend: move url_param_name/len to lbprm.arg_str/len
129 - MINOR: backend: make headers and RDP cookie also use arg_str/len
130 - MINOR: backend: add new fields in lbprm to store more LB options
131 - MINOR: backend: make the header hash use arg_opt1 for use_domain_only
132 - MINOR: backend: remap the balance uri settings to lbprm.arg_opt{1,2,3}
133 - MINOR: backend: move hash_balance_factor out of chash
134 - MEDIUM: backend: move all LB algo parameters into an union
135 - MINOR: backend: make the random algorithm support a number of draws
136 - BUILD/MEDIUM: da: Necessary code changes for new buffer API.
137 - BUG/MINOR: stick_table: Prevent conn_cur from underflowing
138 - BUG: 51d: Changes to the buffer API in 1.9 were not applied to the 51Degrees code.
139 - BUG/MEDIUM: stats: Get the right scope pointer depending on HTX is used or not
140 - DOC: add a missing space in the documentation for bc_http_major
141 - REGTEST: checks basic stats webpage functionality
142 - BUG/MEDIUM: servers: Make assign_tproxy_address work when ALPN is set.
143 - BUG/MEDIUM: connections: Add the CO_FL_CONNECTED flag if a send succeeded.
144 - DOC: add github issue templates
145 - MINOR: cfgparse: Extract some code to be re-used.
146 - CLEANUP: cfgparse: Return asap from cfg_parse_peers().
147 - CLEANUP: cfgparse: Code reindentation.
148 - MINOR: cfgparse: Useless frontend initialization in "peers" sections.
149 - MINOR: cfgparse: Rework peers frontend init.
150 - MINOR: cfgparse: Simplication.
151 - MINOR: cfgparse: Make "peer" lines be parsed as "server" lines.
152 - MINOR: peers: Make outgoing connection to SSL/TLS peers work.
153 - MINOR: cfgparse: SSL/TLS binding in "peers" sections.
154 - DOC: peers: SSL/TLS documentation for "peers"
155 - BUG/MINOR: startup: certain goto paths in init_pollers fail to free
156 - BUG/MEDIUM: checks: fix recent regression on agent-check making it crash
157 - BUG/MINOR: server: don't always trust srv_check_health when loading a server state
158 - BUG/MINOR: check: Wake the check task if the check is finished in wake_srv_chk()
159 - BUG/MEDIUM: ssl: Fix handling of TLS 1.3 KeyUpdate messages
160 - DOC: mention the effect of nf_conntrack_tcp_loose on src/dst
161 - BUG/MINOR: proto-htx: Return an error if all headers cannot be received at once
162 - BUG/MEDIUM: mux-h2/htx: Respect the channel's reserve
163 - BUG/MINOR: mux-h1: Apply the reserve on the channel's buffer only
164 - BUG/MINOR: mux-h1: avoid copying output over itself in zero-copy
165 - BUG/MAJOR: mux-h2: don't destroy the stream on failed allocation in h2_snd_buf()
166 - BUG/MEDIUM: backend: also remove from idle list muxes that have no more room
167 - BUG/MEDIUM: mux-h2: properly abort on trailers decoding errors
168 - MINOR: h2: declare new sets of frame types
169 - BUG/MINOR: mux-h2: CONTINUATION in closed state must always return GOAWAY
170 - BUG/MINOR: mux-h2: headers-type frames in HREM are always a connection error
171 - BUG/MINOR: mux-h2: make it possible to set the error code on an already closed stream
172 - BUG/MINOR: hpack: return a compression error on invalid table size updates
173 - MINOR: server: make sure pool-max-conn is >= -1
174 - BUG/MINOR: stream: take care of synchronous errors when trying to send
175 - CLEANUP: server: fix indentation mess on idle connections
176 - BUG/MINOR: mux-h2: always check the stream ID limit in h2_avail_streams()
177 - BUG/MINOR: mux-h2: refuse to allocate a stream with too high an ID
178 - BUG/MEDIUM: backend: never try to attach to a mux having no more stream available
179 - MINOR: server: add a max-reuse parameter
180 - MINOR: mux-h2: always consider a server's max-reuse parameter
181 - MEDIUM: stream-int: always mark pending outgoing SI_ST_CON
182 - MINOR: stream: don't wait before retrying after a failed connection reuse
183 - MEDIUM: h2: always parse and deduplicate the content-length header
184 - BUG/MINOR: mux-h2: always compare content-length to the sum of DATA frames
185 - CLEANUP: h2: Remove debug printf in mux_h2.c
186 - MINOR: cfgparse: make the process/thread parser support a maximum value
187 - MINOR: threads: make MAX_THREADS configurable at build time
188 - DOC: nbthread is no longer experimental.
189 - BUG/MINOR: listener: always fill the source address for accepted socketpairs
190 - BUG/MINOR: mux-h2: do not report available outgoing streams after GOAWAY
191 - BUG/MINOR: spoe: corrected fragmentation string size
192 - BUG/MINOR: task: fix possibly missed event in inter-thread wakeups
193 - BUG/MEDIUM: servers: Attempt to reuse an unfinished connection on retry.
194 - BUG/MEDIUM: backend: always call si_detach_endpoint() on async connection failure
195 - SCRIPTS: add the issue tracker URL to the announce script
196 - MINOR: peers: Extract some code to be reused.
197 - CLEANUP: peers: Indentation fixes.
198 - MINOR: peers: send code factorization.
199 - MINOR: peers: Add new functions to send code and reduce the I/O handler.
200 - MEDIUM: peers: synchronizaiton code factorization to reduce the size of the I/O handler.
201 - MINOR: peers: Move update receive code to reduce the size of the I/O handler.
202 - MINOR: peers: Move ack, switch and definition receive code to reduce the size of the I/O handler.
203 - MINOR: peers: Move high level receive code to reduce the size of I/O handler.
204 - CLEANUP: peers: Be more generic.
205 - MINOR: peers: move error handling to reduce the size of the I/O handler.
206 - MINOR: peers: move messages treatment code to reduce the size of the I/O handler.
207 - MINOR: peers: move send code to reduce the size of the I/O handler.
208 - CLEANUP: peers: Remove useless statements.
209 - MINOR: peers: move "hello" message treatment code to reduce the size of the I/O handler.
210 - MINOR: peers: move peer initializations code to reduce the size of the I/O handler.
211 - CLEANUP: peers: factor the error handling code in peer_treet_updatemsg()
212 - CLEANUP: peers: factor error handling in peer_treat_definedmsg()
213 - BUILD/MINOR: peers: shut up a build warning introduced during last cleanup
214 - BUG/MEDIUM: mux-h2: only close connection on request frames on closed streams
215 - CLEANUP: mux-h2: remove two useless but misleading assignments
216 - BUG/MEDIUM: checks: Check that conn_install_mux succeeded.
217 - BUG/MEDIUM: servers: Only destroy a conn_stream we just allocated.
218 - BUG/MEDIUM: servers: Don't add an incomplete conn to the server idle list.
219 - BUG/MEDIUM: checks: Don't try to set ALPN if connection failed.
220 - BUG/MEDIUM: h2: In h2_send(), stop the loop if we failed to alloc a buf.
221 - BUG/MEDIUM: peers: Handle mux creation failure.
222 - BUG/MEDIUM: servers: Close the connection if we failed to install the mux.
223 - BUG/MEDIUM: compression: Rewrite strong ETags
224 - BUG/MINOR: deinit: tcp_rep.inspect_rules not deinit, add to deinit
225 - CLEANUP: mux-h2: remove misleading leftover test on h2s' nullity
226 - BUG/MEDIUM: mux-h2: wake up flow-controlled streams on initial window update
227 - BUG/MEDIUM: mux-h2: fix two half-closed to closed transitions
228 - BUG/MEDIUM: mux-h2: make sure never to send GOAWAY on too old streams
229 - BUG/MEDIUM: mux-h2: do not abort HEADERS frame before decoding them
230 - BUG/MINOR: mux-h2: make sure response HEADERS are not received in other states than OPEN and HLOC
231 - MINOR: h2: add a generic frame checker
232 - MEDIUM: mux-h2: check the frame validity before considering the stream state
233 - CLEANUP: mux-h2: remove stream ID and frame length checks from the frame parsers
234 - BUG/MINOR: mux-h2: make sure request trailers on aborted streams don't break the connection
235 - DOC: compression: Update the reasons for disabled compression
236 - BUG/MEDIUM: buffer: Make sure b_is_null handles buffers waiting for allocation.
237 - DOC: htx: make it clear that htxbuf() and htx_from_buf() always return valid pointers
238 - MINOR: htx: never check for null htx pointer in htx_is_{,not_}empty()
239 - MINOR: mux-h2: consistently rely on the htx variable to detect the mode
240 - BUG/MEDIUM: peers: Peer addresses parsing broken.
241 - BUG/MEDIUM: mux-h1: Don't add "transfer-encoding" if message-body is forbidden
242 - BUG/MEDIUM: connections: Don't forget to remove CO_FL_SESS_IDLE.
243 - BUG/MINOR: stream: don't close the front connection when facing a backend error
244 - BUG/MEDIUM: mux-h2: wait for the mux buffer to be empty before closing the connection
245 - MINOR: stream-int: add a new flag to mention that we want the connection to be killed
246 - MINOR: connstream: have a new flag CS_FL_KILL_CONN to kill a connection
247 - BUG/MEDIUM: mux-h2: do not close the connection on aborted streams
248 - BUG/MINOR: server: fix logic flaw in idle connection list management
249 - MINOR: mux-h2: max-concurrent-streams should be unsigned
250 - MINOR: mux-h2: make sure to only check concurrency limit on the frontend
251 - MINOR: mux-h2: learn and store the peer's advertised MAX_CONCURRENT_STREAMS setting
252 - BUG/MEDIUM: mux-h2: properly consider the peer's advertised max-concurrent-streams
253 - MINOR: xref: Add missing barriers.
254 - MINOR: muxes: Don't bother to LIST_DEL(&conn->list) before calling conn_free().
255 - MINOR: debug: Add an option that causes random allocation failures.
256 - BUG/MEDIUM: backend: always release the previous connection into its own target srv_list
257 - BUG/MEDIUM: htx: check the HTX compatibility in dynamic use-backend rules
258 - BUG/MINOR: tune.fail-alloc: Don't forget to initialize ret.
259 - BUG/MINOR: backend: check srv_conn before dereferencing it
260 - BUG/MEDIUM: mux-h2: always omit :scheme and :path for the CONNECT method
261 - BUG/MEDIUM: mux-h2: always set :authority on request output
262 - BUG/MEDIUM: stream: Don't forget to free s->unique_id in stream_free().
263 - BUG/MINOR: threads: fix the process range of thread masks
264 - BUG/MINOR: config: fix bind line thread mask validation
265 - CLEANUP: threads: fix misleading comment about all_threads_mask
266 - CLEANUP: threads: use nbits to calculate the thread mask
267 - OPTIM: listener: optimize cache-line packing for struct listener
268 - MINOR: tools: improve the popcount() operation
269 - MINOR: config: keep an all_proc_mask like we have all_threads_mask
270 - MINOR: global: add proc_mask() and thread_mask()
271 - MINOR: config: simplify bind_proc processing using proc_mask()
272 - MINOR: threads: make use of thread_mask() to simplify some thread calculations
273 - BUG/MINOR: compression: properly report compression stats in HTX mode
274 - BUG/MINOR: task: close a tiny race in the inter-thread wakeup
275 - BUG/MAJOR: config: verify that targets of track-sc and stick rules are present
276 - BUG/MAJOR: spoe: verify that backends used by SPOE cover all their callers' processes
277 - BUG/MAJOR: htx/backend: Make all tests on HTTP messages compatible with HTX
278 - BUG/MINOR: config: make sure to count the error on incorrect track-sc/stick rules
279 - DOC: ssl: Clarify when pre TLSv1.3 cipher can be used
280 - DOC: ssl: Stop documenting ciphers example to use
281 - BUG/MINOR: spoe: do not assume agent->rt is valid on exit
282 - BUG/MINOR: lua: initialize the correct idle conn lists for the SSL sockets
283 - BUG/MEDIUM: spoe: initialization depending on nbthread must be done last
284 - BUG/MEDIUM: server: initialize the idle conns list after parsing the config
285 - BUG/MEDIUM: server: initialize the orphaned conns lists and tasks at the end
286 - MINOR: config: make MAX_PROCS configurable at build time
287 - BUG/MAJOR: spoe: Don't try to get agent config during SPOP healthcheck
288 - BUG/MINOR: config: Reinforce validity check when a process number is parsed
289 - BUG/MEDIUM: peers: check that p->srv actually exists before using p->srv->use_ssl
290 - CONTRIB: contrib/prometheus-exporter: Add a Prometheus exporter for HAProxy
291 - BUG/MINOR: mux-h1: verify the request's version before dropping connection: keep-alive
292 - BUG: 51d: In Hash Trie, multi header matching was affected by the header names stored globaly.
293 - MEDIUM: 51d: Enabled multi threaded operation in the 51Degrees module.
294 - BUG/MAJOR: stream: avoid double free on unique_id
295 - BUILD/MINOR: stream: avoid a build warning with threads disabled
296 - BUILD/MINOR: tools: fix build warning in the date conversion functions
297 - BUILD/MINOR: peers: remove an impossible null test in intencode()
298 - BUILD/MINOR: htx: fix some potential null-deref warnings with http_find_stline
299 - BUG/MEDIUM: peers: Missing peer initializations.
300 - BUG/MEDIUM: http_fetch: fix the "base" and "base32" fetch methods in HTX mode
301 - BUG/MEDIUM: proto_htx: Fix data size update if end of the cookie is removed
302 - BUG/MEDIUM: http_fetch: fix "req.body_len" and "req.body_size" fetch methods in HTX mode
303 - BUILD/MEDIUM: initcall: Fix build on MacOS.
304 - BUG/MEDIUM: mux-h2/htx: Always set CS flags before exiting h2_rcv_buf()
305 - MINOR: h2/htx: Set the flag HTX_SL_F_BODYLESS for messages without body
306 - BUG/MINOR: mux-h1: Add "transfer-encoding" header on outgoing requests if needed
307 - BUG/MINOR: mux-h2: Don't add ":status" pseudo-header on trailers
308 - BUG/MINOR: proto-htx: Consider a XFER_LEN message as chunked by default
309 - BUG/MEDIUM: h2/htx: Correctly handle interim responses when HTX is enabled
310 - MINOR: mux-h2: Set HTX extra value when possible
311 - BUG/MEDIUM: htx: count the amount of copied data towards the final count
312 - MINOR: mux-h2: make the H2 MAX_FRAME_SIZE setting configurable
313 - BUG/MEDIUM: mux-h2/htx: send an empty DATA frame on empty HTX trailers
314 - BUG/MEDIUM: servers: Use atomic operations when handling curr_idle_conns.
315 - BUG/MEDIUM: servers: Add a per-thread counter of idle connections.
316 - MINOR: fd: add a new my_closefrom() function to close all FDs
317 - MINOR: checks: use my_closefrom() to close all FDs
318 - MINOR: fd: implement an optimised my_closefrom() function
319 - BUG/MINOR: fd: make sure my_closefrom() doesn't miss some FDs
320 - BUG/MAJOR: fd/threads, task/threads: ensure all spin locks are unlocked
321 - BUG/MAJOR: listener: Make sure the listener exist before using it.
322 - MINOR: fd: Use closefrom() as my_closefrom() if supported.
323 - BUG/MEDIUM: mux-h1: Report the right amount of data xferred in h1_rcv_buf()
324 - BUG/MINOR: channel: Set CF_WROTE_DATA when outgoing data are skipped
325 - MINOR: htx: Add function to drain data from an HTX message
326 - MINOR: channel/htx: Add function to skips output bytes from an HTX channel
327 - BUG/MAJOR: cache/htx: Set the start-line offset when a cached object is served
328 - BUG/MEDIUM: cache: Get objects from the cache only for GET and HEAD requests
329 - BUG/MINOR: cache/htx: Return only the headers of cached objects to HEAD requests
330 - BUG/MINOR: mux-h1: Always initilize h1m variable in h1_process_input()
331 - BUG/MEDIUM: proto_htx: Fix functions applying regex filters on HTX messages
332 - BUG/MEDIUM: h2: advertise to servers that we don't support push
333 - MINOR: standard: Add a function to parse uints (dotted notation).
334 - MINOR: arg: Add support for ARGT_PBUF_FNUM arg type.
335 - MINOR: http_fetch: add "req.ungrpc" sample fetch for gRPC.
336 - MINOR: sample: Add two sample converters for protocol buffers.
337 - DOC: sample: Add gRPC related documentation.
338
Willy Tarreaufba74ea2018-12-22 11:19:45 +01003392018/12/22 : 2.0-dev0
340 - BUG/MAJOR: connections: Close the connection before freeing it.
341 - REGTEST: Require the option LUA to run lua tests
342 - REGTEST: script: Process script arguments before everything else
343 - REGTEST: script: Evaluate the varnishtest command to allow quoted parameters
344 - REGTEST: script: Add the option --clean to remove previous log direcotries
345 - REGTEST: script: Add the option --debug to show logs on standard ouput
346 - REGTEST: script: Add the option --keep-logs to keep all log directories
347 - REGTEST: script: Add the option --use-htx to enable the HTX in regtests
348 - REGTEST: script: Print only errors in the results report
349 - REGTEST: Add option to use HTX prefixed by the macro 'no-htx'
350 - REGTEST: Make reg-tests target support argument.
351 - REGTEST: Fix a typo about barrier type.
352 - REGTEST: Be less Linux specific with a syslog regex.
353 - REGTEST: Missing enclosing quotes for ${tmpdir} macro.
354 - REGTEST: Exclude freebsd target for some reg tests.
355 - BUG/MEDIUM: h2: Don't forget to quit the sending_list if SUB_CALL_UNSUBSCRIBE.
356 - BUG/MEDIUM: mux-h2: Don't forget to quit the send list on error reports
357 - BUG/MEDIUM: dns: Don't prevent reading the last byte of the payload in dns_validate_response()
358 - BUG/MEDIUM: dns: overflowed dns name start position causing invalid dns error
359 - BUG/MINOR: compression/htx: Don't compress responses with unknown body length
360 - BUG/MINOR: compression/htx: Don't add the last block of data if it is empty
361 - MEDIUM: mux_h1: Implement h1_show_fd.
362 - REGTEST: script: Add support of alternatives in requited options list
363 - REGTEST: Add a basic test for the compression
364 - BUG/MEDIUM: mux-h2: don't needlessly wake up the demux on short frames
365 - REGTEST: A basic test for "http-buffer-request"
366 - BUG/MEDIUM: server: Also copy "check-sni" for server templates.
367 - MINOR: ssl: Add ssl_sock_set_alpn().
368 - MEDIUM: checks: Add check-alpn.
369 - wip
370
Willy Tarreau82230502018-12-19 19:13:17 +01003712018/12/19 : 1.9.0
372 - BUG/MEDIUM: compression: Use the right buffer pointers to compress input data
373 - BUG/MINOR: mux_pt: Set CS_FL_WANT_ROOM when count is zero in rcv_buf() callback
374 - BUG/MEDIUM: connection: Add a new CS_FL_ERR_PENDING flag to conn_streams.
375 - CONTRIB: debug: teach the "flags" utility about new conn_stream flags
376 - BUG/MEDIUM: stream-int: always clear CS_FL_WANT_ROOM before receiving
377 - BUG/MEDIUM: mux-h2: also restart demuxing when data are pending in demux
378 - BUG/MEDIUM: mux-h2: restart demuxing as soon as demux data are available
379 - BUG/MEDIUM: h2: fix aggregated cookie length computation in HTX mode
380 - MINOR: mux-h2: report more h2c, last h2s and cs information on "show fd"
381 - CONTRIB: debug: report stream-int's flag SI_FL_CLEAN_ABRT
382 - MINOR: cli/stream: add the conn_stream in "show sess" output
383 - BUG/MINOR: mux-h2: don't report a fantom h2s in "show fd"
384 - BUG/MINOR: cli/fd: don't isolate the thread for each individual fd
385 - MINOR: objtype: report a few missing types in names and base pointers
386 - BUG/MEDIUM: mux-h2: make sure to report synchronous errors after EOS
387 - BUG/MEDIUM: mux-h2: report asynchronous errors in h2_wake_some_streams()
388 - BUG/MEDIUM: mux-h2: make sure the demux also wakes streams up on errors
389 - BUG/MINOR: mux-h1: report the correct frontend in error captures
390 - BUG/MEDIUM: stream-int: also wake the stream up on end of transfer
391 - MEDIUM: h2: properly check and deduplicate the content-length header in HTX
392 - BUG/MEDIUM: stream: Forward the right amount of data before infinite forwarding
393 - BUG/MINOR: proto_htx: Call the HTX version of the function managing client cookies
394 - BUG/MEDIUM: lua/htx: Handle EOM in receive/get_line calls in HTTP applets
395 - BUG/MINOR: lua: Return an error if a legacy HTTP applet doesn't send anything
396 - MINOR: compression: Remove the thread_local variable buf_output
397 - CLEANUP: connection: rename subscription events values and event field
398 - CLEANUP: connection: rename conn->mux_ctx to conn->ctx
399 - MINOR: connection: remove an unwelcome dependency on struct stream
400 - CLEANUP: stream-int: consistently call the si/stream_int functions
401 - BUG/MEDIUM: h1: Don't shutw/shutr the connection if we have keepalive.
402 - BUG/MEDIUM: H2: Make sure htx is set even on empty frames.
403 - BUG/MEDIUM: mux-h2: pass CS_FL_ERR_PENDING to h2_wake_some_streams()
404 - MEDIUM: stream-int: always consider all CS errors on the send side
405 - BUG/MEDIUM: h2: Make sure we don't set CS_FL_ERROR if there's still data.
406 - CLEANUP: mux-h2: implement h2s_notify_{send,recv} to report events to subscribers
407 - MINOR: mux-h2: add a new function h2s_alert() to call the data layer
408 - BUG/MEDIUM: mux-h2: make use of h2s_alert() to report aborts
409 - MINOR: connection: add cs_set_error() to set the error bits
410 - CLEANUP: mux-h2: make use of cs_set_error()
411 - BUG/MINOR: mux-h2: make sure we check the conn_stream in early data
412 - BUG/MEDIUM: h2: Don't wait for flow control if the connection had a shutr.
413 - MINOR: cli/show_fd: report that a connection is back or not
414 - SCRIPTS: add the slack channel URL to the announce script
415 - CLEANUP: remove my name and address from the copyright banner
416 - DOC: mention in the readme that 1.9 is a stable version now
417
Willy Tarreau2a7d6502018-12-16 22:35:06 +01004182018/12/16 : 1.9-dev11
419 - BUG/MEDIUM: connection: Don't use the provided conn_stream if it was tried.
420 - REGTEST/MINOR: remove double body specification for server txresp
421 - BUG/MEDIUM: connections: Remove error flags when retrying.
422 - REGTEST/MINOR: skip seamless-reload test with abns socket on freebsd
423 - REGTEST/MINOR: remove health-check that can make the test fail
424 - DOC: clarify that check-sni needs an argument.
425 - DOC: refer to check-sni in the documentation of sni
426 - BUG/MEDIUM: mux-h2: fix encoding of non-GET/POST methods
427 - BUG/MINOR: mux-h1: Fix conn_mode processing for headerless outgoing messages
428 - BUG/MEDIUM: mux-h1: Add a BUSY mode to not loop on pipelinned requests
429 - BUG/MEDIUM: mux-h1: Don't loop on the headers parsing if the read0 was received
430 - BUG/MEDIUM: htx: Always do a defrag if a block value is replace by a bigger one
431 - BUG/MEDIUM: mux-h2: Don't forget to set the CS_FL_EOS flag with htx.
432 - BUG/MINOR: hpack: fix off-by-one in header name encoding length calculation
433 - CLEANUP: hpack: no need to include chunk.h, only include buf.h
434 - MINOR: hpack: simplify the len to bytes conversion
435 - MINOR: hpack: use ist2bin() to copy header names in hpack_encode_header()
436 - MINOR: hpack: optimize header encoding for short names
437 - CONTRIB: hpack: add a compressed stream generator for the encoder
438 - MEDIUM: hpack: make it possible to encode any static header name
439 - MINOR: hpack: move the length computation and encoding functions to .h
440 - MINOR: hpack: provide a function to encode a short indexed header
441 - MINOR: hpack: provide a function to encode a long indexed header
442 - MINOR: hpack: provide new functions to encode the ":status" header
443 - MEDIUM: mux-h2: make use of standard HPACK encoding functions for the status
444 - MINOR: hpack: provide a function to encode an HTTP method
445 - MEDIUM: mux-h2: make use of hpack_encode_method() to encode the method
446 - MINOR: hpack: provide a function to encode an HTTP scheme
447 - MEDIUM: mux-h2: make use of hpack_encode_scheme() to encode the scheme
448 - MINOR: hpack: provide a function to encode an HTTP path
449 - MEDIUM: mux-h2: make use of hpack_encode_path() to encode the path
450 - REGTEST: add the HTTP rules test involving HTX processing
451 - REORG: connection: centralize the conn_set_{tos,mark,quickack} functions
452 - MEDIUM: cli: rework the CLI proxy parser
453 - MINOR: cli: parse prompt command in the CLI proxy
454 - MINOR: cli: implements 'quit' in the CLI proxy
455 - BUG/MINOR: cli: wait for payload data even without prompt
456 - MEDIUM: cli: handle payload in CLI proxy
457 - MINOR: cli: use pcli_flags for prompt activation
458 - MINOR: compression: Rename the function check_legacy_http_comp_flt()
459 - MINOR: cache/htx: Don't use the same cache on HTX and legacy HTTP proxies
460 - MINOR: cache: Register the cache as a data filter only if response is cacheable
461 - MEDIUM: cache/htx: Add the HTX support into the cache
462 - MINOR: cache: Improve and simplify the cache configuration check
463 - MINOR: filters: Export the name of known filters
464 - MEDIUM: cache/compression: Add a way to safely combined compression and cache
465 - MEDIUM: cache: Require an explicit filter declaration if other filters are used
466 - REORG: htx: merge types+proto into common/htx.h
467 - REORG: http: create http_msg.c to place there some legacy HTTP parts
468 - REORG: h1: move legacy http functions to http_msg.c
469 - REORG: h1: move the h1_state definition to proto_http
470 - CLEANUP: h1: remove some occurrences of unneeded h1.h inclusions
471 - REORG: h1: merge types+proto into common/h1.h
472 - CLEANUP: stream: remove SF_TUNNEL, SF_INITIALIZED, SF_CONN_TAR
473 - MEDIUM: mux-h1: implement true zero-copy of DATA blocks
474 - MINOR: config: round up global.tune.bufsize to the next multiple of 2 void*
475 - BUG/MINOR: mux-h2: refrain from muxing during the preface
476 - BUG/MINOR: mux-h2: advertise a larger connection window size
477 - DOC: master CLI documentation in management.txt
478 - MINOR: mux-h2: avoid copying large blocks into full buffers
479 - MEDIUM: mux-h2: implement true zero-copy send of large HTX DATA blocks
480 - MINOR: mux-h2: force reads to be HTX-aligned in HTX mode
481 - MINOR: cli: change 'show proc' output of old processes
482 - BUG/MEDIUM: mux-h1: Fix the zero-copy on output for chunked messages
483 - BUG: dns: Prevent stack-exhaustion via recursion loop in dns_read_name
484 - BUG: dns: Prevent out-of-bounds read in dns_read_name()
485 - BUG: dns: Prevent out-of-bounds read in dns_validate_dns_response()
486 - BUG: dns: Fix out-of-bounds read via signedness error in dns_validate_dns_response()
487 - BUG: dns: Fix off-by-one write in dns_validate_dns_response()
488 - REGTEST: the cache regtest requires haproxy 1.9
489 - MEDIUM: cli: store CLI level in the appctx
490 - MEDIUM: cli: show and change CLI permissions
491 - CLEANUP: cli: use dedicated define instead of appctx ones
492 - MEDIUM: cli: handle CLI level from the master CLI
493 - BUG/MEDIUM: cli: handle correctly prefix and payload
494 - BUILD: Makefile: Implements the help target
495 - REGTESTS: adjust the http-rules regtest to support window updates
496 - BUG/MEDIUM: connections: Remove CS_FL_EOS | CS_FL_REOS on retry.
497 - BUG/MEDIUM: stream_interface: Don't report read0 if we were not connected.
498 - BUG/MEDIUM: connection: Just make sure we closed the fd on connection failure.
499 - MEDIUM: mux: Add an optional "reset" method.
500 - BUG/MEDIUM: mux-h1: Fix loop if server closes its connection with unparsed data
501 - MINOR: mux-h1: Add helper functions to wake a stream from recv or send
502 - BUG/MEDIUM: mux-h1: Wake the stream for send once the connection is established
503 - BUG/MEDIUM: connections: Don't attempt to reuse an unusable connection.
504 - MEDIUM: htx: Try to take a connection over if it has no owner.
505 - REGTEST: Reg testing improvements.
506 - REGTEST: Add a first test for health-checks.
507 - REGTEST: Reg test for "check" health-check option.
508 - REGTEST: level 1 health-check test 2.
509 - REGTEST: Add miscellaneous reg tests for health-checks.
510 - REGTEST: add a few HTTP messaging tests
511 - MINOR: lb: make the leastconn algorithm more accurate
512 - REGTEST: fix missing space in checks/s00001
513 - REGTEST: http-messaging: add "option http-buffer-request" for H2 tests
514 - BUG/MEDIUM: cache: fix random crash on filter parser's error path
515 - MINOR: connection: realign empty buffers in muxes, not transport layers
516 - MINOR: mux_h1/h2: simplify the zero-copy Rx alignment
517 - MINOR: backend: count the number of connect and reuse per server and per backend
518 - BUG/MINOR: stats: fix inversion of failed header rewrites and other statuses
519 - MINOR: tools: increase the number of ITOA strings to 16
520 - MINOR: cache: report the number of cache lookups and cache hits
521 - MEDIUM: tasks: check the global task mask instead of the thread number
522 - MINOR: mworker: set all_threads_mask and pid_bit to 1
523 - BUG/MINOR: proto_htx: Fix htx_res_set_status to also set the reason
524 - BUG/MINOR: stats: Parse post data for HTX streams
525 - MINOR: payload/htx: Adapt smp_fetch_len to be HTX aware
526 - MINOR: http_fecth: Implement body_len and body_size sample fetches for the HTX
527 - MAJOR: lua: Forbid calls to Channel functions for LUA scripts in HTTP proxies
528 - MEDIUM: lua/htx: Adapt functions of the HTTP to be compatible with HTX
529 - MINOR: lua/htx: Adapt the functions get_in_length and is_full to be HTX aware
530 - MAJOR: lua/htx: Adapt HTTP applets to support HTX messages
531 - MINOR: lua: Remove useless check on the messages state in HTTP functions
532 - BUG/MEDIUM: htx: When performing zero-copy, start from the right offset.
533 - BUG/MINOR: mworker: don't use unitialized mworker_proc struct
534 - MINOR: mworker/cli: indicate in the master prompt when a reload failed
535 - MINOR: cli: implements 'reload' on master CLI
536 - BUG/MEDIUM: log: Don't call sample_fetch_as_type if we don't have a stream.
537 - BUG/MEDIUM: mux-h1: make sure we always have at least one HTX block to send
538 - BUG/MAJOR: backend: only update server's counters when the server exists
539 - MINOR: tools: preset the port of fd-based "sockets" to zero
540 - BUG/MINOR: log: fix logging to both FD and IP
541 - REGTEST: Add a reg test for HTTP cookies.
542 - BUILD: ssl: Fix compilation without deprecated OpenSSL 1.1 APIs
543 - BUILD: thread: properly report multi-thread support
544 - BUG/MINOR: logs: leave startup-logs global and not per-thread
545 - BUG/MEDIUM: threads: don't close the thread waker pipe if not init
546 - BUG/MAJOR: compression/cache: Make it really works with these both filters
547 - BUG/MEDIUM: h2: Don't forget to destroy the h2s after deferred shut.
548 - MEDIUM: proxy: Set http-reuse safe as default.
549 - MEDIUM: servers: Add a command to limit the number of idling connections.
550 - MEDIUM: servers: Replace idle-timeout with pool-purge-delay.
551 - MEDIUM: mux: Destroy the stream before trying to add the conn to the idle list.
552 - MEDIUM: mux: provide the session to the init() and attach() method.
553 - MEDIUM: sessions: Don't keep an infinite number of idling connections.
554 - MEDIUM: servers: Be more agressive when adding H2 connection to idle lists.
555 - MEDIUM: mux_h2: Always set CS_FL_NOT_FIRST for new conn_streams.
556 - BUG/MEDIUM: htx/cache: use the correct class of error codes on abort
557 - BUG/MINOR: cache: also consider CF_SHUTR to abort delivery
558 - MINOR: pools: Cast to volatile int * instead of int *.
559 - MINOR: debug: make the ABORT_NOW macro use a volatile int
560 - BUG/MEDIUM: h2: Don't destroy the h2s if it still has a cs attached.
561 - BUG/MEDIUM: mux-h1: don't try to process an empty input buffer
562 - DOC: clarify the agent-check status line syntax
563 - BUG/MAJOR: hpack: fix length check for short names encoding
564 - DOC: split the README into README + INSTALL
565
Willy Tarreau72e92272018-12-08 16:20:55 +01005662018/12/08 : 1.9-dev10
567 - MINOR: htx: Rename functions htx_*_to_str() to be H1 specific
568 - BUG/MINOR: htx: Force HTTP/1.1 on H1 formatting when version is 1.1 or above
569 - BUG/MINOR: fix ssl_fc_alpn and actually add ssl_bc_alpn
570 - BUG/MEDIUM: mworker: stop proxies which have no listener in the master
571 - BUG/MEDIUM: h1: Destroy a connection after detach if it has no owner.
572 - BUG/MEDIUM: h2: Don't forget to wake the tasklet after shutr/shutw.
573 - BUG/MINOR: flt_trace/compression: Use the right flag to add the HTX support
574 - BUG/MEDIUM: stream_interface: Make REALLY sure we read all the data.
575 - MEDIUM: mux-h1: Revamp the way subscriptions are handled.
576 - BUG/MEDIUM: mux-h1: Always set CS_FL_RCV_MORE when data are received in h1_recv()
577 - MINOR: mux-h1: Make sure to return 1 in h1_recv() when needed
578 - BUG/MEDIUM: mux-h1: Release the mux H1 in h1_process() if there is no h1s
579 - BUG/MINOR: proto_htx: Truncate the request when an error is detected
580 - BUG/MEDIUM: h2: When sending in HTX, make sure the caller knows we sent all.
581 - BUG/MEDIUM: mux-h2: properly update the window size in HTX mode
582 - BUG/MEDIUM: mux-h2: make sure to always report HTX EOM when consumed by headers
583 - BUG/MEDIUM: mux-h2: stop sending HTX once the mux is blocked
584 - BUG/MEDIUM: mux-h2: don't send more HTX data than requested
585 - MINOR: mux-h2: stop on non-DATA and non-EOM HTX blocks
586 - BUG/MEDIUM: h1: Correctly report used data with no len.
587 - MEDIUM: h1: Realign the ibuf before calling rcv_buf if needed.
588 - BUG/MEDIUM: mux_pt: Always set CS_FL_RCV_MORE.
589 - MINOR: htx: make htx_from_buf() adjust the size only on new buffers
590 - MINOR: htx: add buf_room_for_htx_data() to help optimize buffer transfers
591 - MEDIUM: mux-h1: make use of buf_room_for_htx_data() instead of b_room()
592 - MEDIUM: mux-h1: attempt to zero-copy Rx DATA transfers
593 - MEDIUM: mux-h1: avoid a double copy on the Tx path whenever possible
594 - BUG/MEDIUM: stream-int: don't mark as blocked an empty buffer on Rx
595 - BUG/MINOR: mux-h1: Check h1m flags to set the server conn_mode on request path
596 - MEDIUM: htx: Rework conversion from a buffer to an htx structure
597 - MEDIUM: channel/htx: Add functions for forward HTX data
598 - MINOR: mux-h1: Don't adjust anymore the amount of data sent in h1_snd_buf()
599 - CLEANUP: htx: Fix indentation here and there in HTX files
600 - MINOR: mux-h1: Allow partial data consumption during outgoing data processing
601 - BUG/MEDIUM: mux-h2: use the correct offset for the HTX start line
602 - BUG/MEDIUM: mux-h2: stop sending using HTX on errors
603 - MINOR: mux-h1: Drain obuf if the output is closed after sending data
604 - BUG/MEDIUM: mworker: stop every tasks in the master
605 - BUG/MEDIUM: htx: Set the right start-line offset after a defrag
606 - BUG/MEDIUM: stream: Don't dereference s->txn when it is not there yet.
607 - BUG/MEDIUM: connections: Reuse an already attached conn_stream.
608 - MINOR: stream-int: add a new blocking condition on the remote connection
609 - BUG/MEDIUM: stream-int: don't attempt to receive if the connection is not established
610 - BUG/MEDIUM: lua: block on remote connection establishment
611 - BUG/MEDIUM: mworker: fix several typos in mworker_cleantasks()
612 - SCRIPTS/REGTEST: merge grep+sed into sed in run-regtests
613 - BUG/MEDIUM: connections: Split CS_FL_RCV_MORE into 2 flags.
614 - BUG/MEDIUM: h1: Don't free the connection if it's an outgoing connection.
615 - BUG/MEDIUM: h1: Set CS_FL_REOS if we had a read0.
616 - BUG/MEDIUM: mux-h1: Be sure to have a conn_stream to set CS_FL_REOS in h1_recv
617 - REGTEST: Move LUA reg test 4 to level 1.
618 - MINOR: ist: add functions to copy/uppercase/lowercase into a buffer or string
619 - MEDIUM: ist: always turn header names to lower case
620 - MINOR: h2: don't turn HTX header names to lower case anymore
621 - MEDIUM: ist: use local conversion arrays to case conversion
622 - MINOR: htx: switch to case sensitive search of lower case header names
623 - MINOR: mux-h1: Set CS_FL_EOS when read0 is detected and no data are pending
624 - BUG/MINOR: stream-int: Process read0 even if no data was received in si_cs_recv
625 - REGTEST: fix the Lua test file name in test lua/h00002 :-)
626 - REGTEST: add a basic test for HTTP rules manipulating headers
627 - BUG/MEDIUM: sample: Don't treat SMP_T_METH as SMP_T_STR.
628 - MINOR: sample: add bc_http_major
629 - BUG/MEDIUM: htx: fix typo in htx_replace_stline() making it fail all the time
630 - REGTEST: make the HTTP rules test compatible with HTTP/2 as well
631 - BUG/MEDIUM: h2: Don't try to chunk data when using HTX.
632 - MINOR: compiler: add a new macro ALREADY_CHECKED()
633 - BUILD: h2: mark the start line already checked to avoid warnings
634 - BUG/MINOR: mux-h1: Remove the connection header when it is useless
635
Willy Tarreauda7e3be2018-12-02 19:31:37 +01006362018/12/02 : 1.9-dev9
637 - BUILD/MINOR: ssl: fix build with non-alpn/non-npn libssl
638 - BUG/MINOR: mworker: Do not attempt to close(2) fd -1
639 - BUILD: compression: fix build error with DEFAULT_MAXZLIBMEM
640 - MINOR: compression: always create the compression pool
641 - BUG/MEDIUM: mworker: fix FD leak upon reload
642 - BUILD: htx: fix fprintf format inconsistency on 32-bit platforms
643 - BUILD: buffers: buf.h requires unistd to get ssize_t on libmusl
644 - MINOR: initcall: introduce a way to register init functions to call at boot
645 - MINOR: init: process all initcalls in order at boot time
646 - MEDIUM: init: convert all trivial registration calls to initcalls
647 - MINOR: thread: provide a set of lock initialisers
648 - MINOR: threads: add new macros to declare self-initializing locks
649 - MEDIUM: init: use self-initializing spinlocks and rwlocks
650 - MINOR: initcall: apply initcall to all register_build_opts() calls
651 - MINOR: initcall: use initcalls for most post_{check,deinit} and per_thread*
652 - MINOR: initcall: use initcalls for section parsers
653 - MINOR: memory: add a callback function to create a pool
654 - MEDIUM: init: use initcall for all fixed size pool creations
655 - MEDIUM: memory: use pool_destroy_all() to destroy all pools on deinit()
656 - MEDIUM: initcall: use initcalls for a few initialization functions
657 - MEDIUM: memory: make the pool cache an array and not a thread_local
658 - MINOR: ssl: free ctx when libssl doesn't support NPN
659 - BUG/MINOR: proto_htx: only mark connections private if NTLM is detected
660 - MINOR: h2: make struct h2_ops static
661 - BUG/MEDIUM: mworker: avoid leak of client socket
662 - REORG: mworker: declare master variable in global.h
663 - BUG/MEDIUM: listeners: CLOEXEC flag is not correctly set
664 - CLEANUP: http: Fix typo in init_http's comment
665 - BUILD: Makefile: Disable -Wcast-function-type if it exists.
666 - BUG/MEDIUM: h2: Don't bogusly error if the previous stream was closed.
667 - REGTEST/MINOR: script: add run-regtests.sh script
668 - REGTEST: Add a basic test for the cache.
669 - BUG/MEDIUM: mux_pt: Don't forget to unsubscribe() on attach.
670 - BUG/MINOR: ssl: ssl_sock_parse_clienthello ignores session id
671 - BUG/MEDIUM: connections: Wake the stream once the mux is chosen.
672 - BUG/MEDIUM: connections: Don't forget to detach the connection from the SI.
673 - BUG/MEDIUM: stream_interface: Don't check if the handshake is done.
674 - BUG/MEDIUM: stream_interface: Make sure we read all the data available.
675 - BUG/MEDIUM: h2: Call h2_process() if there's an error on the connection.
676 - REGTEST: Fix several issues.
677 - REGTEST: lua: check socket functionality from a lua-task
678 - BUG/MEDIUM: session: Remove the session from the session_list in session_free.
679 - BUG/MEDIUM: streams: Don't assume we have a CS in sess_update_st_con_tcp.
680 - BUG/MEDIUM: connections: Don't assume we have a mux in connect_server().
681 - BUG/MEDIUM: connections: Remove the connection from the idle list before destroy.
682 - BUG/MEDIUM: session: properly clean the outgoing connection before freeing.
683 - BUG/MEDIUM: mux_pt: Don't try to send if handshake is not done.
684 - MEDIUM: connections: Put H2 connections in the idle list if http-reuse always.
685 - MEDIUM: h2: Destroy a connection with no stream if it has no owner.
686 - MAJOR: sessions: Store multiple outgoing connections in the session.
687 - MEDIUM: session: Steal owner-less connections on end of transaction.
688 - MEDIUM: server: Be smarter about deciding to reuse the last server.
689 - BUG/MEDIUM: Special-case http_proxy when dealing with outgoing connections.
690 - BUG/MINOR: cfgparse: Fix transition between 2 sections with the same name
691 - BUG/MINOR: http: Use out buffer instead of trash to display error snapshot
692 - BUG/MINOR: htx: Fix block size calculation when a start-line is added/replaced
693 - BUG/MINOR: mux-h1: Fix processing of "Connection: " header on outgoing messages
694 - BUG/MEDIUM: mux-h1: Reset the H1 parser when an outgoing message is processed
695 - BUG/MINOR: proto_htx: Send outgoing data to client to start response processing
696 - BUG/MINOR: htx: Stop a header or a start line lookup on the first EOH or EOM
697 - BUG/MINOR: connection: report mux modes when HTX is supported
698 - MINOR: htx: add a function to cut the beginning of a DATA block
699 - MEDIUM: conn_stream: Add a way to get mux's info on a CS from the upper layer
700 - MINOR: mux-h1: Implement get_cs_info() callback
701 - MINOR: stream: Rely on CS's info if it exists and fallback on session's ones
702 - MINOR: proto_htx: Use conn_stream's info to set t_idle duration when possible
703 - MINOR: mux-h1: Don't rely on the stream anymore in h1_set_srv_conn_mode()
704 - MINOR: mux-h1: Write last chunk and trailers if not found in the HTX message
705 - MINOR: mux-h1: Be prepare to fail when EOM is added during trailers parsing
706 - MINOR: mux-h1: Subscribe to send in h1_snd_buf() when not all data have been sent
707 - MINOR: mux-h1: Consume channel's data in a loop in h1_snd_buf()
708 - MEDIUM: mux-h1: Add keep-alive outgoing connections in connections list
709 - MINOR: htx: Add function to add an HTX block just before another one
710 - MINOR: htx: Add function to iterate on an HTX message using HTX blocks
711 - MINOR: htx: Add a function to find the HTX block corresponding to a data offset
712 - MINOR: stats: Don't add end-of-data marker and trailers in the HTX response
713 - MEDIUM: htx: Change htx_sl to be a struct instead of an union
714 - MINOR: htx: Add the start-line offset for the HTX message in the HTX structure
715 - MEDIUM: htx: Don't rely on h1_sl anymore except during H1 header parsing
716 - MINOR: proto-htx: Use the start-line flags to set the HTTP messsage ones
717 - MINOR: htx: Add BODYLESS flags on the HTX start-line and the HTTP message
718 - MINOR: proto_htx: Use full HTX messages to send 100-Continue responses
719 - MINOR: proto_htx: Use full HTX messages to send 103-Early-Hints responses
720 - MINOR: proto_htx: Use full HTX messages to send 401 and 407 responses
721 - MINOR: proto_htx: Send valid HTX message when redir mode is enabled on a server
722 - MINOR: proto_htx: Send valid HTX message to send 30x responses
723 - MEDIUM: proto_htx: Convert all HTTP error messages into HTX
724 - MINOR: mux-h1: Process conn_mode on the EOH when no connection header is found
725 - MINOR: mux-h1: Change client conn_mode on an explicit close for the response
726 - MINOR: mux-h1: Capture bad H1 messages
727 - MAJOR: filters: Adapt filters API to be compatible with the HTX represenation
728 - MEDIUM: proto_htx/filters: Add data filtering during the forwarding
729 - MINOR: flt_trace: Adapt to be compatible with the HTX representation
730 - MEDIUM: compression: Adapt to be compatible with the HTX representation
731 - MINOR: h2: implement H2->HTX request header frame transcoding
732 - MEDIUM: mux-h2: register mux for both HTTP and HTX modes
733 - MEDIUM: mux-h2: make h2_rcv_buf() support HTX transfers
734 - MEDIUM: mux-h2: make h2_snd_buf() HTX-aware
735 - MEDIUM: mux-h2: add basic H2->HTX transcoding support for headers
736 - MEDIUM: mux-h2: implement emission of H2 headers frames from HTX blocks
737 - MEDIUM: mux-h2: implement the emission of DATA frames from HTX DATA blocks
738 - MEDIUM: mux-h2: support passing H2 DATA frames to HTX blocks
739 - BUG/MINOR: cfgparse: Fix the call to post parser of the last sections parsed
740 - BUG/MEDIUM: mux-h2: don't lose the first response header in HTX mode
741 - BUG/MEDIUM: mux-h2: remove the HTX EOM block on H2 response headers
742 - MINOR: listener: the mux_proto entry in the bind_conf is const
743 - MINOR: connection: create conn_get_best_mux_entry()
744 - MINOR: server: the mux_proto entry in the server is const
745 - MINOR: config: make sure to associate the proper mux to bind and servers
746 - MINOR: hpack: add ":path" to the list of common header fields
747 - MINOR: h2: add new functions to produce an HTX message from an H2 response
748 - MINOR: mux-h2: mention that the mux is compatible with both sides
749 - MINOR: mux-h2: implement an outgoing stream allocator : h2c_bck_stream_new()
750 - MEDIUM: mux-h2: start to create the outgoing mux
751 - MEDIUM: mux-h2: implement encoding of H2 request on the backend side
752 - MEDIUM: mux-h2: make h2_frt_decode_headers() direction-agnostic
753 - MEDIUM: mux-h2: make h2_process_demux() capable of processing responses as well
754 - MEDIUM: mux-h2: Implement h2_attach().
755 - MEDIUM: mux-h2: Don't bother flagging outgoing connections as TOOMANY.
756 - REGTEST: Fix LEVEL 4 script 0 of "connection" module.
757 - MINOR: connection: Fix a comment.
758 - MINOR: mux: add a "max_streams" method.
759 - MEDIUM: servers: Add a way to keep idle connections alive.
760 - CLEANUP: fix typos in the htx subsystem
761 - CLEANUP: Fix typo in the chunk headers file
762 - CLEANUP: Fix typos in the h1 subsystem
763 - CLEANUP: Fix typos in the h2 subsystem
764 - CLEANUP: Fix a typo in the mini-clist header
765 - CLEANUP: Fix a typo in the proto_htx subsystem
766 - CLEANUP: Fix typos in the proto_tcp subsystem
767 - CLEANUP: Fix a typo in the signal subsystem
768 - CLEANUP: Fix a typo in the session subsystem
769 - CLEANUP: Fix a typo in the queue subsystem
770 - CLEANUP: Fix typos in the shctx subsystem
771 - CLEANUP: Fix typos in the socket pair protocol subsystem
772 - CLEANUP: Fix typos in the map management functions
773 - CLEANUP: Fix typo in the fwrr subsystem
774 - CLEANUP: Fix typos in the cli subsystem
775 - CLEANUP: Fix typo in the 51d subsystem
776 - CLEANUP: Fix a typo in the base64 subsystem
777 - CLEANUP: Fix a typo in the connection subsystem
778 - CLEANUP: Fix a typo in the protocol header file
779 - CLEANUP: Fix a typo in the checks header file
780 - CLEANUP: Fix typos in the file descriptor subsystem
781 - CLEANUP: Fix a typo in the listener subsystem
782 - BUG/MINOR: lb-map: fix unprotected update to server's score
783 - BUILD: threads: fix minor build warnings when threads are disabled
784
Willy Tarreau0b936ad2018-11-25 09:16:46 +01007852018/11/25 : 1.9-dev8
786 - REORG: config: extract the global section parser into cfgparse-global
787 - REORG: config: extract the proxy parser into cfgparse-listen.c
788 - BUILD: update the list of supported targets and compilers in makefile and readme
789 - BUILD: reorder the objects in the makefile
790 - BUILD: Makefile: make "V=1" show some of the commands that are executed
791 - BUILD: Makefile: add the quiet mode to a few more targets
792 - BUILD: Makefile: add "$(Q)" to clean, tags and cscope targets
793 - BUILD: Makefile: switch to quiet mode by default for CC/LD/AR
794 - MINOR: cli: format `show proc` to be more readable
795 - MINOR: cli: displays uptime in `show proc`
796 - MINOR: cli: show master information in 'show proc'
797 - BUG/MEDIUM: hpack: fix encoding of "accept-ranges" field
798 - MAJOR: mux-h1: Remove the rxbuf and decode HTTP messages in channel's buffer
799 - BUG/MINOR: mux-h1: Enable keep-alive on server side
800 - BUG/MEDIUM: mux-h1: Fix freeze when the kernel splicing is used
801 - BUG/MEDIUM: mux-h1: Don't set the flag CS_FL_RCV_MORE when nothing was parsed
802 - BUG/MINOR: stats/htx: Remove channel's output when the request is eaten
803 - BUG/MINOR: proto_htx: Fix request/response synchronisation on error
804 - MINOR: stream-int: Notify caller when an error is reported after a rcv_pipe()
805 - MINOR: stream-int: Notify caller when an error is reported after a rcv_buf()
806 - BUG/MINOR: stream-int: Don't call snd_buf() if there are still data in the pipe
807 - MINOR: stream-int: remove useless checks on CS and conn flags in si_cs_send()
808 - BUG/MINOR: config: Be aware of the HTX during the check of mux protocols
809 - BUG/MINOR: mux-htx: Fix bad test on h1c flags in h1_recv_allowed()
810 - MEDIUM: mworker: wait mode use standard init code path
811 - MINOR: log: introduce ha_notice()
812 - MINOR: mworker: use ha_notice to announce a new worker
813 - BUG/MEDIUM: http_fetch: Make sure name is initialized before http_find_header.
814 - MINOR: cli: add mworker_accept_wrapper to 'show fd'
815 - MEDIUM: signal: signal_unregister() removes every handlers
816 - BUG/MEDIUM: mworker: unregister the signals of main()
817 - MINOR: cli: add a few missing includes in proto/cli.h
818 - REORG: time/activity: move activity measurements to activity.{c,h}
819 - MINOR: activity: report the average loop time in "show activity"
820 - MINOR: activity: add configuration and CLI support for "profiling.tasks"
821 - MEDIUM: tasks: collect per-task CPU time and latency
822 - MINOR: sample: add cpu_calls, cpu_ns_avg, cpu_ns_tot, lat_ns_avg, lat_ns_tot
823 - MINOR: cli/activity: rename the stolen CPU time fields to mention milliseconds
824 - BUG/MINOR: cli: Fix memory leak
825 - BUG/MINOR: mworker: fix FD leak and memory leak in error path
826 - MINOR: poller: move the call of tv_update_date() back to the pollers
827 - MINOR: polling: add an option to support busy polling
828 - MINOR: server: Add "alpn" and "npn" keywords.
829 - MEDIUM: connection: Don't bother reactivating polling after connection retry.
830 - MAJOR: connections: Defer mux creation for outgoing connection if alpn is set.
831 - MEDIUM: ssl: Add ssl_bc_alpn and ssl_bc_npn sample fetches.
832 - MINOR: servers: Free [idle|safe|priv]_conns on exit.
833 - REGTEST: add the option to test only a specific set of files
834 - REGTEST: add a test for connections to a "dispatch" address
835 - BUG/MEDIUM: connections: Don't reset the conn flags in *connect_server().
836 - MINOR: server: Only defined conn_complete_server if USE_OPENSSL is set.
837 - BUG/MEDIUM: servers: Don't check if we have a conn_stream too soon.
838 - BUG/MEDIUM: sessions: Set sess->origin to NULL if the origin was destroyed.
839 - MEDIUM: servers: Store the connection in the SI until we have a mux.
840 - BUG/MEDIUM: h2: wake the processing task up after demuxing
841 - BUG/MEDIUM: h2: restart demuxing after releasing buffer space
842
Willy Tarreau5c0e41b2018-11-18 22:33:00 +01008432018/11/18 : 1.9-dev7
844 - BUILD: cache: fix a build warning regarding too large an integer for the age
845 - CLEANUP: fix typos in the comments of the Makefile
846 - CLEANUP: fix a typo in a comment for the contrib/halog subsystem
847 - CLEANUP: fix typos in comments for the contrib/modsecurity subsystem
848 - CLEANUP: fix typos in comments for contrib/spoa_example
849 - CLEANUP: fix typos in comments for contrib/wireshark-dissectors
850 - DOC: Fix typos in README and CONTRIBUTING
851 - MINOR: log: slightly improve error message syntax on log failure
852 - DOC: logs: the format directive was missing from the second log part
853 - MINOR: log: report the number of dropped logs in the stats
854 - MEDIUM: log: add support for logging to existing file descriptors
855 - MEDIUM: log: support a new "short" format
856 - MEDIUM: log: add a new "raw" format
857 - BUG/MEDIUM: stream-int: change the way buffer room is requested by a stream-int
858 - BUG/MEDIUM: stream-int: convert some co_data() checks to channel_is_empty()
859 - MINOR: namespaces: don't build namespace.c if disabled
860 - BUILD/MEDIUM: threads/affinity: DragonFly build fix
861 - MINOR: http: Add new "early-hint" http-request action.
862 - MINOR: http: Make new "early-hint" http-request action really be parsed.
863 - MINOR: http: Implement "early-hint" http request rules.
864 - MINOR: doc: Add information about "early-hint" http-request action.
865 - DOC: early-hints: fix truncated line.
866 - MINOR: mworker: only close std{in,out,err} in daemon mode
867 - BUG/MEDIUM: log: don't CLOEXEC the inherited FDs
868 - BUG/MEDIUM: Make sure stksess is properly aligned.
869 - BUG/MEDIUM: stream-int: make failed splice_in always subscribe to recv
870 - BUG/MEDIUM: stream-int: clear CO_FL_WAIT_ROOM after splicing data in
871 - BUG/MINOR: stream-int: make sure not to go through the rcv_buf path after splice()
872 - CONTRIB: debug: fix build related to conn_stream flags change
873 - REGTEST: fix scripts 1 and 3 to accept development version
874 - BUG/MINOR: http_fetch: Remove the version part when capturing the request uri
875 - MINOR: http: Regroup return statements of http_req_get_intercept_rule at the end
876 - MINOR: http: Regroup return statements of http_res_get_intercept_rule at the end
877 - BUG/MINOR: http: Be sure to sent fully formed HTTP 103 responses
878 - MEDIUM: jobs: support unstoppable jobs for soft stop
879 - MEDIUM: listeners: support unstoppable listener
880 - MEDIUM: cli: worker socketpair is unstoppable
881 - BUG/MINOR: stream-int: set SI_FL_WANT_PUT in sess_establish()
882 - MINOR: stream: move the conn_stream specific calls to the stream-int
883 - BUG/MINOR: config: Copy default error messages when parsing of a backend starts
884 - CLEANUP: h2: minimum documentation for recent API changes
885 - MINOR: mux: implement a get_first_cs() method
886 - MINOR: stream-int: make conn_si_send_proxy() use cs_get_first()
887 - MINOR: stream-int: relax the forwarding rules in stream_int_notify()
888 - MINOR: stream-int: expand the flags to 32-bit
889 - MINOR: stream-int: rename SI_FL_WAIT_ROOM to SI_FL_RXBLK_ROOM
890 - MINOR: stream-int: introduce new SI_FL_RXBLK flags
891 - MINOR: stream-int: add new functions si_{rx,tx}_{blocked,endp_ready}()
892 - MINOR: stream-int: replace SI_FL_WANT_PUT with !SI_FL_RX_WAIT_EP
893 - MINOR: stream-int: use si_rx_blocked()/si_tx_blocked() to check readiness
894 - MEDIUM: stream-int: use si_rx_buff_{rdy,blk} to report buffer readiness
895 - MINOR: stream-int: replace si_{want,stop}_put() with si_rx_endp_{more,done}()
896 - MEDIUM: stream-int: update the endp polling status only at the end of si_cs_recv()
897 - MINOR: stream-int: make si_sync_recv() simply check ENDP before si_cs_recv()
898 - MINOR: stream-int: automatically mark applets as ready if they block on the channel
899 - MEDIUM: stream-int: fix the si_cant_put() calls used for end point readiness
900 - MEDIUM: stream-int: fix the si_cant_put() calls used for buffer readiness
901 - MEDIUM: stream-int: use si_rx_shut_blk() to indicate the SI is closed
902 - MEDIUM: stream-int: unconditionally call si_chk_rcv() in update and notify
903 - MEDIUM: stream-int: make use of si_rx_chan_{rdy,blk} to control the stream-int from the channel
904 - MINOR: stream-int: replace si_cant_put() with si_rx_room_{blk,rdy}()
905 - MEDIUM: connections: Wait until the connection is established to try to recv.
906 - MEDIUM: mux: Teach the mux_pt how to deal with idle connections.
907 - MINOR: mux: Add a new "avail_streams" method.
908 - MINOR: mux: Add a destroy() method.
909 - MINOR: sessions: Start to store the outgoing connection in sessions.
910 - MAJOR: connections: Detach connections from streams.
911 - MINOR: conn_stream: Add a flag to notify the mux it should flush its buffers
912 - MINOR: htx: Add proto_htx.c file
913 - MINOR: conn_stream: Add a flag to notify the mux it must respect the reserve
914 - MINOR: http: Add standalone functions to parse a start-line or a header
915 - MINOR: http: Call http_send_name_header with the stream instead of the txn
916 - MINOR: conn_stream: Add a flag to notify the SI some data were received
917 - MINOR: http: Add macros to check if a stream uses the HTX representation
918 - MEDIUM: proto_htx: Add HTX analyzers and use it when the mux H1 is used
919 - MEDIUM: mux-h1: Add dummy mux to handle HTTP/1.1 connections
920 - MEDIUM: mux-h1: Add parsing of incoming and ougoing HTTP messages
921 - MAJOR: mux-h1/proto_htx: Handle keep-alive connections in the mux
922 - MEDIUM: mux-h1: Add support of the kernel TCP splicing to forward data
923 - MEDIUM: htx: Add API to deal with the internal representation of HTTP messages
924 - MINOR: http_htx: Add functions to manipulate HTX messages in http_htx.c
925 - MINOR: proto_htx: Add some functions to handle HTX messages
926 - MAJOR: mux-h1/proto_htx: Switch mux-h1 and HTX analyzers on the HTX representation
927 - MINOR: http_htx: Add functions to replace part of the start-line
928 - MINOR: http_htx: Add functions to retrieve a specific occurrence of a header
929 - MINOR: proto_htx: Rewrite htx_apply_redirect_rule to handle HTX messages
930 - MINOR: proto_htx: Add the internal function htx_del_hdr_value
931 - MINOR: proto_htx: Add the internal function htx_fmt_res_line
932 - MINOR: proto_htx: Add functions htx_transform_header and htx_transform_header_str
933 - MINOR: proto_htx: Add functions htx_req_replace_stline and htx_res_set_status
934 - MINOR: proto_htx: Add function to build and send HTTP 103 responses
935 - MINOR: proto_htx: Add functions htx_req_get_intercept_rule and htx_res_get_intercept_rule
936 - MINOR: proto_htx: Add functions to apply req* and rsp* rules on HTX messages
937 - MINOR: proto_htx: Add functions to manage cookies on HTX messages
938 - MINOR: proto_htx: Add functions to check the cacheability of HTX messages
939 - MINOR: proto_htx: Add functions htx_send_name_header
940 - MINOR: proto_htx: Add functions htx_perform_server_redirect
941 - MINOR: proto_htx: Add functions to handle the stats applet
942 - MEDIUM: proto_htx: Adapt htx_process_req_common to handle HTX messages
943 - MEDIUM: proto_htx: Adapt htx_process_request to handle HTX messages
944 - MINOR: proto_htx: Adapt htx_process_tarpit to handle HTX messages
945 - MEDIUM: proto_htx: Adapt htx_wait_for_request_body to handle HTX messages
946 - MEDIUM: proto_htx: Adapt htx_process_res_common to handle HTX messages
947 - MINOR: http_fetch: Add smp_prefetch_htx
948 - MEDIUM: http_fetch: Adapt all fetches to handle HTX messages
949 - MEDIUM: mux-h1: Wait for connection establishment before consuming channel's data
950 - MINOR: stats/htx: Adapt the stats applet to handle HTX messages
951 - MINOR: stream: Don't reset sov value with HTX messages
952 - MEDIUM: mux-h1: Handle errors and timeouts in the stream
953 - MINOR: filters/htx: Forbid filters when the HTX is enabled on a proxy
954 - MINOR: lua/htx: Forbid lua usage when the HTX is enabled on a proxy
955 - CLEANUP: Fix some typos in the haproxy subsystem
956 - CLEANUP: Fix typos in the dns subsystem
957 - CLEANUP: Fix typos in the pattern subsystem
958 - CLEANUP: fix 2 typos in the xxhash subsystem
959 - CLEANUP: fix a few typos in the comments of the server subsystem
960 - CLEANUP: fix a misspell in tests/filltab25.c
961 - CLEANUP: fix a typo found in the stream subsystem
962 - CLEANUP: fix typos in comments in ebtree
963 - CLEANUP: fix typos in reg-tests
964 - CLEANUP: fix typos in the comments of the vars subsystem
965 - CLEANUP: fix typos in the hlua_fcn subsystem
966 - CLEANUP: fix typos in the proto_http subsystem
967 - CLEANUP: fix typos in the proxy subsystem
968 - CLEANUP: fix typos in the ssl_sock subsystem
969 - DOC: Fix typos in different subsections of the documentation
970 - DOC: fix a few typos in the documentation
971 - MINOR: Fix an error message thrown when we run out of memory
972 - MINOR: Fix typos in error messages in the proxy subsystem
973 - MINOR: fix typos in the examples files
974 - CLEANUP: Fix a typo in the stats subsystem
975 - CLEANUP: Fix typos in the acl subsystem
976 - CLEANUP: Fix typos in the cache subsystem
977 - CLEANUP: Fix typos in the cfgparse subsystem
978 - CLEANUP: Fix typos in the filters subsystem
979 - CLEANUP: Fix typos in the http subsystem
980 - CLEANUP: Fix typos in the log subsystem
981 - CLEANUP: Fix typos in the peers subsystem
982 - CLEANUP: Fix typos in the regex subsystem
983 - CLEANUP: Fix typos in the sample subsystem
984 - CLEANUP: Fix typos in the spoe subsystem
985 - CLEANUP: Fix typos in the standard subsystem
986 - CLEANUP: Fix typos in the stick_table subsystem
987 - CLEANUP: Fix typos in the task subsystem
988 - MINOR: Fix typo in error message in the standard subsystem
989 - CLEANUP: fix typos in the comments of hlua
990 - MINOR: Fix typo in the error 500 output of hlua
991 - MINOR: Fix a typo in a warning message in the spoe subsystem
992
Willy Tarreau96079492018-11-11 10:43:39 +01009932018/11/11 : 1.9-dev6
994 - BUG/MEDIUM: tools: fix direction of my_ffsl()
995 - BUG/MINOR: cli: forward the whole command on master CLI
996 - BUG/MEDIUM: auth/threads: use of crypt() is not thread-safe
997 - MINOR: compat: automatically detect support for crypt_r()
998 - MEDIUM: auth/threads: make use of crypt_r() on systems supporting it
999 - DOC: split the http-request actions in their own section
1000 - DOC: split the http-response actions in their own section
1001 - BUG/MAJOR: stream-int: don't call si_cs_recv() in stream_int_chk_rcv_conn()
1002 - BUG/MINOR: tasks: make sure wakeup events are properly reported to subscribers
1003 - MINOR: stats: report the number of active jobs and listeners in "show info"
1004 - MINOR: stats: report the number of active peers in "show info"
1005 - MINOR: stats: report the number of currently connected peers
1006 - MINOR: cli: show the number of reload in 'show proc'
1007 - MINOR: cli: can't connect to the target CLI
1008 - MEDIUM: mworker: does not create the CLI proxy when no listener
1009 - MINOR: mworker: displays more information when leaving
1010 - MEDIUM: mworker: exit with the incriminated exit code
1011 - MINOR: mworker: displays a message when a worker is forked
1012 - MEDIUM: mworker: leave when the master die
1013 - CLEANUP: stream-int: retro-document si_cs_io_cb()
1014 - BUG/MEDIUM: mworker: does not abort() in mworker_pipe_register()
1015 - BUG/MEDIUM: stream-int: don't wake up for nothing during SI_ST_CON
1016 - BUG/MEDIUM: cli: crash when trying to access a worker
1017 - DOC: restore note about "independant" typo
1018 - MEDIUM: stream: implement stream_buf_available()
1019 - MEDIUM: appctx: check for allocation attempts in buffer allocation callbacks
1020 - MINOR: stream-int: rename si_applet_{want|stop|cant}_{get|put}
1021 - MINOR: stream-int: add si_done_{get,put} to indicate that we won't do it anymore
1022 - MINOR: stream-int: use si_cant_put() instead of setting SI_FL_WAIT_ROOM
1023 - MINOR: stream-int: make use of si_done_{get,put}() in shut{w,r}
1024 - MINOR: stream-int: make it clear that si_ops cannot be null
1025 - MEDIUM: stream-int: temporarily make si_chk_rcv() take care of SI_FL_WAIT_ROOM
1026 - MINOR: stream-int: factor the SI_ST_EST state test into si_chk_rcv()
1027 - MEDIUM: stream-int: make SI_FL_WANT_PUT reflect CF_DONT_READ
1028 - MEDIUM: stream-int: always call si_chk_rcv() when we make room in the buffer
1029 - MEDIUM: stream-int: make si_chk_rcv() check that SI_FL_WAIT_ROOM is cleared
1030 - MINOR: stream-int: replace si_update() with si_update_both()
1031 - MEDIUM: stream-int: make stream_int_update() aware of the lower layers
1032 - CLEANUP: stream-int: remove the now unused si->update() function
1033 - MEDIUM: stream-int: Rely only on SI_FL_WAIT_ROOM to stop data receipt
1034 - MEDIUM: stream-int: Try to read data even if channel's buffer seems to be full
1035 - BUG/MINOR: config: better detect the presence of the h2 pattern in npn/alpn
1036
Willy Tarreaubddf2922018-10-28 20:39:31 +010010372018/10/28 : 1.9-dev5
1038 - BUILD: Makefile: add the new ERR variable to force -Werror
1039 - MINOR: freq_ctr: add swrate_add_scaled() to work with large samples
1040 - MINOR: stream_interface: Avoid calling si_cs_send/recv if not needed.
1041 - CLEANUP: http: Remove the unused function http_find_header
1042 - MINOR: h1: Export some functions parsing the value of some HTTP headers
1043 - BUG/MEDIUM: stream-int: don't set SI_FL_WAIT_ROOM on CF_READ_DONTWAIT
1044 - MINOR: proxy: add a new option "http-use-htx"
1045 - BUG/MEDIUM: pools: fix the minimum allocation size
1046 - MINOR: shctx: Shared objects block by block allocation.
1047 - MINOR: cache: Larger HTTP objects caching.
1048 - MINOR: shctx: Add a maximum object size parameter.
1049 - MINOR: cache: Add "max-object-size" option.
1050 - DOC: Update about the cache support for big objects.
1051 - BUG/MINOR: cache: Crashes with "total-max-size" > 2047(MB).
1052 - BUG/MINOR: cache: Wrong usage of shctx_init().
1053 - BUG/MINOR: ssl: Wrong usage of shctx_init().
1054 - MINOR: cache: Avoid usage of atoi() when parsing "max-object-size".
1055 - MINOR: shctx: Change max. object size type to unsigned int.
1056 - DOC: cache: Missing information about "total-max-size" and "max-object-size"
1057 - CLEANUP: tools: fix misleading comment above function LIM2A
1058 - MEDIUM: channel: merge back flags CF_WRITE_PARTIAL and CF_WRITE_EVENT
1059 - BUG/MINOR: only mark connections private if NTLM is detected
1060 - BUG/MINOR: only auto-prefer last server if lb-alg is non-deterministic
1061 - MINOR: stream: don't prune variables if the list is empty
1062 - MINOR: stream-int: add si_alloc_ibuf() to ease input buffer allocation
1063 - MEDIUM: stream-int: replace channel_alloc_buffer() with si_alloc_ibuf() everywhere
1064 - MEDIUM: stream: always call si_cs_recv() after a failed buffer allocation
1065 - MEDIUM: stream: don't try to send first in process_stream()
1066 - MEDIUM: stream-int: make si_update() synchronize flag changes before the I/O
1067 - MEDIUM: stream-int: call si_cs_process() in stream_int_update_conn
1068 - MINOR: stream-int: don't needlessly call tasklet_wakeup() in stream_int_chk_snd_conn()
1069 - MINOR: stream-int: make stream_int_notify() not wake the tasklet up
1070 - MINOR: stream-int: don't needlessly call si_cs_send() in si_cs_process()
1071 - MINOR: mworker: number of reload in the life of a worker
1072 - MEDIUM: mworker: each worker socketpair is a CLI listener
1073 - REORG: mworker: move struct mworker_proc to global.h
1074 - MINOR: server: export new_server() function
1075 - MEDIUM: mworker: move proc_list gen before proxies startup
1076 - MEDIUM: mworker: add proc_list in global.h
1077 - MEDIUM: mworker: proxy for the master CLI
1078 - MEDIUM: mworker: create CLI listeners from argv[]
1079 - MEDIUM: cli: disable some keywords in the master
1080 - MEDIUM: mworker: find the server ptr using a CLI prefix
1081 - MEDIUM: cli: 'show proc' displays processus
1082 - MEDIUM: cli: implement 'mode cli' proxy analyzers
1083 - MINOR: cli: displays sockpair@ in "show cli sockets"
1084 - MEDIUM: cli: enable "show cli sockets" for the master
1085 - MINOR: cli: put @master @<relative pid> @!<pid> in the help
1086 - MEDIUM: listeners: set O_CLOEXEC on the accepted FDs
1087 - MEDIUM: mworker: stop the master proxy in the workers
1088 - MEDIUM: channel: reorder the channel analyzers for the cli
1089 - MEDIUM: cli: write a prompt for the CLI proxy of the master
1090 - MINOR: cli: helper to write an response message and close
1091 - MINOR: cache: Add "Age" header.
1092 - REGTEST: make the IP+port logging test more reliable
1093 - BUG/MINOR: memory: make the thread-local cache allocator set the debugging link
1094 - BUG/MAJOR: http: http_txn_get_path() may deference an inexisting buffer
1095 - BUG/MINOR: backend: assign the wait list after the error check
1096
Willy Tarreau01fbe742018-10-21 20:28:30 +020010972018/10/21 : 1.9-dev4
1098 - BUILD: Allow configuration of pcre-config path
1099 - DOC: clarify force-private-cache is an option
1100 - BUG/MINOR: connection: avoid null pointer dereference in send-proxy-v2
1101 - REORG: http: move the code to different files
1102 - REORG: http: move HTTP rules parsing to http_rules.c
1103 - CLEANUP: http: remove some leftovers from recent cleanups
1104 - BUILD: Makefile: add a "make opts" target to simply show the build options
1105 - BUILD: Makefile: speed up compiler options detection
1106 - BUG/MINOR: backend: check that the mux installed properly
1107 - BUG/MEDIUM: h2: check that the connection is still valid at the end of init()
1108 - BUG/MEDIUM: h2: make h2_stream_new() return an error on memory allocation failure
1109 - REGTEST/MINOR: compatibility: use unix@ instead of abns@ sockets
1110 - MINOR: ssl: cleanup old openssl API call
1111 - MINOR: ssl: generate-certificates for BoringSSL
1112 - BUG/MEDIUM: buffers: Make sure we don't wrap in ci_insert_line2/b_rep_blk.
1113 - MEDIUM: ssl: add support for ciphersuites option for TLSv1.3
1114 - CLEANUP: haproxy: Remove unused variable
1115 - CLEANUP: h1: Fix debug warnings for h1 headers
1116 - CLEANUP: stick-tables: Remove unneeded double (()) around conditional clause
1117 - MEDIUM: task: perform a single tree lookup per run queue batch
1118 - BUG/MEDIUM: Cur/CumSslConns counters not threadsafe.
1119 - BUG/MINOR: threads: move declaration of capabilities to config.h
1120 - OPTIM: tools: optimize my_ffsl() for x86_64
1121 - BUG/MINOR: h2: null-deref
1122 - BUG/MINOR: checks: queues null-deref
1123 - MINOR: connections: Introduce an unsubscribe method.
1124 - MEDIUM: connections: Change struct wait_list to wait_event.
1125 - BUG/MEDIUM: h2: Make sure we're not in the send list on flow control.
1126 - BUG/MEDIUM: mworker: segfault receiving SIGUSR1 followed by SIGTERM.
1127 - BUG/MEDIUM: stream: Make sure to unsubscribe before si_release_endpoint.
1128 - MINOR: http: Move comment about some HTTP macros in the right header file
1129 - MINOR: stats: Add missing include
1130 - MINOR: http: Export some functions and do cleanup to prepare HTTP refactoring
1131 - MEDIUM: http: Ignore http-pretend-keepalive option on frontend
1132 - MEDIUM: http: Ignore http-tunnel option on backend
1133 - MINOR: http: Use same flag for httpclose and forceclose options
1134 - MINOR: h1: Add EOH marker during headers parsing
1135 - MINOR: conn-stream: Add CL_FL_NOT_FIRST flag
1136 - MINOR: h1: Change the union h1_sl to use indirect strings to store infos
1137 - MINOR: h1: Add the flag H1_MF_NO_PHDR to not add pseudo-headers during parsing
1138 - MINOR: log: make sess_log() support sess=NULL
1139 - MINOR: chunk: add chunk_cpy() and chunk_cat()
1140 - MEDIUM: h2: stop relying on H2_SS_IDLE / H2_SS_CLOSED
1141 - CLEANUP: h2: rename h2c_snd_settings() to h2c_send_settings()
1142 - MINOR: h2: don't try to send data before preface
1143 - MINOR: h2: unify the mux init function
1144 - MINOR: h2: retrieve the front proxy from the caller instead of the session
1145 - MINOR: h2: split h2c_stream_new() into h2s_new() + h2c_frt_stream_new()
1146 - MINOR: h2: add a new flag to quickly distinguish front vs back connection
1147 - BUG/MEDIUM: mworker: don't poll on LI_O_INHERITED listeners
1148 - BUG/MEDIUM: stream: don't crash on out-of-memory
1149 - BUILD: compiler: add a new statement "__unreachable()"
1150 - BUILD: lua: silence some compiler warnings about potential null derefs
1151 - BUILD: ssl: fix null-deref warning in ssl_fc_cipherlist_str sample fetch
1152 - BUILD: ssl: fix another null-deref warning in ssl_sock_switchctx_cbk()
1153 - BUILD: stick-table: make sure not to fail on task_new() during initialization
1154 - BUILD: peers: check allocation error during peers_init_sync()
1155 - MINOR: tools: add a new function atleast2() to test masks for more than 1 bit
1156 - MINOR: config: use atleast2() instead of my_popcountl() where relevant
1157 - MEDIUM: fd/threads: only grab the fd's lock if the FD has more than one thread
1158 - MAJOR: tasks: create per-thread wait queues
1159 - OPTIM: tasks: group all tree roots per cache line
1160 - DOC: Fix a few typos
1161 - MINOR: pools: allocate most memory pools from an array
1162 - MINOR: pools: split pool_free() in the lockfree variant
1163 - MEDIUM: pools: implement a thread-local cache for pool entries
1164 - BUG/MEDIUM: threads: fix thread_release() at the end of the rendez-vous point
1165 - Revert "BUILD: lua: silence some compiler warnings about potential null derefs"
1166 - BUILD: lua: silence some compiler warnings about potential null derefs (#2)
1167 - MINOR: lua: all functions calling lua_yieldk() may return
1168 - BUILD: lua: silence some compiler warnings after WILL_LJMP
1169 - BUILD: Makefile: silence an option conflict warning with clang
1170 - MINOR: server: Use memcpy() instead of strncpy().
1171 - CLEANUP: state-file: make the path concatenation code a bit more consistent
1172 - MINOR: build: Disable -Wstringop-overflow.
1173 - MINOR: cfgparse: Write 130 as 128 as 0x82 and 0x80.
1174 - MINOR: peers: use defines instead of enums to appease clang.
1175 - DOC: fix reference to map files in MAINTAINERS
1176 - MINOR: fd: centralize poll timeout computation in compute_poll_timeout()
1177 - MINOR: poller: move time and date computation out of the pollers
1178 - BUILD: memory: fix pointer declaration for atomic CAS
1179 - BUILD: Makefile: add USE_RT to pass -lrt for clock_gettime() and friends
1180 - MINOR: time: add now_mono_time() and now_cpu_time()
1181 - MEDIUM: time: measure the time stolen by other threads
1182 - BUILD: memory: fix free_list pointer declaration again for atomic CAS
1183 - BUILD: compiler: rename __unreachable() to my_unreachable()
1184 - BUG/MEDIUM: pools: Fix the usage of mmap()) with DEBUG_UAF.
1185 - BUILD: memory: fix free_list pointer declaration again for atomic CAS
1186 - BUG/MEDIUM: h2: Close connection if no stream is left an GOAWAY was sent.
1187 - BUG/MEDIUM: connections: Remove subscription if going in idle mode.
1188 - BUG/MEDIUM: stream: Make sure polling is right on retry.
1189 - MINOR: h2: Make sure to return 1 in h2_recv() when needed.
1190 - MEDIUM: connections: Don't directly mess with the polling from the upper layers.
1191 - MINOR: streams: Call tasklet_free() after si_release_endpoint().
1192 - MINOR: connection: Add a SUB_CALL_UNSUBSCRIBE event.
1193 - MINOR: h2: Don't run tasks that are waiting to send if mux in full.
1194 - MINOR: ebtree: save 8 bytes in struct eb32sc_node
1195
Willy Tarreau27010f02018-09-29 20:17:33 +020011962018/09/29 : 1.9-dev3
1197 - BUG/MINOR: h1: don't consider the status for each header
1198 - MINOR: h1: report in the h1m struct if the HTTP version is 1.1 or above
1199 - MINOR: h1: parse the Connection header field
1200 - DOC: Fix typos in lua documentation
1201 - MINOR: h1: Add H1_MF_XFER_LEN flag
1202 - MINOR: http: add http_hdr_del() to remove a header from a list
1203 - MINOR: h1: add headers to the list after controls, not before
1204 - MEDIUM: h1: better handle transfer-encoding vs content-length
1205 - MEDIUM: h1: deduplicate the content-length header
1206 - BUG/MEDIUM: patterns: fix possible double free when reloading a pattern list
1207 - BUG/MEDIUM: h1: Really skip all updates when incomplete messages are parsed
1208 - CLEANUP/CONTRIB: hpack: remove some h1 build warnings
1209 - BUG/MINOR: tools: fix set_net_port() / set_host_port() on IPv4
1210 - BUG/MINOR: cli: make sure the "getsock" command is only called on connections
1211 - MINOR: stktable: provide an unchecked version of stktable_data_ptr()
1212 - MINOR: stream-int: make si_appctx() never fail
1213 - BUILD: ssl_sock: remove build warnings on potential null-derefs
1214 - BUILD: stats: remove build warnings on potential null-derefs
1215 - BUILD: stream: address null-deref build warnings at -Wextra
1216 - BUILD: http: address a couple of null-deref warnings at -Wextra
1217 - BUILD: log: silent build warnings due to unchecked __objt_{server,applet}
1218 - BUILD: dns: fix null-deref build warning at -Wextra
1219 - BUILD: checks: silence a null-deref build warning at -Wextra
1220 - BUILD: connection: silence a couple of null-deref build warnings at -Wextra
1221 - BUILD: backend: fix 3 build warnings related to null-deref at -Wextra
1222 - BUILD: sockpair: silence a build warning at -Wextra
1223 - BUILD: build with -Wextra and sort out certain warnings
1224 - BUG/CRITICAL: hpack: fix improper sign check on the header index value
1225 - BUG/MEDIUM: http: Don't parse chunked body if there is no input data
1226 - DOC: Update configuration doc about the maximum number of stick counters.
1227 - BUG/MEDIUM: process_stream: Don't use si_cs_io_cb() in process_stream().
1228 - MINOR: h2/stream_interface: Reintroduce te wake() method.
1229 - BUG/MEDIUM: h2: Wake the task instead of calling h2_recv()/h2_process().
1230 - BUG/MEDIUM: process_stream(): Don't wake the task if no new data was received.
1231 - MEDIUM: lua: Add stick table support for Lua.
1232
Willy Tarreau253006d2018-09-12 18:59:48 +020012332018/09/12 : 1.9-dev2
1234 - BUG/MINOR: buffers: Fix b_slow_realign when a buffer is realign without output
1235 - BUG/MEDIUM: threads: fix the no-thread case after the change to the sync point
1236 - BUG/MEDIUM: servers: check the queues once enabling a server
1237 - BUG/MEDIUM: queue: prevent a backup server from draining the proxy's connections
1238 - MEDIUM: mux: Remove const on the buffer in mux->snd_buf()
1239 - CLEANUP: backend: Move mux install to call it at only one place
1240 - MINOR: conn_stream: add an tx buffer to the conn_stream
1241 - MINOR: conn_stream: add cs_send() as a default snd_buf() function
1242 - MINOR: backend: Try to find the best mux for outgoing connections
1243 - MEDIUM: backend: don't rely on mux_pt_ops in connect_server()
1244 - MINOR: mux: Add info about the supported side in alpn_mux_list structure
1245 - MINOR: mux: Unlink ALPN and multiplexers to rather speak of mux protocols
1246 - MINOR: mux: Print the list of existing mux protocols during HA startup
1247 - MEDIUM: checks: use the new rendez-vous point to spread check result
1248 - MEDIUM: haproxy: don't use sync_poll_loop() anymore in the main loop
1249 - MINOR: threads: remove the previous synchronization point
1250 - MAJOR: server: make server state changes synchronous again
1251 - CLEANUP: server: remove the update list and the update lock
1252 - BUG/MINOR: threads: Remove the unexisting lock label "UPDATED_SERVERS_LOCK"
1253 - BUG/MEDIUM: stream_int: Don't check CO_FL_SOCK_RD_SH flag to trigger cs receive
1254 - MINOR: mux: Change get_mux_proto to get an ist as parameter
1255 - MINOR: mux: Improve the message with the list of existing mux protocols
1256 - MINOR: mux/frontend: Add 'proto' keyword to force the mux protocol
1257 - MINOR: mux/server: Add 'proto' keyword to force the multiplexer's protocol
1258 - MEDIUM: mux: Use the mux protocol specified on bind/server lines
1259 - BUG/MEDIUM: connection/mux: take care of serverless proxies
1260 - MINOR: queue: make sure the pendconn is released before logging
1261 - MINOR: stream: rename {srv,prx}_queue_size to *_queue_pos
1262 - MINOR: queue: store the queue index in the stream when enqueuing
1263 - MINOR: queue: replace the linked list with a tree
1264 - MEDIUM: add set-priority-class and set-priority-offset
1265 - MEDIUM: queue: adjust position based on priority-class and priority-offset
1266 - DOC: update the roadmap about priority queues
1267 - BUG/MINOR: ssl: empty connections reported as errors.
1268 - MINOR: connections: Make rcv_buf mandatory and nuke cs_recv().
1269 - MINOR: connections: Move rxbuf from the conn_stream to the h2s.
1270 - MINOR: connections: Get rid of txbuf.
1271 - MINOR: tasks: Allow tasklet_wakeup() to wakeup a task.
1272 - MINOR: connections/mux: Add the wait reason(s) to wait_list.
1273 - MINOR: stream_interface: Don't use si_cs_send() as a task handler.
1274 - MINOR: stream_interface: Give stream_interface its own wait_list.
1275 - MINOR: mux_h2: Don't use h2_send() as a callback.
1276 - MINOR: checks: Add event_srv_chk_io().
1277 - BUG/MEDIUM: tasks: Don't insert in the global rqueue if nbthread == 1
1278 - BUG/MEDIUM: sessions: Don't use t->state.
1279 - BUG/MEDIUM: ssl: fix missing error loading a keytype cert from a bundle.
1280 - BUG/MEDIUM: ssl: loading dh param from certifile causes unpredictable error.
1281 - BUG/MINOR: map: fix map_regm with backref
1282 - DOC: dns: explain set server ... fqdn requires resolver
1283 - DOC: add documentation for prio_class and prio_offset sample fetches.
1284 - DOC: ssl: Use consistent naming for TLS protocols
1285 - DOC: update the layering design notes
1286 - MINOR: tasks: Don't special-case when nbthreads == 1
1287 - MINOR: fd cache: And the thread_mask with all_threads_mask.
1288 - BUG/MEDIUM: lua: socket timeouts are not applied
1289 - BUG/MINOR: lua: fix extra 500ms added to socket timeouts
1290 - BUG/MEDIUM: server: update our local state before propagating changes
1291 - BUG/MEDIUM: cli/threads: protect all "proxy" commands against concurrent updates
1292 - DOC: server/threads: document which functions need to be called with/without locks
1293 - BUG/MEDIUM: cli/threads: protect some server commands against concurrent operations
1294 - BUG/MEDIUM: streams: Don't forget to remove the si from the wait list.
1295 - BUG/MEDIUM: tasklets: Add the thread as active when waking a tasklet.
1296 - BUG/MEDIUM: stream-int: Check if the conn_stream exist in si_cs_io_cb.
1297 - BUG/MEDIUM: H2: Activate polling after successful h2_snd_buf().
1298 - BUG/MEDIUM: stream_interface: Call the wake callback after sending.
1299 - BUG/MAJOR: queue/threads: make pendconn_redistribute not lock the server
1300 - BUG/MEDIUM: connection: don't forget to always delete the list's head
1301 - BUG/MEDIUM: lb/threads: always properly lock LB algorithms on maintenance operations
1302 - BUG/MEDIUM: check/threads: do not involve the rendez-vous point for status updates
1303 - BUG/MINOR: chunks: do not store -1 into chunk_printf() in case of error
1304 - BUG/MEDIUM: http: don't store exp_replace() result in the trash's length
1305 - BUG/MEDIUM: http: don't store url_decode() result in the samples's length
1306 - BUG/MEDIUM: dns: don't store dns_build_query() result in the trash's length
1307 - BUG/MEDIUM: map: don't store exp_replace() result in the trash's length
1308 - BUG/MEDIUM: connection: don't store recv() result into trash.data
1309 - BUG/MEDIUM: cli/ssl: don't store base64dec() result in the trash's length
1310 - MINOR: chunk: remove impossible tests on negative chunk->data
1311 - MINOR: sample: remove impossible tests on negative smp->data.u.str.data
1312 - DOC: Fix spelling error in configuration doc
1313 - REGTEST/MINOR: Missing mandatory "ignore_unknown_macro".
1314 - REGTEST/MINOR: Add a new class of regression testing files.
1315 - BUG/MEDIUM: unix: provide a ->drain() function
1316 - MINOR: connection: make conn_sock_drain() work for all socket families
1317 - BUG/MINOR: lua: Bad HTTP client request duration.
1318 - REGEST/MINOR: Add reg testing files.
1319 - BUG/MEDIUM: mux_pt: dereference the connection with care in mux_pt_wake()
1320 - REGTEST/MINOR: Add a reg testing file for b406b87 commit.
1321 - BUG/MEDIUM: lua: reset lua transaction between http requests
1322 - MINOR: add be_conn_free sample fetch
1323 - MINOR: Add srv_conn_free sample fetch
1324 - BUG/MEDIUM: hlua: Make sure we drain the output buffer when done.
1325 - MINOR: checks: Call wake_srv_chk() when we can finally send data.
1326 - BUG/MEDIUM: stream_interface: try to call si_cs_send() earlier.
1327 - BUG/MAJOR: thread: lua: Wrong SSL context initialization.
1328 - REGTEST/MINOR: Add a reg testing file for 3e60b11.
1329 - BUG/MEDIUM: hlua: Don't call RESET_SAFE_LJMP if SET_SAFE_LJMP returns 0.
1330 - REGTEST/MINOR: lua: Add reg testing files for 70d318c.
1331 - BUG/MEDIUM: dns/server: fix incomatibility between SRV resolution and server state file
1332 - BUG/MEDIUM: ECC cert should work with TLS < v1.2 and openssl >= 1.1.1
1333 - MINOR: tools: make date2str_log() take some consts
1334 - MINOR: thread: implement HA_ATOMIC_XADD()
1335 - BUG/MINOR: stream: use atomic increments for the request counter
1336 - BUG/MEDIUM: session: fix reporting of handshake processing time in the logs
1337 - BUG/MEDIUM: h2: fix risk of memory leak on malformated wrapped frames
1338 - BUG/MAJOR: buffer: fix incorrect check in __b_putblk()
1339 - MINOR: log: move the log code to sess_build_logline() to add extra arguments
1340 - MINOR: log: make the backend fall back to the frontend when there's no stream
1341 - MINOR: log: make sess_build_logline() not dereference a NULL stream for txn
1342 - MINOR: log: don't unconditionally pick log info from s->logs
1343 - CLEANUP: log: make the low_level lf_{ip,port,text,text_len} functions take consts
1344 - MINOR: log: keep a copy of the backend connection early in sess_build_logline()
1345 - MINOR: log: do not dereference a null stream to access captures
1346 - MINOR: log: be sure not to dereference a null stream for a target
1347 - MINOR: log: don't check the stream-int's conn_retries if the stream is NULL
1348 - MINOR: log: use NULL for the unique_id if there is no stream
1349 - MINOR: log: keep a copy of s->flags early to avoid a dereference
1350 - MINOR: log: use zero as the request counter if there is no stream
1351 - MEDIUM: log: make sess_build_logline() support being called with no stream
1352 - MINOR: log: provide a function to emit a log for a session
1353 - MEDIUM: h2: produce some logs on early errors that prevent streams from being created
1354 - BUG/MINOR: h1: fix buffer shift after realignment
1355 - MINOR: connection: make the initialization more consistent
1356 - MINOR: connection: add new function conn_get_proxy()
1357 - MINOR: connection: add new function conn_is_back()
1358 - MINOR: log: One const should be enough.
1359 - BUG/MINOR: dns: check and link servers' resolvers right after config parsing
1360 - BUG/MINOR: http/threads: atomically increment the error snapshot ID
1361 - MINOR: snapshot: restart on the event ID and not the stream ID
1362 - MINOR: snapshot: split the error snapshots into common and proto-specific parts
1363 - MEDIUM: snapshot: start to reorder the HTTP snapshot output a little bit
1364 - MEDIUM: snapshot: implement a show() callback and use it for HTTP
1365 - MINOR: proxy: add a new generic proxy_capture_error()
1366 - MINOR: http: make the HTTP error capture rely on the generic proxy code
1367 - MINOR: http: remove the pointer to the error snapshot in http_capture_bad_message()
1368 - REORG: cli: move the "show errors" handler from http to proxy
1369 - BUG/MEDIUM: snapshot: take the proxy's lock while dumping errors
1370 - MEDIUM: snapshots: dynamically allocate the snapshots
1371 - MEDIUM: snapshot: merge the captured data after the descriptor
1372 - MEDIUM: mworker: remove register/unregister signal functions
1373 - MEDIUM: mworker: use the haproxy poll loop
1374 - BUG/MINOR: mworker: no need to stop peers for each proxy
1375 - MINOR: mworker: mworker_cleanlisteners() delete the listeners
1376 - MEDIUM: mworker: block SIGCHLD until the master is ready
1377 - MEDIUM: mworker: never block SIG{TERM,INT} during reload
1378 - MEDIUM: startup: unify signal init between daemon and mworker mode
1379 - MINOR: mworker: don't deinit the poller fd when in wait mode
1380 - MEDIUM: mworker: master wait mode use its own initialization
1381 - MEDIUM: mworker: replace the master pipe by socketpairs
1382 - MINOR: mworker: keep and clean the listeners
1383 - MEDIUM: threads: close the thread-waker pipe during deinit
1384 - MEDIUM: mworker: call per_thread deinit in mworker_reload()
1385 - REORG: http: move the HTTP semantics definitions to http.h/http.c
1386 - REORG: http: move http_get_path() to http.c
1387 - REORG: http: move error codes production and processing to http.c
1388 - REORG: http: move the log encoding tables to log.c
1389 - REORG: http: move some header value processing functions to http.c
1390 - BUG/MAJOR: kqueue: Don't reset the changes number by accident.
1391 - MEDIUM: protocol: use a custom AF_MAX to help protocol parser
1392 - MEDIUM: protocol: sockpair protocol
1393 - TESTS: add a python wrapper for sockpair@
1394 - BUG/MINOR: server: Crash when setting FQDN via CLI.
1395 - BUG/MINOR: h2: report asynchronous end of stream on closed connections
1396 - BUILD: fix build without thread
1397 - BUG/MEDIUM: tasks: Don't forget to decrement task_list_size in tasklet_free().
1398 - MEDIUM: connections: Don't reset the polling flags in conn_fd_handler().
1399 - MEDIUM: connections/mux: Add a recv and a send+recv wait list.
1400 - MEDIUM: connections: Get rid of the recv() method.
1401 - MINOR: h2: Let user of h2_recv() and h2_send() know xfer has been done.
1402 - MEDIUM: h2: always subscribe to receive if allowed.
1403 - MEDIUM: h2: Don't use a wake() method anymore.
1404 - MEDIUM: stream_interface: Make recv() subscribe when more data is needed.
1405 - MINOR: connections: Add a "handle" field to wait_list.
1406 - MEDIUM: mux_h2: Revamp the send path when blocking.
1407 - MEDIUM: stream_interfaces: Starts receiving from the upper layers.
1408 - MINOR: checks: Give checks their own wait_list.
1409 - MINOR: conn_streams: Remove wait_list from conn_streams.
1410 - REORG: h1: create a new h1m_state
1411 - MINOR: h1: add the restart offsets into struct h1m
1412 - MINOR: h1: remove the unused states from h1m_state
1413 - MINOR: h1: provide a distinct init() function for request and response
1414 - MINOR: h1: add a message flag to indicate that a message carries a response
1415 - MINOR: h2: make sure h1m->err_pos field is correct on chunk error
1416 - MINOR: h1: properly pre-initialize err_pos to -2
1417 - MINOR: mux_h2: replace the req,res h1 messages with a single h1 message
1418 - MINOR: h2: pre-initialize h1m->err_pos to -1 on the output path
1419 - MEDIUM: h1: consider err_pos before deciding to accept a header name or not
1420 - MEDIUM: h1: make the parser support a pointer to a start line
1421 - MEDIUM: h1: let the caller pass the initial parser's state
1422 - MINOR: h1: make the message parser support a null <hdr> argument
1423 - MEDIUM: h1: support partial message parsing
1424 - MEDIUM: h1: remove the useless H1_MSG_BODY state
1425 - MINOR: h2: store the HTTP status into the H2S, not the H1M
1426 - MINOR: h1: remove the HTTP status from the H1M struct
1427 - MEDIUM: h1: implement the request parser as well
1428 - MINOR: h1: add H1_MF_TOLOWER to decide when to turn header names to lower case
1429 - MINOR: connection: pass the proxy when creating a connection
1430 - BUG/MEDIUM: h2: Don't forget to empty the wait lists on destroy.
1431 - BUG/MEDIUM: h2: Don't forget to set recv_wait_list to NULL in h2_detach.
1432 - BUG/MAJOR: h2: reset the parser's state on mux buffer full
1433
Willy Tarreau65e94d12018-08-02 18:12:50 +020014342018/08/02 : 1.9-dev1
1435 - BUG/MEDIUM: kqueue: Don't bother closing the kqueue after fork.
1436 - DOC: cache: update sections and fix some typos
1437 - BUILD/MINOR: deviceatlas: enable thread support
1438 - BUG/MEDIUM: tcp-check: Don't lock the server in tcpcheck_main
1439 - BUG/MEDIUM: ssl: don't allocate shctx several time
1440 - BUG/MEDIUM: cache: bad computation of the remaining size
1441 - BUILD: checks: don't include server.h
1442 - BUG/MEDIUM: stream: fix session leak on applet-initiated connections
1443 - BUILD/MINOR: haproxy : FreeBSD/cpu affinity needs pthread_np header
1444 - BUILD/MINOR: Makefile : enabling USE_CPU_AFFINITY
1445 - BUG/MINOR: ssl: CO_FL_EARLY_DATA removal is managed by stream
1446 - BUG/MEDIUM: threads/peers: decrement, not increment jobs on quitting
1447 - BUG/MEDIUM: h2: don't report an error after parsing a 100-continue response
1448 - BUG/MEDIUM: peers: fix some track counter rules dont register entries for sync.
1449 - BUG/MAJOR: thread/peers: fix deadlock on peers sync.
1450 - BUILD/MINOR: haproxy: compiling config cpu parsing handling when needed
1451 - MINOR: config: report when "monitor fail" rules are misplaced
1452 - BUG/MINOR: mworker: fix validity check for the pipe FDs
1453 - BUG/MINOR: mworker: detach from tty when in daemon mode
1454 - MINOR: threads: Fix pthread_setaffinity_np on FreeBSD.
1455 - BUG/MAJOR: thread: Be sure to request a sync between threads only once at a time
1456 - BUILD: Fix LDFLAGS vs. LIBS re linking order in various makefiles
1457 - BUG/MEDIUM: checks: Be sure we have a mux if we created a cs.
1458 - BUG/MINOR: hpack: fix debugging output of pseudo header names
1459 - BUG/MINOR: hpack: must reject huffman literals padded with more than 7 bits
1460 - BUG/MINOR: hpack: reject invalid header index
1461 - BUG/MINOR: hpack: dynamic table size updates are only allowed before headers
1462 - BUG/MAJOR: h2: correctly check the request length when building an H1 request
1463 - BUG/MINOR: h2: immediately close if receiving GOAWAY after the last stream
1464 - BUG/MINOR: h2: try to abort closed streams as soon as possible
1465 - BUG/MINOR: h2: ":path" must not be empty
1466 - BUG/MINOR: h2: fix a typo causing PING/ACK to be responded to
1467 - BUG/MINOR: h2: the TE header if present may only contain trailers
1468 - BUG/MEDIUM: h2: enforce the per-connection stream limit
1469 - BUG/MINOR: h2: do not accept SETTINGS_ENABLE_PUSH other than 0 or 1
1470 - BUG/MINOR: h2: reject incorrect stream dependencies on HEADERS frame
1471 - BUG/MINOR: h2: properly check PRIORITY frames
1472 - BUG/MINOR: h2: reject response pseudo-headers from requests
1473 - BUG/MEDIUM: h2: remove connection-specific headers from request
1474 - BUG/MEDIUM: h2: do not accept upper case letters in request header names
1475 - BUG/MINOR: h2: use the H2_F_DATA_* macros for DATA frames
1476 - BUG/MINOR: action: Don't check http capture rules when no id is defined
1477 - BUG/MAJOR: hpack: don't pretend large headers fit in empty table
1478 - BUG/MINOR: ssl: support tune.ssl.cachesize 0 again
1479 - BUG/MEDIUM: mworker: also close peers sockets in the master
1480 - BUG/MEDIUM: ssl engines: Fix async engines fds were not considered to fix fd limit automatically.
1481 - BUG/MEDIUM: checks: a down server going to maint remains definitely stucked on down state.
1482 - BUG/MEDIUM: peers: set NOLINGER on the outgoing stream interface
1483 - BUG/MEDIUM: h2: fix handling of end of stream again
1484 - MINOR: mworker: Update messages referencing exit-on-failure
1485 - MINOR: mworker: Improve wording in `void mworker_wait()`
1486 - CONTRIB: halog: Add help text for -s switch in halog program
1487 - BUG/MEDIUM: email-alert: don't set server check status from a email-alert task
1488 - BUG/MEDIUM: threads/vars: Fix deadlock in register_name
1489 - MINOR: systemd: remove comment about HAPROXY_STATS_SOCKET
1490 - DOC: notifications: add precisions about thread usage
1491 - BUG/MEDIUM: lua/notification: memory leak
1492 - MINOR: conn_stream: add new flag CS_FL_RCV_MORE to indicate pending data
1493 - BUG/MEDIUM: stream-int: always set SI_FL_WAIT_ROOM on CS_FL_RCV_MORE
1494 - BUG/MEDIUM: h2: automatically set CS_FL_RCV_MORE when the output buffer is full
1495 - BUG/MEDIUM: h2: enable recv polling whenever demuxing is possible
1496 - BUG/MEDIUM: h2: work around a connection API limitation
1497 - BUG/MEDIUM: h2: debug incoming traffic in h2_wake()
1498 - MINOR: h2: store the demux padding length in the h2c struct
1499 - BUG/MEDIUM: h2: support uploading partial DATA frames
1500 - MINOR: h2: don't demand that a DATA frame is complete before processing it
1501 - BUG/MEDIUM: h2: don't switch the state to HREM before end of DATA frame
1502 - BUG/MEDIUM: h2: don't close after the first DATA frame on tunnelled responses
1503 - BUG/MEDIUM: http: don't disable lingering on requests with tunnelled responses
1504 - BUG/MEDIUM: h2: fix stream limit enforcement
1505 - BUG/MINOR: stream-int: don't try to receive again after receiving an EOS
1506 - MINOR: sample: add len converter
1507 - BUG: MAJOR: lb_map: server map calculation broken
1508 - BUG: MINOR: http: don't check http-request capture id when len is provided
1509 - MINOR: sample: rename the "len" converter to "length"
1510 - BUG/MEDIUM: mworker: Set FD_CLOEXEC flag on log fd
1511 - DOC/MINOR: intro: typo, wording, formatting fixes
1512 - MINOR: netscaler: respect syntax
1513 - MINOR: netscaler: remove the use of cip_magic only used once
1514 - MINOR: netscaler: rename cip_len to clarify its uage
1515 - BUG/MEDIUM: netscaler: use the appropriate IPv6 header size
1516 - BUG/MAJOR: netscaler: address truncated CIP header detection
1517 - MINOR: netscaler: check in one-shot if buffer is large enough for IP and TCP header
1518 - MEDIUM: netscaler: do not analyze original IP packet size
1519 - MEDIUM: netscaler: add support for standard NetScaler CIP protocol
1520 - MINOR: spoe: add force-set-var option in spoe-agent configuration
1521 - CONTRIB: iprange: Fix compiler warning in iprange.c
1522 - CONTRIB: halog: Fix compiler warnings in halog.c
1523 - BUG/MINOR: h2: properly report a stream error on RST_STREAM
1524 - MINOR: mux: add flags to describe a mux's capabilities
1525 - MINOR: stream-int: set flag SI_FL_CLEAN_ABRT when mux supports clean aborts
1526 - BUG/MEDIUM: stream: don't consider abortonclose on muxes which close cleanly
1527 - BUG/MEDIUM: checks: a server passed in maint state was not forced down.
1528 - BUG/MEDIUM: lua: fix crash when using bogus mode in register_service()
1529 - MINOR: http: adjust the list of supposedly cacheable methods
1530 - MINOR: http: update the list of cacheable status codes as per RFC7231
1531 - MINOR: http: start to compute the transaction's cacheability from the request
1532 - BUG/MINOR: http: do not ignore cache-control: public
1533 - BUG/MINOR: http: properly detect max-age=0 and s-maxage=0 in responses
1534 - BUG/MINOR: cache: do not force the TX_CACHEABLE flag before checking cacheability
1535 - MINOR: http: add a function to check request's cache-control header field
1536 - BUG/MEDIUM: cache: do not try to retrieve host-less requests from the cache
1537 - BUG/MEDIUM: cache: replace old object on store
1538 - BUG/MEDIUM: cache: respect the request cache-control header
1539 - BUG/MEDIUM: cache: don't cache the response on no-cache="set-cookie"
1540 - BUG/MAJOR: connection: refine the situations where we don't send shutw()
1541 - BUG/MEDIUM: checks: properly set servers to stopping state on 404
1542 - BUG/MEDIUM: h2: properly handle and report some stream errors
1543 - BUG/MEDIUM: h2: improve handling of frames received on closed streams
1544 - DOC/MINOR: configuration: typo, formatting fixes
1545 - BUG/MEDIUM: h2: ensure we always know the stream before sending a reset
1546 - BUG/MEDIUM: mworker: don't close stdio several time
1547 - MINOR: don't close stdio anymore
1548 - BUG/MEDIUM: http: don't automatically forward request close
1549 - BUG/MAJOR: hpack: don't return direct references to the dynamic headers table
1550 - MINOR: h2: add a function to report pseudo-header names
1551 - DEBUG: hpack: make hpack_dht_dump() expose the output file
1552 - DEBUG: hpack: add more traces to the hpack decoder
1553 - CONTRIB: hpack: add an hpack decoder
1554 - MEDIUM: h2: prepare a graceful shutdown when the frontend is stopped
1555 - BUG/MEDIUM: h2: properly handle the END_STREAM flag on empty DATA frames
1556 - BUILD: ssl: silence a warning when building without NPN nor ALPN support
1557 - CLEANUP: rbtree: remove
1558 - BUG/MEDIUM: ssl: cache doesn't release shctx blocks
1559 - BUG/MINOR: lua: Fix default value for pattern in Socket.receive
1560 - DOC: lua: Fix typos in comments of hlua_socket_receive
1561 - BUG/MEDIUM: lua: Fix IPv6 with separate port support for Socket.connect
1562 - BUG/MINOR: lua: Fix return value of Socket.settimeout
1563 - MINOR: dns: Handle SRV record weight correctly.
1564 - BUG/MEDIUM: mworker: execvp failure depending on argv[0]
1565 - MINOR: hathreads: add support for gcc < 4.7
1566 - BUILD/MINOR: ancient gcc versions atomic fix
1567 - BUG/MEDIUM: stream: properly handle client aborts during redispatch
1568 - MINOR: spoe: add register-var-names directive in spoe-agent configuration
1569 - MINOR: spoe: Don't queue a SPOE context if nothing is sent
1570 - DOC: clarify the scope of ssl_fc_is_resumed
1571 - CONTRIB: debug: fix a few flags definitions
1572 - BUG/MINOR: poll: too large size allocation for FD events
1573 - MINOR: sample: add date_us sample
1574 - BUG/MEDIUM: peers: fix expire date wasn't updated if entry is modified remotely.
1575 - MINOR: servers: Don't report duplicate dyncookies for disabled servers.
1576 - MINOR: global/threads: move cpu_map at the end of the global struct
1577 - MINOR: threads: add a MAX_THREADS define instead of LONGBITS
1578 - MINOR: global: add some global activity counters to help debugging
1579 - MINOR: threads/fd: Use a bitfield to know if there are FDs for a thread in the FD cache
1580 - BUG/MEDIUM: threads/polling: Use fd_cache_mask instead of fd_cache_num
1581 - BUG/MEDIUM: fd: maintain a per-thread update mask
1582 - MINOR: fd: add a bitmask to indicate that an FD is known by the poller
1583 - BUG/MEDIUM: epoll/threads: use one epoll_fd per thread
1584 - BUG/MEDIUM: kqueue/threads: use one kqueue_fd per thread
1585 - BUG/MEDIUM: threads/mworker: fix a race on startup
1586 - BUG/MINOR: mworker: only write to pidfile if it exists
1587 - MINOR: threads: Fix build when we're not compiling with threads.
1588 - BUG/MINOR: threads: always set an owner to the thread_sync pipe
1589 - BUG/MEDIUM: threads/server: Fix deadlock in srv_set_stopping/srv_set_admin_flag
1590 - BUG/MEDIUM: checks: Don't try to release undefined conn_stream when a check is freed
1591 - BUG/MINOR: kqueue/threads: Don't forget to close kqueue_fd[tid] on each thread
1592 - MINOR: threads: Use __decl_hathreads instead of #ifdef/#endif
1593 - BUILD: epoll/threads: Add test on MAX_THREADS to avoid warnings when complied without threads
1594 - BUILD: kqueue/threads: Add test on MAX_THREADS to avoid warnings when complied without threads
1595 - CLEANUP: sample: Fix comment encoding of sample.c
1596 - CLEANUP: sample: Fix outdated comment about sample casts functions
1597 - BUG/MINOR: sample: Fix output type of c_ipv62ip
1598 - CLEANUP: Fix typo in ARGT_MSK6 comment
1599 - CLEANUP: standard: Use len2mask4 in str2mask
1600 - MINOR: standard: Add str2mask6 function
1601 - MINOR: config: Add support for ARGT_MSK6
1602 - MEDIUM: sample: Add IPv6 support to the ipmask converter
1603 - MINOR: config: Enable tracking of up to MAX_SESS_STKCTR stick counters.
1604 - BUG/MINOR: cli: use global.maxsock and not maxfd to list all FDs
1605 - MINOR: polling: make epoll and kqueue not depend on maxfd anymore
1606 - MINOR: fd: don't report maxfd in alert messages
1607 - MEDIUM: polling: start to move maxfd computation to the pollers
1608 - CLEANUP: fd/threads: remove the now unused fdtab_lock
1609 - MINOR: poll: more accurately compute the new maxfd in the loop
1610 - CLEANUP: fd: remove the unused "new" field
1611 - MINOR: fd: move the hap_fd_{clr,set,isset} functions to fd.h
1612 - MEDIUM: select: make use of hap_fd_* functions
1613 - MEDIUM: fd: use atomic ops for hap_fd_{clr,set} and remove poll_lock
1614 - MEDIUM: select: don't use the old FD state anymore
1615 - MEDIUM: poll: don't use the old FD state anymore
1616 - MINOR: fd: pass the iocb and owner to fd_insert()
1617 - BUG/MINOR: threads: Update labels array because of changes in lock_label enum
1618 - MINOR: stick-tables: Adds support for new "gpc1" and "gpc1_rate" counters.
1619 - BUG/MINOR: epoll/threads: only call epoll_ctl(DEL) on polled FDs
1620 - DOC: don't suggest using http-server-close
1621 - MINOR: introduce proxy-v2-options for send-proxy-v2
1622 - BUG/MEDIUM: spoe: Always try to receive or send the frame to detect shutdowns
1623 - BUG/MEDIUM: spoe: Allow producer to read and to forward shutdown on request side
1624 - MINOR: spoe: Remove check on min_applets number when a SPOE context is queued
1625 - MINOR: spoe: Always link a SPOE context with the applet processing it
1626 - MINOR: spoe: Replace sending_rate by a frequency counter
1627 - MINOR: spoe: Count the number of frames waiting for an ack for each applet
1628 - MEDIUM: spoe: Use an ebtree to manage idle applets
1629 - MINOR: spoa_example: Count the number of frames processed by each worker
1630 - MINOR: spoe: Add max-waiting-frames directive in spoe-agent configuration
1631 - MINOR: init: make stdout unbuffered
1632 - MINOR: early data: Don't rely on CO_FL_EARLY_DATA to wake up streams.
1633 - MINOR: early data: Never remove the CO_FL_EARLY_DATA flag.
1634 - MINOR: compiler: introduce offsetoff().
1635 - MINOR: threads: Introduce double-width CAS on x86_64 and arm.
1636 - MINOR: threads: add test and set/reset operations
1637 - MINOR: pools/threads: Implement lockless memory pools.
1638 - MAJOR: fd/threads: Make the fdcache mostly lockless.
1639 - MEDIUM: fd/threads: Make sure we don't miss a fd cache entry.
1640 - MAJOR: fd: compute the new fd polling state out of the fd lock
1641 - MINOR: epoll: get rid of the now useless fd_compute_new_polled_status()
1642 - MINOR: kqueue: get rid of the now useless fd_compute_new_polled_status()
1643 - MINOR: poll: get rid of the now useless fd_compute_new_polled_status()
1644 - MINOR: select: get rid of the now useless fd_compute_new_polled_status()
1645 - CLEANUP: fd: remove the now unused fd_compute_new_polled_status() function
1646 - MEDIUM: fd: make updt_fd_polling() use atomics
1647 - MEDIUM: poller: use atomic ops to update the fdtab mask
1648 - MINOR: fd: move the fd_{add_to,rm_from}_fdlist functions to fd.c
1649 - BUG/MINOR: fd/threads: properly dereference fdcache as volatile
1650 - MINOR: fd: remove the unneeded last CAS when adding an fd to the list
1651 - MINOR: fd: reorder fd_add_to_fd_list()
1652 - BUG/MINOR: time/threads: ensure the adjusted time is always correct
1653 - BUG/MEDIUM: standard: Fix memory leak in str2ip2()
1654 - MINOR: init: emit warning when -sf/-sd cannot parse argument
1655 - BUILD: fd/threads: fix breakage build breakage without threads
1656 - DOC: Describe routing impact of using interface keyword on bind lines
1657 - DOC: Mention -Ws in the list of available options
1658 - BUG/MINOR: config: don't emit a warning when global stats is incompletely configured
1659 - BUG/MINOR: fd/threads: properly lock the FD before adding it to the fd cache.
1660 - BUG/MEDIUM: threads: fix the double CAS implementation for ARMv7
1661 - BUG/MEDIUM: ssl: Don't always treat SSL_ERROR_SYSCALL as unrecovarable.
1662 - BUILD/MINOR: memory: stdint is needed for uintptr_t
1663 - BUG/MINOR: init: Add missing brackets in the code parsing -sf/-st
1664 - DOC: lua: new prototype for function "register_action()"
1665 - DOC: cfgparse: Warn on option (tcp|http)log in backend
1666 - BUG/MINOR: ssl/threads: Make management of the TLS ticket keys files thread-safe
1667 - MINOR: sample: add a new "concat" converter
1668 - BUG/MEDIUM: ssl: Shutdown the connection for reading on SSL_ERROR_SYSCALL
1669 - BUG/MEDIUM: http: Switch the HTTP response in tunnel mode as earlier as possible
1670 - BUG/MEDIUM: ssl/sample: ssl_bc_* fetch keywords are broken.
1671 - MINOR: ssl/sample: adds ssl_bc_is_resumed fetch keyword.
1672 - CLEANUP: cfgparse: Remove unused label end
1673 - CLEANUP: spoe: Remove unused label retry
1674 - CLEANUP: h2: Remove unused labels from mux_h2.c
1675 - CLEANUP: pools: Remove unused end label in memory.h
1676 - CLEANUP: standard: Fix typo in IPv6 mask example
1677 - BUG/MINOR: pools/threads: don't ignore DEBUG_UAF on double-word CAS capable archs
1678 - BUG/MINOR: debug/pools: properly handle out-of-memory when building with DEBUG_UAF
1679 - MINOR: debug/pools: make DEBUG_UAF also detect underflows
1680 - MINOR: stats: display the number of threads in the statistics.
1681 - BUG/MINOR: h2: Set the target of dbuf_wait to h2c
1682 - BUG/MEDIUM: h2: always consume any trailing data after end of output buffers
1683 - BUG/MEDIUM: buffer: Fix the wrapping case in bo_putblk
1684 - BUG/MEDIUM: buffer: Fix the wrapping case in bi_putblk
1685 - BUG/MEDIUM: spoe: Remove idle applets from idle list when HAProxy is stopping
1686 - Revert "BUG/MINOR: send-proxy-v2: string size must include ('\0')"
1687 - MINOR: ssl: extract full pkey info in load_certificate
1688 - MINOR: ssl: add ssl_sock_get_pkey_algo function
1689 - MINOR: ssl: add ssl_sock_get_cert_sig function
1690 - MINOR: connection: add proxy-v2-options ssl-cipher,cert-sig,cert-key
1691 - MINOR: connection: add proxy-v2-options authority
1692 - MINOR: systemd: Add section for SystemD sandboxing to unit file
1693 - MINOR: systemd: Add SystemD's Protect*= options to the unit file
1694 - MINOR: systemd: Add SystemD's SystemCallFilter option to the unit file
1695 - CLEANUP: h2: rename misleading h2c_stream_close() to h2s_close()
1696 - MINOR: h2: provide and use h2s_detach() and h2s_free()
1697 - MEDIUM: h2: use a single buffer allocator
1698 - MINOR/BUILD: fix Lua build on Mac OS X
1699 - BUILD/MINOR: fix Lua build on Mac OS X (again)
1700 - BUG/MINOR: session: Fix tcp-request session failure if handshake.
1701 - CLEANUP: .gitignore: Ignore binaries from the contrib directory
1702 - BUG/MINOR: unix: Don't mess up when removing the socket from the xfer_sock_list.
1703 - DOC: buffers: clarify the purpose of the <from> pointer in offer_buffers()
1704 - BUG/MEDIUM: h2: also arm the h2 timeout when sending
1705 - BUG/MINOR: cli: Fix a crash when passing a negative or too large value to "show fd"
1706 - CLEANUP: ssl: Remove a duplicated #include
1707 - CLEANUP: cli: Remove a leftover debug message
1708 - BUG/MINOR: cli: Fix a typo in the 'set rate-limit' usage
1709 - BUG/MEDIUM: fix a 100% cpu usage with cpu-map and nbthread/nbproc
1710 - BUG/MINOR: force-persist and ignore-persist only apply to backends
1711 - BUG/MEDIUM: threads/unix: Fix a deadlock when a listener is temporarily disabled
1712 - BUG/MAJOR: threads/queue: Fix thread-safety issues on the queues management
1713 - BUG/MINOR: dns: don't downgrade DNS accepted payload size automatically
1714 - TESTS: Add a testcase for multi-port + multi-server listener issue
1715 - CLEANUP: dns: remove duplicate code in src/dns.c
1716 - BUG/MINOR: seemless reload: Fix crash when an interface is specified.
1717 - BUG/MINOR: cli: Ensure all command outputs end with a LF
1718 - BUG/MINOR: cli: Fix a crash when sending a command with too many arguments
1719 - BUILD: ssl: Fix build with OpenSSL without NPN capability
1720 - BUG/MINOR: spoa-example: unexpected behavior for more than 127 args
1721 - BUG/MINOR: lua: return bad error messages
1722 - CLEANUP: lua/syntax: lua is a name and not an acronym
1723 - BUG/MEDIUM: tcp-check: single connect rule can't detect DOWN servers
1724 - BUG/MINOR: tcp-check: use the server's service port as a fallback
1725 - BUG/MEDIUM: threads/queue: wake up other threads upon dequeue
1726 - MINOR: log: stop emitting alerts when it's not possible to write on the socket
1727 - BUILD/BUG: enable -fno-strict-overflow by default
1728 - BUG/MEDIUM: fd/threads: ensure the fdcache_mask always reflects the cache contents
1729 - DOC: log: more than 2 log servers are allowed
1730 - MINOR: hash: add new function hash_crc32c
1731 - MINOR: proxy-v2-options: add crc32c
1732 - MINOR: accept-proxy: support proxy protocol v2 CRC32c checksum
1733 - REORG: compact "struct server"
1734 - MINOR: samples: add crc32c converter
1735 - BUG/MEDIUM: h2: properly account for DATA padding in flow control
1736 - BUG/MINOR: h2: ensure we can never send an RST_STREAM in response to an RST_STREAM
1737 - BUG/MINOR: listener: Don't decrease actconn twice when a new session is rejected
1738 - CLEANUP: map, stream: remove duplicate code in src/map.c, src/stream.c
1739 - BUG/MINOR: lua: the function returns anything
1740 - BUG/MINOR: lua funtion hlua_socket_settimeout don't check negative values
1741 - CLEANUP: lua: typo fix in comments
1742 - BUILD/MINOR: fix build when USE_THREAD is not defined
1743 - MINOR: lua: allow socket api settimeout to accept integers, float, and doubles
1744 - BUG/MINOR: hpack: fix harmless use of uninitialized value in hpack_dht_insert
1745 - MINOR: cli/threads: make "show fd" report thread_sync_io_handler instead of "unknown"
1746 - MINOR: cli: make "show fd" report the mux and mux_ctx pointers when available
1747 - BUILD/MINOR: cli: fix a build warning introduced by last commit
1748 - BUG/MAJOR: h2: remove orphaned streams from the send list before closing
1749 - MINOR: h2: always call h2s_detach() in h2_detach()
1750 - MINOR: h2: fuse h2s_detach() and h2s_free() into h2s_destroy()
1751 - BUG/MEDIUM: h2/threads: never release the task outside of the task handler
1752 - BUG/MEDIUM: h2: don't consider pending data on detach if connection is in error
1753 - BUILD/MINOR: threads: always export thread_sync_io_handler()
1754 - MINOR: mux: add a "show_fd" function to dump debugging information for "show fd"
1755 - MINOR: h2: implement a basic "show_fd" function
1756 - MINOR: cli: report cache indexes in "show fd"
1757 - BUG/MINOR: h2: remove accidental debug code introduced with show_fd function
1758 - BUG/MEDIUM: h2: always add a stream to the send or fctl list when blocked
1759 - BUG/MINOR: checks: check the conn_stream's readiness and not the connection
1760 - BUG/MINOR: fd: Don't clear the update_mask in fd_insert.
1761 - BUG/MINOR: email-alert: Set the mailer port during alert initialization
1762 - BUG/MINOR: cache: fix "show cache" output
1763 - BUG/MAJOR: cache: fix random crashes caused by incorrect delete() on non-first blocks
1764 - BUG/MINOR: spoe: Initialize variables used during conf parsing before any check
1765 - BUG/MINOR: spoe: Don't release the context buffer in .check_timeouts callbaclk
1766 - BUG/MINOR: spoe: Register the variable to set when an error occurred
1767 - BUG/MINOR: spoe: Don't forget to decrement fpa when a processing is interrupted
1768 - MINOR: spoe: Add metrics in to know time spent in the SPOE
1769 - MINOR: spoe: Add options to store processing times in variables
1770 - MINOR: log: move 'log' keyword parsing in dedicated function
1771 - MINOR: log: Keep the ref when a log server is copied to avoid duplicate entries
1772 - MINOR: spoe: Add loggers dedicated to the SPOE agent
1773 - MINOR: spoe: Add support for option dontlog-normal in the SPOE agent section
1774 - MINOR: spoe: use agent's logger to log SPOE messages
1775 - MINOR: spoe: Add counters to log info about SPOE agents
1776 - BUG/MAJOR: cache: always initialize newly created objects
1777 - MINOR: servers: Support alphanumeric characters for the server templates names
1778 - BUG/MEDIUM: threads: Fix the max/min calculation because of name clashes
1779 - BUG/MEDIUM: connection: Make sure we have a mux before calling detach().
1780 - BUG/MINOR: http: Return an error in proxy mode when url2sa fails
1781 - MINOR: proxy: Add fe_defbe fetcher
1782 - MINOR: config: Warn if resolvers has no nameservers
1783 - BUG/MINOR: cli: Guard against NULL messages when using CLI_ST_PRINT_FREE
1784 - MINOR: cli: Ensure the CLI always outputs an error when it should
1785 - MEDIUM: sample: Extend functionality for field/word converters
1786 - MINOR: export localpeer as an environment variable
1787 - BUG/MEDIUM: kqueue: When adding new events, provide an output to get errors.
1788 - BUILD: sample: avoid build warning in sample.c
1789 - BUG/CRITICAL: h2: fix incorrect frame length check
1790 - DOC: lua: update the links to the config and Lua API
1791 - BUG/MINOR: pattern: Add a missing HA_SPIN_INIT() in pat_ref_newid()
1792 - BUG/MAJOR: channel: Fix crash when trying to read from a closed socket
1793 - BUG/MINOR: log: t_idle (%Ti) is not set for some requests
1794 - BUG/MEDIUM: lua: Fix segmentation fault if a Lua task exits
1795 - MINOR: h2: detect presence of CONNECT and/or content-length
1796 - BUG/MEDIUM: h2: implement missing support for chunked encoded uploads
1797 - BUG/MINOR: spoe: Fix counters update when processing is interrupted
1798 - BUG/MINOR: spoe: Fix parsing of dontlog-normal option
1799 - MEDIUM: cli: Add payload support
1800 - MINOR: map: Add payload support to "add map"
1801 - MINOR: ssl: Add payload support to "set ssl ocsp-response"
1802 - BUG/MINOR: lua/threads: Make lua's tasks sticky to the current thread
1803 - MINOR: sample: Add strcmp sample converter
1804 - MINOR: http: Add support for 421 Misdirected Request
1805 - BUG/MINOR: config: disable http-reuse on TCP proxies
1806 - MINOR: ssl: disable SSL sample fetches when unsupported
1807 - MINOR: ssl: add fetch 'ssl_fc_session_key' and 'ssl_bc_session_key'
1808 - BUG/MINOR: checks: Fix check->health computation for flapping servers
1809 - BUG/MEDIUM: threads: Fix the sync point for more than 32 threads
1810 - BUG/MINOR, BUG/MINOR: lua: Put tasks to sleep when waiting for data
1811 - MINOR: backend: implement random-based load balancing
1812 - DOC/MINOR: clean up LUA documentation re: servers & array/table.
1813 - MINOR: lua: Add server name & puid to LUA Server class.
1814 - MINOR: lua: add get_maxconn and set_maxconn to LUA Server class.
1815 - BUG/MINOR: map: correctly track reference to the last ref_elt being dumped
1816 - BUG/MEDIUM: task: Don't free a task that is about to be run.
1817 - MINOR: fd: Make the lockless fd list work with multiple lists.
1818 - BUG/MEDIUM: pollers: Use a global list for fd shared between threads.
1819 - MINOR: pollers: move polled_mask outside of struct fdtab.
1820 - BUG/MINOR: lua: schedule socket task upon lua connect()
1821 - BUG/MINOR: lua: ensure large proxy IDs can be represented
1822 - BUG/MEDIUM: pollers/kqueue: use incremented position in event list
1823 - BUG/MINOR: cli: don't stop cli_gen_usage_msg() when kw->usage == NULL
1824 - BUG/MEDIUM: http: don't always abort transfers on CF_SHUTR
1825 - BUG/MEDIUM: ssl: properly protect SSL cert generation
1826 - BUG/MINOR: lua: Socket.send threw runtime error: 'close' needs 1 arguments.
1827 - BUG/MINOR: spoe: Mistake in error message about SPOE configuration
1828 - BUG/MEDIUM: spoe: Flags are not encoded in network order
1829 - CLEANUP: spoe: Remove unused variables the agent structure
1830 - DOC: spoe: fix a typo
1831 - BUG/MEDIUM: contrib/mod_defender: Use network order to encode/decode flags
1832 - BUG/MEDIUM: contrib/modsecurity: Use network order to encode/decode flags
1833 - DOC: add some description of the pending rework of the buffer structure
1834 - BUG/MINOR: ssl/lua: prevent lua from affecting automatic maxconn computation
1835 - MINOR: lua: Improve error message
1836 - BUG/MEDIUM: cache: don't cache when an Authorization header is present
1837 - MINOR: ssl: set SSL_OP_PRIORITIZE_CHACHA
1838 - BUG/MEDIUM: dns: Delay the attempt to run a DNS resolution on check failure.
1839 - BUG/BUILD: threads: unbreak build without threads
1840 - BUG/MEDIUM: servers: Add srv_addr default placeholder to the state file
1841 - BUG/MEDIUM: lua/socket: Length required read doesn't work
1842 - MINOR: tasks: Change the task API so that the callback takes 3 arguments.
1843 - MAJOR: tasks: Create a per-thread runqueue.
1844 - MAJOR: tasks: Introduce tasklets.
1845 - MINOR: tasks: Make the number of tasks to run at once configurable.
1846 - MAJOR: applets: Use tasks, instead of rolling our own scheduler.
1847 - BUG/MEDIUM: stick-tables: Decrement ref_cnt in table_* converters
1848 - MINOR: http: Log warning if (add|set)-header fails
1849 - DOC: management: add the new wrew stats column
1850 - MINOR: stats: also report the failed header rewrites warnings on the stats page
1851 - BUG/MEDIUM: tasks: Don't forget to increase/decrease tasks_run_queue.
1852 - BUG/MEDIUM: task: Don't forget to decrement max_processed after each task.
1853 - MINOR: task: Also consider the task list size when getting global tasks.
1854 - MINOR: dns: Implement `parse-resolv-conf` directive
1855 - BUG/MEDIUM: spoe: Return an error when the wrong ACK is received in sync mode
1856 - MINOR: task/notification: Is notifications registered ?
1857 - BUG/MEDIUM: lua/socket: wrong scheduling for sockets
1858 - BUG/MAJOR: lua: Dead lock with sockets
1859 - BUG/MEDIUM: lua/socket: Notification error
1860 - BUG/MEDIUM: lua/socket: Sheduling error on write: may dead-lock
1861 - BUG/MEDIUM: lua/socket: Buffer error, may segfault
1862 - DOC: contrib/modsecurity: few typo fixes
1863 - DOC: SPOE.txt: fix a typo
1864 - MAJOR: spoe: upgrade the SPOP version to 2.0 and remove the support for 1.0
1865 - BUG/MINOR: contrib/spoa_example: Don't reset the status code during disconnect
1866 - BUG/MINOR: contrib/mod_defender: Don't reset the status code during disconnect
1867 - BUG/MINOR: contrib/modsecurity: Don't reset the status code during disconnect
1868 - BUG/MINOR: contrib/mod_defender: update pointer on the end of the frame
1869 - BUG/MINOR: contrib/modsecurity: update pointer on the end of the frame
1870 - MINOR: task: Fix a compiler warning by adding a cast.
1871 - MINOR: stats: also report the nice and number of calls for applets
1872 - MINOR: applet: assign the same nice value to a new appctx as its owner task
1873 - MINOR: task: Fix compiler warning.
1874 - BUG/MEDIUM: tasks: Use the local runqueue when building without threads.
1875 - MINOR: tasks: Don't define rqueue if we're building without threads.
1876 - BUG/MINOR: unix: Make sure we can transfer abns sockets on seamless reload.
1877 - MINOR: lua: Increase debug information
1878 - BUG/MEDIUM: threads: handle signal queue only in thread 0
1879 - BUG/MINOR: don't ignore SIG{BUS,FPE,ILL,SEGV} during signal processing
1880 - BUG/MINOR: signals: ha_sigmask macro for multithreading
1881 - BUG/MAJOR: map: fix a segfault when using http-request set-map
1882 - DOC: regression testing: Add a short starting guide.
1883 - MINOR: tasks: Make sure we correctly init and deinit a tasklet.
1884 - BUG/MINOR: tasklets: Just make sure we don't pass a tasklet to the handler.
1885 - BUG/MINOR: lua: Segfaults with wrong usage of types.
1886 - BUG/MAJOR: ssl: Random crash with cipherlist capture
1887 - BUG/MAJOR: ssl: OpenSSL context is stored in non-reserved memory slot
1888 - BUG/MEDIUM: ssl: do not store pkinfo with SSL_set_ex_data
1889 - MINOR: tests: First regression testing file.
1890 - MINOR: reg-tests: Add reg-tests/README file.
1891 - MINOR: reg-tests: Add a few regression testing files.
1892 - DOC: Add new REGTEST tag info about reg testing.
1893 - BUG/MEDIUM: fd: Don't modify the update_mask in fd_dodelete().
1894 - MINOR: Some spelling cleanup in the comments.
1895 - BUG/MEDIUM: threads: Use the sync point to check active jobs and exit
1896 - MINOR: threads: Be sure to remove threads from all_threads_mask on exit
1897 - REGTEST/MINOR: Wrong URI in a reg test for SSL/TLS.
1898 - REGTEST/MINOR: Set HAPROXY_PROGRAM default value.
1899 - REGTEST/MINOR: Add levels to reg-tests target.
1900 - BUG/MAJOR: Stick-tables crash with segfault when the key is not in the stick-table
1901 - BUG/BUILD: threads: unbreak build without threads
1902 - BUG/MAJOR: stick_table: Complete incomplete SEGV fix
1903 - MINOR: stick-tables: make stktable_release() do nothing on NULL
1904 - BUG/MEDIUM: lua: possible CLOSE-WAIT state with '\n' headers
1905 - MINOR: startup: change session/process group settings
1906 - MINOR: systemd: consider exit status 143 as successful
1907 - REGTEST/MINOR: Wrong URI syntax.
1908 - CLEANUP: dns: remove obsolete macro DNS_MAX_IP_REC
1909 - CLEANUP: dns: inacurate comment about prefered IP score
1910 - MINOR: dns: fix wrong score computation in dns_get_ip_from_response
1911 - MINOR: dns: new DNS options to allow/prevent IP address duplication
1912 - REGTEST/MINOR: Unexpected curl URL globling.
1913 - BUG/MINOR: ssl: properly ref-count the tls_keys entries
1914 - MINOR: h2: keep a count of the number of conn_streams attached to the mux
1915 - BUG/MEDIUM: h2: don't accept new streams if conn_streams are still in excess
1916 - MINOR: h2: add the mux and demux buffer lengths on "show fd"
1917 - BUG/MEDIUM: h2: never leave pending data in the output buffer on close
1918 - BUG/MEDIUM: h2: make sure the last stream closes the connection after a timeout
1919 - MINOR: tasklet: Set process to NULL.
1920 - MINOR: buffer: implement a new file for low-level buffer manipulation functions
1921 - MINOR: buffer: switch buffer sizes and offsets to size_t
1922 - MINOR: buffer: add a few basic functions for the new API
1923 - MINOR: buffer: Introduce b_sub(), b_add(), and bo_add()
1924 - MINOR: buffer: Add b_set_data().
1925 - MINOR: buffer: introduce b_realign_if_empty()
1926 - MINOR: compression: pass the channel to http_compression_buffer_end()
1927 - MINOR: channel: add a few basic functions for the new buffer API
1928 - MINOR: channel/buffer: use c_realign_if_empty() instead of buffer_realign()
1929 - MINOR: channel/buffer: replace buffer_slow_realign() with channel_slow_realign() and b_slow_realign()
1930 - MEDIUM: channel: make channel_slow_realign() take a swap buffer
1931 - MINOR: h2: use b_slow_realign() with the trash as a swap buffer
1932 - MINOR: buffer: remove buffer_slow_realign() and the swap_buffer allocation code
1933 - MINOR: channel/buffer: replace b_{adv,rew} with c_{adv,rew}
1934 - MINOR: buffer: replace calls to buffer_space_wraps() with b_space_wraps()
1935 - MINOR: buffer: remove bi_getblk() and bi_getblk_nc()
1936 - MINOR: buffer: split bi_contig_data() into ci_contig_data and b_config_data()
1937 - MINOR: buffer: remove bi_ptr()
1938 - MINOR: buffer: remove bo_ptr()
1939 - MINOR: buffer: remove bo_end()
1940 - MINOR: buffer: remove bi_end()
1941 - MINOR: buffer: remove bo_contig_data()
1942 - MINOR: buffer: merge b{i,o}_contig_space()
1943 - MINOR: buffer: replace bo_getblk() with direction agnostic b_getblk()
1944 - MINOR: buffer: replace bo_getblk_nc() with b_getblk_nc() which takes an offset
1945 - MINOR: buffer: replace bi_del() and bo_del() with b_del()
1946 - MINOR: buffer: convert most b_ptr() calls to c_ptr()
1947 - MINOR: h1: make h1_measure_trailers() take the byte count in argument
1948 - MINOR: h2: clarify the fact that the send functions are unsigned
1949 - MEDIUM: h2: prevent the various mux encoders from modifying the buffer
1950 - MINOR: h1: make h1_skip_chunk_crlf() not depend on b_ptr() anymore
1951 - MINOR: h1: make h1_parse_chunk_size() not depend on b_ptr() anymore
1952 - MINOR: h1: make h1_measure_trailers() use an offset and a count
1953 - MEDIUM: h2: do not use buf->o anymore inside h2_snd_buf's loop
1954 - MEDIUM: h2: don't use b_ptr() nor b_end() anymore
1955 - MINOR: buffer: get rid of b_end() and b_to_end()
1956 - MINOR: buffer: make b_getblk_nc() take const pointers
1957 - MINOR: buffer: make b_getblk_nc() take size_t for the block sizes
1958 - MEDIUM: connection: make xprt->snd_buf() take the byte count in argument
1959 - MEDIUM: mux: make mux->snd_buf() take the byte count in argument
1960 - MEDIUM: connection: make xprt->rcv_buf() use size_t for the count
1961 - MEDIUM: mux: make mux->rcv_buf() take a size_t for the count
1962 - MINOR: connection: add a flags argument to rcv_buf()
1963 - MINOR: connection: add a new receive flag : CO_RFL_BUF_WET
1964 - MINOR: buffer: get rid of b_ptr() and convert its last users
1965 - MINOR: buffer: use b_room() to determine available space in a buffer
1966 - MINOR: buffer: replace buffer_not_empty() with b_data() or c_data()
1967 - MINOR: buffer: replace buffer_empty() with b_empty() or c_empty()
1968 - MINOR: buffer: make bo_putchar() use b_tail()
1969 - MINOR: buffer: replace buffer_full() with channel_full()
1970 - MINOR: buffer: replace bi_space_for_replace() with ci_space_for_replace()
1971 - MINOR: buffer: replace buffer_pending() with ci_data()
1972 - MINOR: buffer: replace buffer_flush() with c_adv(chn, ci_data(chn))
1973 - MINOR: buffer: use c_head() instead of buffer_wrap_sub(c->buf, p-o)
1974 - MINOR: buffer: use b_orig() to replace most references to b->data
1975 - MINOR: buffer: Use b_add()/bo_add() instead of accessing b->i/b->o.
1976 - MINOR: channel: remove almost all references to buf->i and buf->o
1977 - MINOR: channel: Add co_set_data().
1978 - MEDIUM: channel: adapt to the new buffer API
1979 - MINOR: checks: adapt to the new buffer API
1980 - MEDIUM: h2: update to the new buffer API
1981 - MINOR: buffer: remove unused bo_add()
1982 - MEDIUM: spoe: use the new buffer API for the SPOE buffer
1983 - MINOR: stats: adapt to the new buffers API
1984 - MINOR: cli: use the new buffer API
1985 - MINOR: cache: use the new buffer API
1986 - MINOR: stream-int: use the new buffer API
1987 - MINOR: stream: use wrappers instead of directly manipulating buffers
1988 - MINOR: backend: use new buffer API
1989 - MEDIUM: http: use wrappers instead of directly manipulating buffers states
1990 - MINOR: filters: convert to the new buffer API
1991 - MINOR: payload: convert to the new buffer API
1992 - MEDIUM: h1: port to new buffer API.
1993 - MINOR: flt_trace: adapt to the new buffer API
1994 - MEDIUM: compression: start to move to the new buffer API
1995 - MINOR: lua: use the wrappers instead of directly manipulating buffer states
1996 - MINOR: buffer: convert part bo_putblk() and bi_putblk() to the new API
1997 - MINOR: buffer: adapt buffer_slow_realign() and buffer_dump() to the new API
1998 - MAJOR: start to change buffer API
1999 - MINOR: buffer: remove the check for output on b_del()
2000 - MINOR: buffer: b_set_data() doesn't truncate output data anymore
2001 - MINOR: buffer: rename the "data" field to "area"
2002 - MEDIUM: buffers: move "output" from struct buffer to struct channel
2003 - MINOR: buffer: replace bi_fast_delete() with b_del()
2004 - MINOR: buffer: replace b{i,o}_put* with b_put*
2005 - MINOR: buffer: add a new file for ist + buffer manipulation functions
2006 - MINOR: checks: use b_putist() instead of b_putstr()
2007 - MINOR: buffers: remove b_putstr()
2008 - CLEANUP: buffer: minor cleanups to buffer.h
2009 - MINOR: buffers/channel: replace buffer_insert_line2() with ci_insert_line2()
2010 - MINOR: buffer: replace buffer_replace2() with b_rep_blk()
2011 - MINOR: buffer: rename the data length member to '->data'
2012 - MAJOR: buffer: finalize buffer detachment
2013 - MEDIUM: chunks: make the chunk struct's fields match the buffer struct
2014 - MAJOR: chunks: replace struct chunk with struct buffer
2015 - DOC: buffers: document the new buffers API
2016 - DOC: buffers: remove obsolete docs about buffers
2017 - MINOR: tasklets: Don't attempt to add a tasklet in the list twice.
2018 - MINOR: connections/mux: Add a new "subscribe" method.
2019 - MEDIUM: connections/mux: Revamp the send direction.
2020 - MINOR: connection: simplify subscription by adding a registration function
2021 - BUG/MINOR: http: Set brackets for the unlikely macro at the right place
2022 - BUG/MINOR: build: Fix compilation with debug mode enabled
2023 - BUILD: Generate sha256 checksums in publish-release
2024 - MINOR: debug: Add check for CO_FL_WILL_UPDATE
2025 - MINOR: debug: Add checks for conn_stream flags
2026 - MINOR: ist: Add the function isteqi
2027 - BUG/MEDIUM: threads: Fix the exit condition of the thread barrier
2028 - BUG/MEDIUM: mux_h2: Call h2_send() before updating polling.
2029 - MINOR: buffers: simplify b_contig_space()
2030 - MINOR: buffers: split b_putblk() into __b_putblk()
2031 - MINOR: buffers: add b_xfer() to transfer data between buffers
2032 - DOC: add some design notes about the new layering model
2033 - MINOR: conn_stream: add a new CS_FL_REOS flag
2034 - MINOR: conn_stream: add an rx buffer to the conn_stream
2035 - MEDIUM: conn_stream: add cs_recv() as a default rcv_buf() function
2036 - MEDIUM: stream-int: automatically call si_cs_recv_cb() if the cs has data on wake()
2037 - MINOR: h2: make each H2 stream support an intermediary input buffer
2038 - MEDIUM: h2: make h2_frt_decode_headers() use an intermediary buffer
2039 - MEDIUM: h2: make h2_frt_transfer_data() copy via an intermediary buffer
2040 - MEDIUM: h2: centralize transfer of decoded frames in h2_rcv_buf()
2041 - MEDIUM: h2: move headers and data frame decoding to their respective parsers
2042 - MEDIUM: buffers: make b_xfer() automatically swap buffers when possible
2043 - MEDIUM: h2: perform a single call to the data layer in demux()
2044 - MEDIUM: h2: don't call data_cb->recv() anymore
2045 - MINOR: h2: make use of CS_FL_REOS to indicate that end of stream was seen
2046 - MEDIUM: h2: use the default conn_stream's receive function
2047 - DOC: add more design feedback on the new layering model
2048 - MINOR: h2: add the error code and the max/last stream IDs to "show fd"
2049 - BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full
2050 - BUG/MEDIUM: stats: don't ask for more data as long as we're responding
2051 - BUG/MINOR: servers: Don't make "server" in a frontend fatal.
2052 - BUG/MEDIUM: tasks: make sure we pick all tasks in the run queue
2053 - BUG/MEDIUM: tasks: Decrement rqueue_size at the right time.
2054 - BUG/MEDIUM: tasks: use atomic ops for active_tasks_mask
2055 - BUG/MEDIUM: tasks: Make sure there's no task left before considering inactive.
2056 - MINOR: signal: don't pass the signal number anymore as the wakeup reason
2057 - MINOR: tasks: extend the state bits from 8 to 16 and remove the reason
2058 - MINOR: tasks: Add a flag that tells if we're in the global runqueue.
2059 - BUG/MEDIUM: tasks: make __task_unlink_rq responsible for the rqueue size.
2060 - MINOR: queue: centralize dequeuing code a bit better
2061 - MEDIUM: queue: make pendconn_free() work on the stream instead
2062 - DOC: queue: document the expected locking model for the server's queue
2063 - MINOR: queue: make sure pendconn->strm->pend_pos is always valid
2064 - MINOR: queue: use a distinct variable for the assigned server and the queue
2065 - MINOR: queue: implement pendconn queue locking functions
2066 - MEDIUM: queue: get rid of the pendconn lock
2067 - MINOR: tasks: Make active_tasks_mask volatile.
2068 - MINOR: tasks: Make global_tasks_mask volatile.
2069 - MINOR: pollers: Add a way to wake a thread sleeping in the poller.
2070 - MINOR: threads/queue: Get rid of THREAD_WANT_SYNC in the queue code.
2071 - BUG/MEDIUM: threads/sync: use sched_yield when available
2072 - MINOR: ssl: BoringSSL matches OpenSSL 1.1.0
2073 - BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever
2074 - BUG/MINOR: config: stick-table is not supported in defaults section
2075 - BUILD/MINOR: threads: unbreak build with threads disabled
2076 - BUG/MINOR: threads: Handle nbthread == MAX_THREADS.
2077 - BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS
2078 - MINOR: threads: move "nbthread" parsing to hathreads.c
2079 - BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread number
2080 - MEDIUM: proxy_protocol: Convert IPs to v6 when protocols are mixed
2081 - BUILD/MINOR: compiler: fix offsetof() on older compilers
2082 - SCRIPTS: git-show-backports: add missing quotes to "echo"
2083 - MINOR: threads: add more consistency between certain variables in no-thread case
2084 - MEDIUM: hathreads: implement a more flexible rendez-vous point
2085 - BUG/MEDIUM: cli: make "show fd" thread-safe
2086
Willy Tarreaub3066502017-11-26 19:50:17 +010020872017/11/26 : 1.9-dev0
2088
Willy Tarreau0b787922017-11-26 19:25:23 +010020892017/11/26 : 1.8.0
2090 - BUG/MEDIUM: stream: don't automatically forward connect nor close
2091 - BUG/MAJOR: stream: ensure analysers are always called upon close
2092 - BUG/MINOR: stream-int: don't try to read again when CF_READ_DONTWAIT is set
2093 - MEDIUM: mworker: Add systemd `Type=notify` support
2094 - BUG/MEDIUM: cache: free callback to remove from tree
2095 - CLEANUP: cache: remove unused struct
2096 - MEDIUM: cache: enable the HTTP analysers
2097 - CLEANUP: cache: remove wrong comment
2098 - MINOR: threads/atomic: rename local variables in macros to avoid conflicts
2099 - MINOR: threads/plock: rename local variables in macros to avoid conflicts
2100 - MINOR: threads/atomic: implement pl_mb() in asm on x86
2101 - MINOR: threads/atomic: implement pl_bts() on non-x86
2102 - MINOR: threads/build: atomic: replace the few inlines with macros
2103 - BUILD: threads/plock: fix a build issue on Clang without optimization
2104 - BUILD: ebtree: don't redefine types u32/s32 in scope-aware trees
2105 - BUILD: compiler: add a new type modifier __maybe_unused
2106 - BUILD: h2: mark some inlined functions "unused"
2107 - BUILD: server: check->desc always exists
2108 - BUG/MEDIUM: h2: properly report connection errors in headers and data handlers
2109 - MEDIUM: h2: add a function to emit an HTTP/1 request from a headers list
2110 - MEDIUM: h2: change hpack_decode_headers() to only provide a list of headers
2111 - BUG/MEDIUM: h2: always reassemble the Cookie request header field
2112 - BUG/MINOR: systemd: ignore daemon mode
2113 - CONTRIB: spoa_example: allow to compile outside HAProxy.
2114 - CONTRIB: spoa_example: remove bref, wordlist, cond_wordlist
2115 - CONTRIB: spoa_example: remove last dependencies on type "sample"
2116 - CONTRIB: spoa_example: remove SPOE enums that are useless for clients
2117 - CLEANUP: cache: reorder includes
2118 - MEDIUM: shctx: use unsigned int for len and block_count
2119 - MEDIUM: cache: "show cache" on the cli
2120 - BUG/MEDIUM: cache: use key=0 as a condition for freeing
2121 - BUG/MEDIUM: cache: refcount forbids to free the objects
2122 - BUG/MEDIUM: cache fix cli_kws structure
2123 - BUG/MEDIUM: deinit: correctly deinitialize the proxy and global listener tasks
2124 - BUG/MINOR: ssl: Always start the handshake if we can't send early data.
2125 - MINOR: ssl: Don't disable early data handling if we could not write.
2126 - MINOR: pools: prepare functions to override malloc/free in pools
2127 - MINOR: pools: implement DEBUG_UAF to detect use after free
2128 - BUG/MEDIUM: threads/time: fix time drift correction
2129 - BUG/MEDIUM: threads/time: maintain a common time reference between all threads
2130 - MINOR: sample: Add "thread" sample fetch
2131 - BUG/MINOR: Use crt_base instead of ca_base when crt is parsed on a server line
2132 - BUG/MINOR: stream: fix tv_request calculation for applets
2133 - BUG/MAJOR: h2: always remove a stream from the send list before freeing it
2134 - BUG/MAJOR: threads/task: dequeue expired tasks under the WQ lock
2135 - MINOR: ssl: Handle reading early data after writing better.
2136 - MINOR: mux: Make sure every string is woken up after the handshake.
2137 - MEDIUM: cache: store sha1 for hashing the cache key
2138 - MINOR: http: implement the "http-request reject" rule
2139 - MINOR: h2: send RST_STREAM before GOAWAY on reject
2140 - MEDIUM: h2: don't gracefully close the connection anymore on Connection: close
2141 - MINOR: h2: make use of client-fin timeout after GOAWAY
2142 - MEDIUM: config: ensure that tune.bufsize is at least 16384 when using HTTP/2
2143 - MINOR: ssl: Handle early data with BoringSSL
2144 - BUG/MEDIUM: stream: always release the stream-interface on abort
2145 - BUG/MEDIUM: cache: free ressources in chn_end_analyze
2146 - MINOR: cache: move the refcount decrease in the applet release
2147 - BUG/MINOR: listener: Allow multiple "process" options on "bind" lines
2148 - MINOR: config: Support a range to specify processes in "cpu-map" parameter
2149 - MINOR: config: Slightly change how parse_process_number works
2150 - MINOR: config: Export parse_process_number and use it wherever it's applicable
2151 - MINOR: standard: Add my_ffsl function to get the position of the bit set to one
2152 - MINOR: config: Add auto-increment feature for cpu-map
2153 - MINOR: config: Support partial ranges in cpu-map directive
2154 - MINOR:: config: Remove thread-map directive
2155 - MINOR: config: Add the threads support in cpu-map directive
2156 - MINOR: config: Add threads support for "process" option on "bind" lines
2157 - MEDIUM: listener: Bind listeners on a thread subset if specified
2158 - CLEANUP: debug: Use DPRINTF instead of fprintf into #ifdef DEBUG_FULL/#endif
2159 - CLEANUP: log: Rename Alert/Warning in ha_alert/ha_warning
2160 - MINOR/CLEANUP: proxy: rename "proxy" to "proxies_list"
2161 - CLEANUP: pools: rename all pool functions and pointers to remove this "2"
2162 - DOC: update the roadmap file with the latest changes merged in 1.8
2163 - DOC: fix mangled version in peers protocol documentation
2164 - DOC: add initial peers protovol v2.0 documentation.
2165 - DOC: mention William as maintainer of the cache and master-worker
2166 - DOC: add Christopher and Emeric as maintainers of the threads
2167 - MINOR: cache: replace a fprint() by an abort()
2168 - MEDIUM: cache: max-age configuration keyword
2169 - DOC: explain HTTP2 timeout behavior
2170 - DOC: cache: configuration and management
2171 - MAJOR: mworker: exits the master on failure
2172 - BUG/MINOR: threads: don't drop "extern" on the lock in include files
2173 - MINOR: task: keep a pointer to the currently running task
2174 - MINOR: task: align the rq and wq locks
2175 - MINOR: fd: cache-align fdtab and fdcache locks
2176 - MINOR: buffers: cache-align buffer_wq_lock
2177 - CLEANUP: server: reorder some fields in struct server to save 40 bytes
2178 - CLEANUP: proxy: slightly reorder the struct proxy to reduce holes
2179 - CLEANUP: checks: remove 16 bytes of holes in struct check
2180 - CLEANUP: cache: more efficiently pack the struct cache
2181 - CLEANUP: fd: place the lock at the beginning of struct fdtab
2182 - CLEANUP: pools: align pools on a cache line
2183 - DOC: config: add a few bits about how to configure HTTP/2
2184 - BUG/MAJOR: threads/queue: avoid recursive locking in pendconn_get_next_strm()
2185 - BUILD: Makefile: reorder object files by size
2186
Willy Tarreaucfe14662017-11-19 09:55:29 +010021872017/11/19 : 1.8-rc4
2188 - BUG/MEDIUM: cache: does not cache if no Content-Length
2189 - BUILD: thread/pipe: fix build without threads
2190 - BUG/MINOR: spoe: check buffer size before acquiring or releasing it
2191 - MINOR: debug/flags: Add missing flags
2192 - MINOR: threads: Use __decl_hathreads to declare locks
2193 - BUG/MINOR: buffers: Fix b_alloc_margin to be "fonctionnaly" thread-safe
2194 - BUG/MAJOR: ebtree/scope: fix insertion and removal of duplicates in scope-aware trees
2195 - BUG/MAJOR: ebtree/scope: fix lookup of next node in scope-aware trees
2196 - MINOR: ebtree/scope: add a function to find next node from a parent
2197 - MINOR: ebtree/scope: simplify the lookup functions by using eb32sc_next_with_parent()
2198 - BUG/MEDIUM: mworker: Fix re-exec when haproxy is started from PATH
2199 - BUG/MEDIUM: cache: use msg->sov to forward header
2200 - MINOR: cache: forward data with headers
2201 - MINOR: cache: disable cache if shctx_row_data_append fail
2202 - BUG/MINOR: threads: tid_bit must be a unsigned long
2203 - CLEANUP: tasks: Remove useless double test on rq_next
2204 - BUG/MEDIUM: standard: itao_str/idx and quote_str/idx must be thread-local
2205 - MINOR: tools: add a function to dump a scope-aware tree to a file
2206 - MINOR: tools: improve the DOT dump of the ebtree
2207 - MINOR: tools: emphasize the node being worked on in the tree dump
2208 - BUG/MAJOR: ebtree/scope: properly tag upper nodes during insertion
2209 - DOC: peers: Add a first version of peers protocol v2.1.
2210 - CONTRIB: Wireshark dissector for HAProxy Peer Protocol.
2211 - MINOR: mworker: display an accurate error when the reexec fail
2212 - BUG/MEDIUM: mworker: wait again for signals when execvp fail
2213 - BUG/MEDIUM: mworker: does not deinit anymore
2214 - BUG/MEDIUM: mworker: does not close inherited FD
2215 - MINOR: tests: add a python wrapper to test inherited fd
2216 - BUG/MINOR: Allocate the log buffers before the proxies startup
2217 - MINOR: tasks: Use a bitfield to track tasks activity per-thread
2218 - MAJOR: polling: Use active_tasks_mask instead of tasks_run_queue
2219 - MINOR: applets: Use a bitfield to track applets activity per-thread
2220 - MAJOR: polling: Use active_appels_mask instead of applets_active_queue
2221 - MEDIUM: applets: Don't process more than 200 active applets at once
2222 - MINOR: stream: Add thread-mask of tasks/FDs/applets in "show sess all" command
2223 - MINOR: SSL: Store the ASN1 representation of client sessions.
2224 - MINOR: ssl: Make sure we don't shutw the connection before the handshake.
2225 - BUG/MEDIUM: deviceatlas: ignore not valuable HTTP request data
2226
Willy Tarreau34650d52017-11-11 09:06:48 +010022272017/11/11 : 1.8-rc3
2228 - BUILD: use MAXPATHLEN instead of NAME_MAX.
2229 - BUG/MAJOR: threads/checks: add 4 missing spin_unlock() in various functions
2230 - BUG/MAJOR: threads/server: missing unlock in CLI fqdn parser
2231 - BUG/MINOR: cli: do not perform an invalid action on "set server check-port"
2232 - BUG/MAJOR: threads/checks: wrong use of SPIN_LOCK instead of SPIN_UNLOCK
2233 - CLEANUP: checks: remove return statements in locked functions
2234 - BUG/MINOR: cli: add severity in "set server addr" parser
2235 - CLEANUP: server: get rid of return statements in the CLI parser
2236 - BUG/MAJOR: cli/streams: missing unlock on exit "show sess"
2237 - BUG/MAJOR: threads/dns: add missing unlock on allocation failure path
2238 - BUG/MAJOR: threads/lb: fix missing unlock on consistent hash LB
2239 - BUG/MAJOR: threads/lb: fix missing unlock on map-based hash LB
2240 - BUG/MEDIUM: threads/stick-tables: close a race condition on stktable_trash_expired()
2241 - BUG/MAJOR: h2: set the connection's task to NULL when no client timeout is set
2242 - BUG/MAJOR: thread/listeners: enable_listener must not call unbind_listener()
2243 - BUG/MEDIUM: threads: don't try to free build option message on exit
2244 - MINOR: applets: no need to check for runqueue's emptiness in appctx_res_wakeup()
2245 - MINOR: add master-worker in the warning about nbproc
2246 - MINOR: mworker: allow pidfile in mworker + foreground
2247 - MINOR: mworker: write parent pid in the pidfile
2248 - MINOR: mworker: do not store child pid anymore in the pidfile
2249 - MINOR: ebtree: implement the scope-aware functions for eb32
2250 - MEDIUM: ebtree: specify the scope of every node inserted via eb32sc
2251 - MINOR: ebtree: update the eb32sc parent node's scope on delete
2252 - MEDIUM: ebtree: only consider the branches matching the scope in lookups
2253 - MINOR: ebtree: implement eb32sc_lookup_ge_or_first()
2254 - MAJOR: task: make use of the scope-aware ebtree functions
2255 - MINOR: task: simplify wake_expired_tasks() to avoid unlocking in the loop
2256 - MEDIUM: task: change the construction of the loop in process_runnable_tasks()
2257 - MINOR: threads: use faster locks for the spin locks
2258 - MINOR: tasks: only visit filled task slots after processing them
2259 - MEDIUM: tasks: implement a lockless scheduler for single-thread usage
2260 - BUG/MINOR: dns: Don't try to get the server lock if it's already held.
2261 - BUG/MINOR: dns: Don't lock the server lock in snr_check_ip_callback().
2262 - DOC: Add note about encrypted password CPU usage
2263 - BUG/MINOR: h2: set the "HEADERS_SENT" flag on stream, not connection
2264 - BUG/MEDIUM: h2: properly send an RST_STREAM on mux stream error
2265 - BUG/MEDIUM: h2: properly send the GOAWAY frame in the mux
2266 - BUG/MEDIUM: h2: don't try (and fail) to send non-existing data in the mux
2267 - MEDIUM: h2: remove the H2_SS_RESET intermediate state
2268 - BUG/MEDIUM: h2: fix some wrong error codes on connections
2269 - BUILD: threads: Rename SPIN/RWLOCK macros using HA_ prefix
2270 - BUILD: enable USE_THREAD for Solaris build.
2271 - BUG/MEDIUM: h2: don't close the connection is there are data left
2272 - MINOR: h2: don't re-enable the connection's task when we're closing
2273 - BUG/MEDIUM: h2: properly set H2_SF_ES_SENT when sending the final frame
2274 - BUG/MINOR: h2: correctly check for H2_SF_ES_SENT before closing
2275 - MINOR: h2: add new stream flag H2_SF_OUTGOING_DATA
2276 - BUG/MINOR: h2: don't send GOAWAY on failed response
2277 - BUG/MEDIUM: splice/threads: pipe reuse list was not protected.
2278 - BUG/MINOR: comp: fix compilation warning compiling without compression.
2279 - BUG/MINOR: stream-int: don't set MSG_MORE on closed request path
2280 - BUG/MAJOR: threads/tasks: fix the scheduler again
2281 - BUG/MINOR; ssl: Don't assume we have a ssl_bind_conf because a SNI is matched.
2282 - MINOR: ssl: Handle session resumption with TLS 1.3
2283 - MINOR: ssl: Spell 0x10101000L correctly.
2284 - MINOR: ssl: Handle sending early data to server.
2285 - BUILD: ssl: fix build of backend without ssl
2286 - BUILD: shctx: do not depend on openssl anymore
2287 - BUG/MINOR: h1: the HTTP/1 make status code parser check for digits
2288 - BUG/MEDIUM: h2: reject non-3-digit status codes
2289 - BUG/MEDIUM: stream-int: Don't loss write's notifs when a stream is woken up
2290 - BUG/MINOR: pattern: Rely on the sample type to copy it in pattern_exec_match
2291 - BUG/MEDIUM: h2: split the function to send RST_STREAM
2292 - BUG/MEDIUM: h1: ensure the chunk size parser can deal with full buffers
2293 - MINOR: tools: don't use unlikely() in hex2i()
2294 - BUG/MEDIUM: h2: support orphaned streams
2295 - BUG/MEDIUM: threads/cli: fix "show sess" locking on release
2296 - CLEANUP: mux: remove the unused "release()" function
2297 - MINOR: cli: make "show fd" report the fd's thread mask
2298 - BUG/MEDIUM: stream: don't ignore res.analyse_exp anymore
2299 - CLEANUP: global: introduce variable pid_bit to avoid shifts with relative_pid
2300 - MEDIUM: http: always reject the "PRI" method
2301
Willy Tarreaua8d8d6e2017-11-03 23:52:47 +010023022017/11/03 : 1.8-rc2
2303 - BUG/MINOR: send-proxy-v2: fix dest_len in make_tlv call
2304 - BUG/MINOR: send-proxy-v2: string size must include ('\0')
2305 - MINOR: mux: Only define pipe functions on linux.
2306 - MINOR: cache: Remove useless test for nonzero.
2307 - MINOR: cache: Don't confuse act_return and act_parse_ret.
2308 - BUG/MEDIUM: h2: don't try to parse incomplete H1 responses
2309 - BUG/MEDIUM: checks/mux: always enable send-polling after connecting
2310 - BUG/MAJOR: fix deadlock on healthchecks.
2311 - BUG/MINOR: thread: fix a typo in the debug code
2312 - BUILD: shctx: allow to be built without openssl
2313 - BUG/MEDIUM: cache: don't try to resolve wrong filters
2314 - BUG/MAJOR: buffers: fix get_buffer_nc() for data at end of buffer
2315 - BUG/MINOR: freq: fix infinite loop on freq_ctr_period.
2316 - BUG/MINOR: stdarg.h inclusion
2317 - BUG/MINOR: dns: fix missing lock protection on server.
2318 - BUG/MINOR: lua: fix missing lock protection on server.
2319 - BUILD: enable USE_THREAD for OpenBSD build.
2320 - BUG/MAJOR: mux_pt: don't dereference a connstream after ->wake()
2321 - MINOR: thread: report multi-thread support in haproxy -vv
2322
Willy Tarreau901f75c2017-10-31 23:18:29 +010023232017/10/31 : 1.8-rc1
2324 - BUG/MEDIUM: server: Allocate tmptrash before using it.
2325 - CONTRIB: trace: add the possibility to place trace calls in the code
2326 - CONTRIB: trace: try to display the function's return value on exit
2327 - CONTRIB: trace: report the base name only for file names
2328 - BUILD: ssl: support OPENSSL_NO_ASYNC #define
2329 - MINOR: ssl: build with recent BoringSSL library
2330 - BUG/MINOR: ssl: OCSP_single_get0_status can return -1
2331 - BUG/MINOR: cli: restore "set ssl tls-key" command
2332 - CLEANUP: cli: remove undocumented "set ssl tls-keys" command
2333 - IMPORT: sha1: import SHA1 functions
2334 - MINOR: sample: add the sha1 converter
2335 - MINOR: sample: add the hex2i converter
2336 - MINOR: stream-int: stop checking for useless connection flags in chk_snd_conn
2337 - MINOR: ssl: don't abort after sending 16kB
2338 - MINOR: connection: move the cleanup of flag CO_FL_WAIT_ROOM
2339 - MINOR: connection: add flag CO_FL_WILL_UPDATE to indicate when updates are granted
2340 - MEDIUM: connection: make use of CO_FL_WILL_UPDATE in conn_sock_shutw()
2341 - MINOR: raw_sock: make use of CO_FL_WILL_UPDATE
2342 - MINOR: ssl_sock: make use of CO_FL_WILL_UPDATE
2343 - BUG/MINOR: checks: Don't forget to release the connection on error case.
2344 - MINOR: buffer: add the buffer input manipulation functions
2345 - BUG/MEDIUM: prevent buffers being overwritten during build_logline() execution
2346 - MEDIUM: cfgparse: post section callback
2347 - MEDIUM: cfgparse: post parsing registration
2348 - MINOR: lua: add uuid to the Class Proxy
2349 - MINOR: hlua: Add regex class
2350 - MINOR: http: Mark the 425 code as "Too Early".
2351 - MEDIUM: ssl: convert CBS (BoringSSL api) usage to neutral code
2352 - MINOR: ssl: support Openssl 1.1.1 early callback for switchctx
2353 - MINOR: ssl: generated certificate is missing in switchctx early callback
2354 - MEDIUM: ssl: Handle early data with OpenSSL 1.1.1
2355 - BUILD: Makefile: disable -Wunused-label
2356 - MINOR: ssl/proto_http: Add keywords to take care of early data.
2357 - BUG/MINOR: lua: const attribute of a string is overridden
2358 - MINOR: ssl: Don't abuse ssl_options.
2359 - MINOR: update proxy-protocol-v2 #define
2360 - MINOR: merge ssl_sock_get calls for log and ppv2
2361 - MINOR: add ALPN information to send-proxy-v2
2362 - MEDIUM: h1: ensure that 1xx, 204 and 304 don't have a payload body
2363 - CLEANUP: shctx: get ride of the shsess_packet{_hdr} structures
2364 - MEDIUM: lists: list_for_each_entry{_safe}_from functions
2365 - REORG: shctx: move lock functions and struct
2366 - MEDIUM: shctx: allow the use of multiple shctx
2367 - REORG: shctx: move ssl functions to ssl_sock.c
2368 - MEDIUM: shctx: separate ssl and shctx
2369 - MINOR: shctx: rename lock functions
2370 - MINOR: h1: store the status code in the H1 message
2371 - BUG/MINOR: spoe: Don't compare engine name and SPOE scope when both are NULL
2372 - BUG/MINOR: spoa: Update pointer on the end of the frame when a reply is encoded
2373 - MINOR: action: Add trk_idx inline function
2374 - MINOR: action: Use trk_idx instead of tcp/http_trk_idx
2375 - MINOR: action: Add a function pointer in act_rule struct to check its validity
2376 - MINOR: action: Add function to check rules using an action ACT_ACTION_TRK_*
2377 - MINOR: action: Add a functions to check http capture rules
2378 - MINOR: action: Factorize checks on rules calling check_ptr if defined
2379 - MINOR: acl: Pass the ACLs as an explicit parameter of build_acl_cond
2380 - MEDIUM: spoe: Add support of ACLS to enable or disable sending of SPOE messages
2381 - MINOR: spoe: Check uniqness of SPOE engine names during config parsing
2382 - MEDIUM: spoe: Parse new "spoe-group" section in SPOE config file
2383 - MEDIUM: spoe/rules: Add "send-spoe-group" action for tcp/http rules
2384 - MINOR: spoe: Move message encoding in its own function
2385 - MINOR: spoe: Add a type to qualify the message list during encoding
2386 - MINOR: spoe: Add a generic function to encode a list of SPOE message
2387 - MEDIUM: spoe/rules: Process "send-spoe-group" action
2388 - BUG/MINOR: dns: Fix CLI keyword declaration
2389 - MAJOR: dns: Refactor the DNS code
2390 - BUG/MINOR: mailers: Fix a memory leak when email alerts are released
2391 - MEDIUM: mailers: Init alerts during conf parsing and refactor their processing
2392 - MINOR: mailers: Use pools to allocate email alerts and its tcpcheck_rules
2393 - MINOR: standard: Add memvprintf function
2394 - MINOR: log: Save alerts and warnings emitted during HAProxy startup
2395 - MINOR: cli: Add "show startup-logs" command
2396 - MINOR: startup: Extend the scope the MODE_STARTING flag
2397 - MINOR: threads: Prepare makefile to link with pthread
2398 - MINOR: threads: Add THREAD_LOCAL macro
2399 - MINOR: threads: Add atomic-ops and plock includes in import dir
2400 - MEDIUM: threads: Add hathreads header file
2401 - MINOR: threads: Add mechanism to register per-thread init/deinit functions
2402 - MINOR: threads: Add nbthread parameter
2403 - MEDIUM: threads: Adds a set of functions to handle sync-point
2404 - MAJOR: threads: Start threads to experiment multithreading
2405 - MINOR: threads: Define the sync-point inside run_poll_loop
2406 - MEDIUM: threads/buffers: Define and register per-thread init/deinit functions
2407 - MEDIUM: threads/chunks: Transform trash chunks in thread-local variables
2408 - MEDIUM: threads/time: Many global variables from time.h are now thread-local
2409 - MEDIUM: threads/logs: Make logs thread-safe
2410 - MEDIUM: threads/pool: Make pool thread-safe by locking all access to a pool
2411 - MAJOR: threads/fd: Make fd stuffs thread-safe
2412 - MINOR: threads/fd: Add a mask of threads allowed to process on each fd in fdtab array
2413 - MEDIUM: threads/fd: Initialize the process mask during the call to fd_insert
2414 - MINOR: threads/fd: Process cached events of FDs depending on the process mask
2415 - MINOR: threads/polling: pollers now handle FDs depending on the process mask
2416 - WIP: SQUASH WITH SYNC POINT
2417 - MAJOR: threads/task: handle multithread on task scheduler
2418 - MEDIUM: threads/signal: Add a lock to make signals thread-safe
2419 - MEDIUM: threads/listeners: Make listeners thread-safe
2420 - MEDIUM: threads/proxy: Add a lock per proxy and atomically update proxy vars
2421 - MEDIUM: threads/server: Make connection list (priv/idle/safe) thread-safe
2422 - MEDIUM: threads/server: Add a lock per server and atomically update server vars
2423 - MINOR: threads/server: Add a lock to deal with insert in updates_servers list
2424 - MEDIUM: threads/lb: Make LB algorithms (lb_*.c) thread-safe
2425 - MEDIUM: threads/stick-tables: handle multithreads on stick tables
2426 - MINOR: threads/sample: Change temp_smp into a thread local variable
2427 - MEDIUM: threads/http: Make http_capture_bad_message thread-safe
2428 - MINOR: threads/regex: Change Regex trash buffer into a thread local variable
2429 - MAJOR: threads/applet: Handle multithreading for applets
2430 - MAJOR: threads/peers: Make peers thread safe
2431 - MAJOR: threads/buffer: Make buffer wait queue thread safe
2432 - MEDIUM: threads/stream: Make streams list thread safe
2433 - MAJOR: threads/ssl: Make SSL part thread-safe
2434 - MEDIUM: threads/queue: Make queues thread-safe
2435 - MAJOR: threads/map: Make acls/maps thread safe
2436 - MEDIUM: threads/freq_ctr: Make the frequency counters thread-safe
2437 - MEDIUM: thread/vars: Make vars thread-safe
2438 - MEDIUM: threads/filters: Add init/deinit callback per thread
2439 - MINOR: threads/filters: Update trace filter to add _per_thread callbacks
2440 - MEDIUM: threads/compression: Make HTTP compression thread-safe
2441 - MEDIUM: threads/lua: Makes the jmpbuf and some other buffers local to the current thread.
2442 - MEDIUM: threads/lua: Add locks around the Lua execution parts.
2443 - MEDIUM: threads/lua: Ensure that the launched tasks runs on the same threads than me
2444 - MEDIUM: threads/lua: Cannot acces to the socket if we try to access from another thread.
2445 - MEDIUM: threads/xref: Convert xref function to a thread safe model
2446 - MEDIUM: threads/tasks: Add lock around notifications
2447 - MEDIUM: thread/spoe: Make the SPOE thread-safe
2448 - MEDIUM: thread/dns: Make DNS thread-safe
2449 - MINOR: threads: Add thread-map config parameter in the global section
2450 - MINOR: threads/checks: Add a lock to protect the pid list used by external checks
2451 - MINOR: threads/checks: Set the task process_mask when a check is executed
2452 - MINOR: threads/mailers: Add a lock to protect queues of email alerts
2453 - MEDIUM: threads/server: Use the server lock to protect health check and cli concurrency
2454 - MINOR: threads: Don't start when device a detection module is used
2455 - BUG/MEDIUM: threads: Run the poll loop on the main thread too
2456 - BUG/MINOR: threads: Add missing THREAD_LOCAL on static here and there
2457 - MAJOR: threads: Offically enable the threads support in HAProxy
2458 - BUG/MAJOR: threads/freq_ctr: fix lock on freq counters.
2459 - BUG/MAJOR: threads/time: Store the time deviation in an 64-bits integer
2460 - BUILD: stick-tables: silence an uninitialized variable warning
2461 - BUG/MINOR: dns: Fix SRV records with the new thread code.
2462 - MINOR: ssl: Remove the global allow-0rtt option.
2463 - CLEANUP: threads: replace the last few 1UL<<tid with tid_bit
2464 - CLEANUP: threads: rename process_mask to thread_mask
2465 - MINOR: h1: add a function to measure the trailers length
2466 - MINOR: threads: add a portable barrier for threads and non-threads
2467 - BUG/MAJOR: threads/freq_ctr: use a memory barrier to detect changes
2468 - BUG/MEDIUM: threads: Initialize the sync-point
2469 - MEDIUM: connection: start to introduce a mux layer between xprt and data
2470 - MINOR: connection: implement alpn registration of muxes
2471 - MINOR: mux: register the pass-through mux for any ALPN string
2472 - MEDIUM: session: use the ALPN token and proxy mode to select the mux
2473 - MINOR: connection: report the major HTTP version from the MUX for logging (fc_http_major)
2474 - MINOR: connection: introduce conn_stream
2475 - MINOR: mux: add more methods to mux_ops
2476 - MINOR: connection: introduce the conn_stream manipulation functions
2477 - MINOR: mux_pt: implement remaining mux_ops methods
2478 - MAJOR: connection : Split struct connection into struct connection and struct conn_stream.
2479 - MINOR: connection: make conn_stream users also check for per-stream error flag
2480 - MINOR: conn_stream: new shutr/w status flags
2481 - MINOR: conn_stream: modify cs_shut{r,w} API to pass the desired mode
2482 - MEDIUM: connection: make conn_sock_shutw() aware of lingering
2483 - MINOR: connection: add cs_close() to close a conn_stream
2484 - MEDIUM: mux_pt: make cs_shutr() / cs_shutw() properly close the connection
2485 - MEDIUM: connection: replace conn_full_close() with cs_close()
2486 - MEDIUM: connection: make mux->detach() release the connection
2487 - MEDIUM: stream: do not forcefully close the client connection anymore
2488 - MEDIUM: checks: exclusively use cs_destroy() to release a connection
2489 - MEDIUM: connection: add a destroy callback
2490 - MINOR: session: release the listener with the session, not the stream
2491 - MEDIUM: session: make use of the connection's destroy callback
2492 - CONTRIB: hpack: implement a reverse huffman table generator for hpack
2493 - MINOR: hpack: implement the HPACK Huffman table decoder
2494 - MINOR: hpack: implement the header tables management
2495 - MINOR: hpack: implement the decoder
2496 - MEDIUM: hpack: implement basic hpack encoding
2497 - MINOR: h2: centralize all HTTP/2 protocol elements and constants
2498 - MINOR: h2: create a very minimalistic h2 mux
2499 - MINOR: h2: expose tune.h2.header-table-size to configure the table size
2500 - MINOR: h2: expose tune.h2.initial-window-size to configure the window size
2501 - MINOR: h2: expose tune.h2.max-concurrent-streams to limit the number of streams
2502 - MINOR: h2: create the h2c struct and allocate its pool
2503 - MINOR: h2: create the h2s struct and the associated pool
2504 - MINOR: h2: handle two extra stream states for errors
2505 - MINOR: h2: add a frame header descriptor for incoming frames
2506 - MEDIUM: h2: allocate and release the h2c context on connection init/end
2507 - MEDIUM: h2: implement basic recv/send/wake functions
2508 - MEDIUM: h2: dynamically allocate the demux buffer on Rx
2509 - MEDIUM: h2: implement the mux buffer allocator
2510 - MINOR: h2: add the connection and stream flags listing the causes for blocking
2511 - MINOR: h2: add function h2s_id() to report a stream's ID
2512 - MINOR: h2: small function to know when the mux is busy
2513 - MINOR: h2: new function h2c_error to mark an error on the connection
2514 - MINOR: h2: new function h2s_error() to mark an error on a stream
2515 - MINOR: h2: add h2_set_frame_size() to update the size in a binary frame
2516 - MINOR: h2: new function h2_peek_frame_hdr() to retrieve a new frame header
2517 - MINOR: h2: add a few functions to retrieve contents from a wrapping buffer
2518 - MINOR: h2: add stream lookup function based on the stream ID
2519 - MINOR: h2: create dummy idle and closed streams
2520 - MINOR: h2: add the function to create a new stream
2521 - MINOR: h2: update the {MUX,DEM}_{M,D}ALLOC flags on buffer availability
2522 - MEDIUM: h2: start to consider the H2_CF_{MUX,DEM}_* flags for polling
2523 - MINOR: h2: also terminate the connection on shutr
2524 - MEDIUM: h2: properly consider all conditions for end of connection
2525 - MEDIUM: h2: wake the connection up for send on pending streams
2526 - MEDIUM: h2: start to implement the frames processing loop
2527 - MINOR: h2: add a function to send a GOAWAY error frame
2528 - MINOR: h2: match the H2 connection preface on init
2529 - MEDIUM: h2: enable connection polling for send when a cs wants to emit
2530 - MEDIUM: h2: enable reading again on the connection if it was blocked on stream buffer full
2531 - MEDIUM: h2: process streams pending for sending
2532 - MINOR: h2: send a real SETTINGS frame based on the configuration
2533 - MEDIUM: h2: detect the presence of the first settings frame
2534 - MINOR: h2: create a stream parser for the demuxer
2535 - MINOR: h2: implement PING frames
2536 - MEDIUM: h2: decode SETTINGS frames and extract relevant settings
2537 - MINOR: h2: lookup the stream during demuxing
2538 - MEDIUM: h2: honor WINDOW_UPDATE frames
2539 - MINOR: h2: implement h2_send_rst_stream() to send RST_STREAM frames
2540 - MINOR: h2: handle CONTINUATION frames
2541 - MEDIUM: h2: partial implementation of h2_detach()
2542 - MEDIUM: h2: unblock a connection when its current stream detaches
2543 - MEDIUM: h2: basic processing of HEADERS frame
2544 - MEDIUM: h2: don't use trash to decode headers!
2545 - MEDIUM: h2: implement the response HEADERS frame to encode the H1 response
2546 - MEDIUM: h2: send the H1 response body as DATA frames
2547 - MEDIUM: h2: skip the response trailers if any
2548 - MEDIUM: h2: properly continue to parse header block when facing a 1xx response
2549 - MEDIUM: h2: send WINDOW_UPDATE frames for connection
2550 - MEDIUM: h2: handle request body in DATA frames
2551 - MINOR: h2: handle RST_STREAM frames
2552 - MEDIUM: h2: send DATA+ES or RST_STREAM on shutw/shutr
2553 - MINOR: h2: use a common function to signal some and all streams.
2554 - MEDIUM: h2: handle GOAWAY frames
2555 - MINOR: h2: centralize the check for the idle streams
2556 - MINOR: h2: centralize the check for the half-closed(remote) streams
2557 - MEDIUM: h2: silently ignore frames higher than last_id after GOAWAY
2558 - MINOR: h2: properly reject PUSH_PROMISE frames coming from the client
2559 - MEDIUM: h2: perform a graceful shutdown on "Connection: close"
2560 - MEDIUM: h2: send a GOAWAY frame when dealing with an empty response
2561 - MEDIUM: h2: apply a timeout to h2 connections
2562 - BUG/MEDIUM: h2: fix incorrect timeout handling on the connection
2563 - MEDIUM: shctx: forbid shctx to read more than expected
2564 - MEDIUM: cache: configuration parsing and initialization
2565 - MEDIUM: cache: store objects in cache
2566 - MEDIUM: cache: deliver objects from cache
2567
Willy Tarreauf08137c2017-10-22 10:13:45 +020025682017/10/22 : 1.8-dev3
2569 - REORG: ssl: move defines and methodVersions table upper
2570 - MEDIUM: ssl: ctx_set_version/ssl_set_version func for methodVersions table
2571 - MINOR: ssl: support ssl-min-ver and ssl-max-ver with crt-list
2572 - MEDIUM: ssl: disable SSLv3 per default for bind
2573 - BUG/MAJOR: ssl: fix segfault on connection close using async engines.
2574 - BUG/MAJOR: ssl: buffer overflow using offloaded ciphering on async engine
2575 - BUG/MINOR: ssl: do not call directly the conn_fd_handler from async_fd_handler
2576 - BUG/MINOR: haproxy/cli : fix for solaris/illumos distros for CMSG* macros
2577 - BUG/MEDIUM: build without openssl broken
2578 - BUG/MINOR: warning: need_resend may be used uninitialized
2579 - BUG/MEDIUM: misplaced exit and wrong exit code
2580 - BUG/MINOR: Makefile: fix compile error with USE_LUA=1 in ubuntu16.04
2581 - BUILD: scripts: make publish-release support bare repositories
2582 - BUILD: scripts: add an automatic mode for publish-release
2583 - BUILD: scripts: add a "quiet" mode to publish-release
2584 - BUG/MAJOR: http: call manage_client_side_cookies() before erasing the buffer
2585 - BUG/MINOR: buffers: Fix bi/bo_contig_space to handle full buffers
2586 - CONTRIB: plug qdiscs: Plug queuing disciplines mini HOWTO.
2587 - BUG/MINOR: acls: Set the right refflag when patterns are loaded from a map
2588 - BUG/MINOR: ssl: Be sure that SSLv3 connection methods exist for openssl < 1.1.0
2589 - BUG/MINOR: http/filters: Be sure to wait if a filter loops in HTTP_MSG_ENDING
2590 - BUG/MEDIUM: peers: Peers CLOSE_WAIT issue.
2591 - BUG/MAJOR: server: Segfault after parsing server state file.
2592 - BUG/MEDIUM: unix: never unlink a unix socket from the file system
2593 - scripts: create-release pass -n to tail
2594 - SCRIPTS: create-release: enforce GIT_COMMITTER_{NAME|EMAIL} validity
2595 - BUG/MEDIUM: fix segfault when no argument to -x option
2596 - MINOR: warning on multiple -x
2597 - MINOR: mworker: don't copy -x argument anymore in copy_argv()
2598 - BUG/MEDIUM: mworker: don't reuse PIDs passed to the master
2599 - BUG/MINOR: Wrong peer task expiration handling during synchronization processing.
2600 - BUG/MINOR: cfgparse: Check if tune.http.maxhdr is in the range 1..32767
2601 - BUG/MINOR: log: pin the front connection when front ip/ports are logged
2602 - DOC: fix references to the section about the unix socket
2603 - BUG/MINOR: stream: flag TASK_WOKEN_RES not set if task in runqueue
2604 - MAJOR: task: task scheduler rework.
2605 - MINOR: task/stream: tasks related to a stream must be init by the caller.
2606 - MINOR: queue: Change pendconn_get_next_strm into private function
2607 - MINOR: backends: Change get_server_sh/get_server_uh into private function
2608 - MINOR: queue: Change pendconn_from_srv/pendconn_from_px into private functions
2609 - MEDIUM: stream: make stream_new() always set the target and analysers
2610 - MINOR: frontend: initialize HTTP layer after the debugging code
2611 - MINOR: connection: add a .get_alpn() method to xprt_ops
2612 - MINOR: ssl: add a get_alpn() method to ssl_sock
2613 - MINOR: frontend: retrieve the ALPN name when available
2614 - MINOR: frontend: report the connection's ALPN in the debug output
2615 - MINOR: stream: don't set backend's nor response analysers on SF_TUNNEL
2616 - MINOR: connection: send data before receiving
2617 - MAJOR: applet: applet scheduler rework.
2618 - BUG/MAJOR: frontend: don't dereference a null conn on outgoing connections
2619 - BUG/MAJOR: cli: fix custom io_release was crushed by NULL.
2620 - BUG/MAJOR: map: fix segfault during 'show map/acl' on cli.
2621 - BUG/MAJOR: compression: Be sure to release the compression state in all cases
2622 - MINOR: compression: Use a memory pool to allocate compression states
2623 - BUG/MAJOR: applet: fix a freeze if data is immedately forwarded.
2624 - DOC: fix references to the section about time format.
2625 - BUG/MEDIUM: map/acl: fix unwanted flags inheritance.
2626 - BUG/MAJOR: http: fix buffer overflow on loguri buffer.
2627 - MINOR: ssl: compare server certificate names to the SNI on outgoing connections
2628 - BUG/MINOR: stream: Don't forget to remove CF_WAKE_ONCE flag on response channel
2629 - BUG/MINOR: http: Don't reset the transaction if there are still data to send
2630 - BUG/MEDIUM: filters: Be sure to call flt_end_analyze for both channels
2631 - MINOR: peers: Add additional information to stick-table definition messages.
2632 - BUG/MINOR: http: properly handle all 1xx informational responses
2633 - OPTIM: ssl: don't consider a small ssl_read() as an indication of end of buffer
2634 - BUG/MINOR: peers: peer synchronization issue (with several peers sections).
2635 - CLEANUP: hdr_idx: make some function arguments const where possible
2636 - BUG/MINOR: Prevent a use-after-free on error scenario on option "-x".
2637 - BUG/MINOR: lua: In error case, the safe mode is not removed
2638 - BUG/MINOR: lua: executes the function destroying the Lua session in safe mode
2639 - BUG/MAJOR: lua/socket: resources not detroyed when the socket is aborted
2640 - BUG/MEDIUM: lua: bad memory access
2641 - BUG/MINOR: Lua: variable already initialized
2642 - DOC: update CONTRIBUTING regarding optional parts and message format
2643 - DOC: update the list of OpenSSL versions in the README
2644 - BUG/MINOR: http: Set the response error state in http_sync_res_state
2645 - MINOR: http: Reorder/rewrite checks in http_resync_states
2646 - MINOR: http: Switch requests/responses in TUNNEL mode only by checking txn flags
2647 - BUG/MEDIUM: http: Switch HTTP responses in TUNNEL mode when body length is undefined
2648 - MINOR: http: Rely on analyzers mask to end processing in forward_body functions
2649 - BUG/MINOR: http: Fix bug introduced in previous patch in http_resync_states
2650 - BUG/MINOR: contrib/modsecurity: BSD build fix
2651 - BUG/MINOR: contrib/mod_defender: build fix
2652 - BUG/MINOR: ssl: remove haproxy SSLv3 support when ssl lib have no SSLv3
2653 - MINOR: ssl: remove an unecessary SSL_OP_NO_* dependancy
2654 - BUILD: ssl: fix compatibility with openssl without TLSEXT_signature_*
2655 - MINOR: tools: add a portable timegm() alternative
2656 - BUILD: lua: replace timegm() with my_timegm() to fix build on Solaris 10
2657 - DOC: Updated 51Degrees git URL to point to a stable version.
2658 - BUG/MAJOR: http: Fix possible infinity loop in http_sync_(req|res)_state
2659 - MINOR: memory: remove macros
2660 - BUG/MINOR: lua: Fix Server.get_addr() port values
2661 - BUG/MINOR: lua: Correctly use INET6_ADDRSTRLEN in Server.get_addr()
2662 - MINOR: samples: Handle the type SMP_T_METH when we duplicate a sample in smp_dup
2663 - MINOR: samples: Handle the type SMP_T_METH in smp_is_safe and smp_is_rw
2664 - MINOR: samples: Don't allocate memory for SMP_T_METH sample when method is known
2665 - BUG/MINOR: lua: always detach the tcp/http tasks before freeing them
2666 - MINOR: task: always preinitialize the task's timeout in task_init()
2667 - CLEANUP: task: remove all initializations to TICK_ETERNITY after task_new()
2668 - BUG/MAJOR: lua: properly dequeue hlua_applet_wakeup() for new scheduler
2669 - MINOR: lua: Add proxy as member of proxy object.
2670 - DOC: lua: Proxy class doc update
2671 - MINOR: lua: Add lists of frontends and backends
2672 - BUG/MINOR: ssl: Fix check against SNI during server certificate verification
2673 - BUG/MINOR: ssl: make use of the name in SNI before verifyhost
2674 - MINOR: ssl: add a new error codes for wrong server certificates
2675 - BUG/MEDIUM: stream: don't retry SSL connections which fail the SNI name check
2676 - MINOR: ssl: add "no-ca-names" parameter for bind
2677 - BUG/MINOR: lua: Fix bitwise logic for hlua_server_check_* functions.
2678 - DOC: fix alphabetical order of "show commands" in management.txt
2679 - MINOR: listener: add a function to return a listener's state as a string
2680 - MINOR: cli: add a new "show fd" command
2681 - BUG/MEDIUM: ssl: Fix regression about certificates generation
2682 - MINOR: Add server port field to server state file.
2683 - MINOR: ssl: allow to start without certificate if strict-sni is set
2684 - MINOR: dns: Cache previous DNS answers.
2685 - MINOR: obj: Add a new type of object, OBJ_TYPE_SRVRQ.
2686 - Add a few functions to do unaligned access.
2687 - MINOR: dns: Handle SRV records.
2688 - MINOR: check: Fix checks when using SRV records.
2689 - MINOR: doc: Document SRV label usage.
2690 - BUILD/MINOR: cli: shut a minor gcc warning in "show fd"
2691 - BUILD: ssl: replace SSL_CTX_get0_privatekey for openssl < 1.0.2
2692 - BUILD/MINOR: build without openssl still broken
2693 - BUG/MAJOR: stream: in stream_free(), close the front endpoint and not the origin
2694 - CLEANUP: raw_sock: Use a better name for the constructor than __ssl_sock_deinit()
2695 - MINOR: init: Fix CPU affinity setting on FreeBSD.
2696 - MINOR: dns: Update analysis of TRUNCATED response for SRV records
2697 - MINOR: dns: update record dname matching for SRV query types
2698 - MINOR: dns: update dns response buffer reading pointer due to SRV record
2699 - MINOR: dns: duplicate entries in resolution wait queue for SRV records
2700 - MINOR: dns: make debugging function dump_dns_config() compatible with SRV records
2701 - MINOR: dns: ability to use a SRV resolution for multiple backends
2702 - MINOR: dns: enable caching of responses for server set by a SRV record
2703 - MINOR: dns: new dns record type (RTYPE) for OPT
2704 - MINOR: dns: enabled edns0 extension and make accpeted payload size tunable
2705 - MINOR: dns: default "hold obsolete" timeout set to 0
2706 - MINOR: chunks: add chunk_memcpy() and chunk_memcat()
2707 - MINOR: session: add a streams field to the session struct
2708 - MINOR: stream: link the stream to its session
2709 - MEDIUM: session: do not free a session until no stream references it
2710 - MINOR: ist: implement very simple indirect strings
2711 - TESTS: ist: add a test file for the functions
2712 - MINOR: http: export some of the HTTP parser macros
2713 - BUG/MINOR: Wrong type used as argument for spoe_decode_buffer().
2714 - BUG/MINOR: dns: server set by SRV records stay in "no resolution" status
2715 - MINOR: dns: Maximum DNS udp payload set to 8192
2716 - MINOR: dns: automatic reduction of DNS accpeted payload size
2717 - MINOR: dns: make SRV record processing more verbose
2718 - CLEANUP: dns: remove duplicated code in dns_resolve_recv()
2719 - CLEANUP: dns: remove duplicated code in dns_validate_dns_response()
2720 - BUG/MINOR: dns: wrong resolution interval lead to 100% CPU
2721 - BUG/MEDIUM: dns: fix accepted_payload_size parser to avoid integer overflow
2722 - BUG/MAJOR: lua: fix the impact of the scheduler changes again
2723 - BUG/MEDIUM: lua: HTTP services must take care of body-less status codes
2724 - MINOR: lua: properly process the contents of the content-length field
2725 - BUG/MEDIUM: stream: properly set the required HTTP analysers on use-service
2726 - OPTIM: lua: don't use expensive functions to parse headers in the HTTP applet
2727 - OPTIM: lua: don't add "Connection: close" on the response
2728 - REORG/MEDIUM: connection: introduce the notion of connection handle
2729 - BUG/MINOR: stream-int: don't check the CO_FL_CURR_WR_ENA flag
2730 - MEDIUM: connection: get rid of data->init() which was not for data
2731 - MEDIUM: stream: make stream_new() allocate its own task
2732 - CLEANUP: listener: remove the unused handler field
2733 - MEDIUM: session: add a pointer to a struct task in the session
2734 - MINOR: stream: provide a new stream creation function for connections
2735 - MEDIUM: connection: remove useless flag CO_FL_DATA_RD_SH
2736 - CLEANUP: connection: remove the unused conn_sock_shutw_pending()
2737 - MEDIUM: connection: remove useless flag CO_FL_DATA_WR_SH
2738 - DOC: add CLI info on privilege levels
2739 - DOC: Refer to Mozilla TLS info / config generator
2740 - MINOR: ssl: remove duplicate ssl_methods in struct bind_conf
2741 - BUG/MEDIUM: http: Fix a regression bug when a HTTP response is in TUNNEL mode
2742 - DOC: Add note about "* " prefix in CSV stats
2743 - CLEANUP: memory: Remove unused function pool_destroy
2744 - MINOR: listeners: Change listener_full and limit_listener into private functions
2745 - MINOR: listeners: Change enable_listener and disable_listener into private functions
2746 - MINOR: fd: Don't forget to reset fdtab[fd].update when a fd is added/removed
2747 - MINOR: fd: Set owner and iocb field before inserting a new fd in the fdtab
2748 - MINOR: backends: Make get_server_* functions explicitly static
2749 - MINOR: applet: Check applets_active_queue before processing applets queue
2750 - MINOR: chunks: Use dedicated function to init/deinit trash buffers
2751 - MEDIUM: chunks: Realloc trash buffers only after the config is parsed and checked
2752 - MINOR: logs: Use dedicated function to init/deinit log buffers
2753 - MINOR: logs: Realloc log buffers only after the config is parsed and checked
2754 - MINOR: buffers: Move swap_buffer into buffer.c and add deinit_buffer function
2755 - MINOR: stick-tables: Make static_table_key a struct variable instead of a pointer
2756 - MINOR: http: Use a trash chunk to store decoded string of the HTTP auth header
2757 - MINOR: fd: Add fd_active function
2758 - MINOR: fd: Use inlined functions to check fd state in fd_*_send/recv functions
2759 - MINOR: fd: Move (de)allocation of fdtab and fdinfo in (de)init_pollers
2760 - MINOR: freq_ctr: Return the new value after an update
2761 - MEDIUM: check: server states and weight propagation re-work
2762 - BUG/MEDIUM: epoll: ensure we always consider HUP and ERR
2763 - MINOR: fd: Add fd_update_events function
2764 - MINOR: polling: Use fd_update_events to update events seen for a fd
2765 - BUG/MINOR: server: Remove FQDN requirement for using init-addr and state file
2766 - Revert "BUG/MINOR: server: Remove FQDN requirement for using init-addr and state file"
2767 - MINOR: ssl: rework smp_fetch_ssl_fc_cl_str without internal ssl use
2768 - BUG/MEDIUM: http: Close streams for connections closed before a redirect
2769 - BUG/MINOR: Lua: The socket may be destroyed when we try to access.
2770 - MINOR: xref: Add a new xref system
2771 - MEDIUM: xref/lua: Use xref for referencing cosocket relation between stream and lua
2772 - MINOR: tasks: Move Lua notification from Lua to tasks
2773 - MINOR: net_helper: Inline functions meant to be inlined.
2774 - MINOR: cli: add socket commands and config to prepend informational messages with severity
2775 - MINOR: add severity information to cli feedback messages
2776 - BUILD: Makefile: add a function to detect support by the compiler of certain options
2777 - BUILD: Makefile: shut certain gcc/clang stupid warnings
2778 - BUILD: Makefile: improve detection of support for compiler warnings
2779 - MINOR: peers: don't reference the incoming listener on outgoing connections
2780 - MINOR: frontend: don't retrieve ALPN on the critical path
2781 - MINOR: protocols: always pass a "port" argument to the listener creation
2782 - MINOR: protocols: register the ->add function and stop calling them directly
2783 - MINOR: unix: remove the now unused proto_uxst.h file
2784 - MINOR: listeners: new function create_listeners
2785 - MINOR: listeners: make listeners count consistent with reality
2786 - MEDIUM: session: take care of incrementing/decrementing jobs
2787 - MINOR: listener: new function listener_release
2788 - MINOR: session: small cleanup of conn_complete_session()
2789 - MEDIUM: session: factor out duplicated code for conn_complete_session
2790 - MEDIUM: session: count the frontend's connections at a single place
2791 - BUG/MEDIUM: compression: Fix check on txn in smp_fetch_res_comp_algo
2792 - BUG/MINOR: compression: Check response headers before http-response rules eval
2793 - BUG/MINOR: spoe: Don't rely on SPOE ctx in debug message when its creation failed
2794 - BUG/MINOR: dns: Fix check on nameserver in snr_resolution_cb
2795 - MINOR: ssl: Remove useless checks on bind_conf or bind_conf->is_ssl
2796 - BUG/MINOR: contrib/mod_defender: close the va_list argp before return
2797 - BUG/MINOR: contrib/modsecurity: close the va_list ap before return
2798 - MINOR: tools: make my_htonll() more efficient on x86_64
2799 - MINOR: buffer: add b_del() to delete a number of characters
2800 - MINOR: buffer: add b_end() and b_to_end()
2801 - MINOR: net_helper: add functions to read from vectors
2802 - MINOR: net_helper: add write functions
2803 - MINOR: net_helper: add 64-bit read/write functions
2804 - MINOR: connection: adjust CO_FL_NOTIFY_DATA after removal of flags
2805 - MINOR: ist: add a macro to ease const array initialization
2806 - BUG/MEDIUM: server: unwanted behavior leaving maintenance mode on tracked stopping server
2807 - BUG/MEDIUM: server: unwanted behavior leaving maintenance mode on tracked stopping server (take2)
2808 - BUG/MINOR: log: fixing small memory leak in error code path.
2809 - BUG/MINOR: contrib/halog: fixing small memory leak
2810 - BUG/MEDIUM: tcp/http: set-dst-port action broken
2811 - CLEANUUP: checks: don't set conn->handle.fd to -1
2812 - BUG/MEDIUM: tcp-check: properly indicate polling state before performing I/O
2813 - BUG/MINOR: tcp-check: don't quit with pending data in the send buffer
2814 - BUG/MEDIUM: tcp-check: don't call tcpcheck_main() from the I/O handlers!
2815 - BUG/MINOR: unix: properly check for octal digits in the "mode" argument
2816 - MINOR: checks: make chk_report_conn_err() take a check, not a connection
2817 - CLEANUP: checks: remove misleading comments and statuses for external process
2818 - CLEANUP: checks: don't report report the fork() error twice
2819 - CLEANUP: checks: do not allocate a connection for process checks
2820 - TESTS: checks: add a simple test config for external checks
2821 - BUG/MINOR: tcp-check: don't initialize then break a connection starting with a comment
2822 - TESTS: checks: add a simple test config for tcp-checks
2823 - MINOR: tcp-check: make tcpcheck_main() take a check, not a connection
2824 - MINOR: checks: don't create then kill a dummy connection before tcp-checks
2825 - MEDIUM: checks: make tcpcheck_main() indicate if it recycled a connection
2826 - MEDIUM: checks: do not allocate a permanent connection anymore
2827 - BUG/MEDIUM: cli: fix "show fd" crash when dumping closed FDs
2828 - BUG/MEDIUM: http: Return an error when url_dec sample converter failed
2829 - BUG/MAJOR: stream-int: don't re-arm recv if send fails
2830 - BUILD/MINOR: 51d: fix warning when building with 51Degrees release version 3.2.12.12
2831 - DOC: 51d: add 51Degrees git URL that points to release version 3.2.12.12
2832 - DOC: 51d: Updated git URL and instructions for getting Hash Trie data files.
2833 - MINOR: compiler: restore the likely() wrapper for gcc 5.x
2834 - MINOR: session: remove the list of streams from struct session
2835 - DOC: fix some typos
2836 - MINOR: server: add the srv_queue() sample fetch method
2837 - MINOR: payload: add new sample fetch functions to process distcc protocol
2838 - MAJOR: servers: propagate server status changes asynchronously.
2839 - BUG/MEDIUM: ssl: fix OCSP expiry calculation
2840 - BUG/MINOR: stream-int: don't set MSG_MORE on SHUTW_NOW without AUTO_CLOSE
2841 - MINOR: server: Handle weight increase in consistent hash.
2842 - MINOR: checks: Add a new keyword to specify a SNI when doing SSL checks.
2843 - BUG/MINOR: tools: fix my_htonll() on x86_64
2844 - BUG/MINOR: stats: Clear a bit more counters with in cli_parse_clear_counters().
2845 - BUG/MAJOR: lua: scheduled task is freezing.
2846 - MINOR: buffer: add bo_del() to delete a number of characters from output
2847 - MINOR: buffer: add a function to match against string patterns
2848 - MINOR: buffer: add two functions to inject data into buffers
2849 - MINOR: buffer: add buffer_space_wraps()
2850 - REORG: channel: finally rename the last bi_* / bo_* functions
2851 - MINOR: buffer: add bo_getblk() and bo_getblk_nc()
2852 - MINOR: channel: make use of bo_getblk{,_nc} for their channel equivalents
2853 - MINOR: channel: make the channel be a const in all {ci,co}_get* functions
2854 - MINOR: ist: add ist0() to add a trailing zero to a string.
2855 - BUG/MEDIUM: log: check result details truncated.
2856 - MINOR: buffer: make bo_getblk_nc() not return 2 for a full buffer
2857 - REORG: http: move some very http1-specific parts to h1.{c,h}
2858 - REORG: http: move the HTTP/1 chunk parser to h1.{c,h}
2859 - REORG: http: move the HTTP/1 header block parser to h1.c
2860 - MEDIUM: http: make the chunk size parser only depend on the buffer
2861 - MEDIUM: http: make the chunk crlf parser only depend on the buffer
2862 - MINOR: h1: add struct h1m for basic HTTP/1 messages
2863 - MINOR: http: add very simple header management based on double strings
2864 - MEDIUM: h1: reimplement the http/1 response parser for the gateway
2865 - REORG: connection: rename CO_FL_DATA_* -> CO_FL_XPRT_*
2866 - MEDIUM: connection: make conn_sock_shutw() aware of lingering
2867 - MINOR: connection: ensure conn_ctrl_close() also resets the fd
2868 - MINOR: connection: add conn_stop_tracking() to disable tracking
2869 - MINOR: tcp: use conn_full_close() instead of conn_force_close()
2870 - MINOR: unix: use conn_full_close() instead of conn_force_close()
2871 - MINOR: checks: use conn_full_close() instead of conn_force_close()
2872 - MINOR: session: use conn_full_close() instead of conn_force_close()
2873 - MINOR: stream: use conn_full_close() instead of conn_force_close()
2874 - MINOR: stream: use conn_full_close() instead of conn_force_close()
2875 - MINOR: backend: use conn_full_close() instead of conn_force_close()
2876 - MINOR: stream-int: use conn_full_close() instead of conn_force_close()
2877 - MINOR: connection: remove conn_force_close()
2878 - BUG/MINOR: ssl: ocsp response with 'revoked' status is correct
2879
Willy Tarreauf57a29a2017-06-02 15:59:51 +020028802017/06/02 : 1.8-dev2
2881 - CLEANUP: server: moving netinet/tcp.h inclusion
2882 - DOC: changed "block"(deprecated) examples to http-request deny
2883 - DOC: add few comments to examples.
2884 - DOC: update sample code for PROXY protocol
2885 - DOC: mention lighttpd 1.4.46 implements PROXY
2886 - MINOR server: Restrict dynamic cookie check to the same proxy.
2887 - DOC: stick-table is available in frontend sections
2888 - BUG/MINOR: server : no transparent proxy for DragonflyBSD
2889 - BUILD/MINOR: stats: remove unexpected argument to stats_dump_json_header()
2890 - BUILD/MINOR: tools: fix build warning in debug_hexdump()
2891 - BUG/MINOR: dns: Wrong address family used when creating IPv6 sockets.
2892 - BUG/MINOR: config: missing goto out after parsing an incorrect ACL character
2893 - BUG/MINOR: arg: don't try to add an argument on failed memory allocation
2894 - MEDIUM: server: Inherit CLI weight changes and agent-check weight responses
2895 - BUG/MEDIUM: arg: ensure that we properly unlink unresolved arguments on error
2896 - BUG/MEDIUM: acl: don't free unresolved args in prune_acl_expr()
2897 - BUG/MEDIUM: servers: unbreak server weight propagation
2898 - MINOR: lua: ensure the memory allocator is used all the time
2899 - MINOR: cli: Add a command to send listening sockets.
2900 - MINOR: global: Add an option to get the old listening sockets.
2901 - MINOR: tcp: When binding socket, attempt to reuse one from the old proc.
2902 - MINOR: doc: document the -x flag
2903 - MINOR: proxy: Don't close FDs if not our proxy.
2904 - MINOR: socket transfer: Set a timeout on the socket.
2905 - MINOR: systemd wrapper: add support for passing the -x option.
2906 - BUG/MINOR: server: Fix a wrong error message during 'usesrc' keyword parsing.
2907 - BUG/MAJOR: Broken parsing for valid keywords provided after 'source' setting.
2908 - CLEANUP: logs: typo: simgle => single
2909 - BUG/MEDIUM: acl: proprely release unused args in prune_acl_expr()
2910 - MEDIUM: config: don't check config validity when there are fatal errors
2911 - BUG/MAJOR: Use -fwrapv.
2912 - BUG/MINOR: server: don't use "proxy" when px is really meant.
2913 - BUG/MEDIUM: http: Drop the connection establishment when a redirect is performed
2914 - BUG/MINOR: server: missing default server 'resolvers' setting duplication.
2915 - MINOR: server: Extract the code responsible of copying default-server settings.
2916 - MINOR: server: Extract the code which finalizes server initializations after 'server' lines parsing.
2917 - MINOR: server: Add 'server-template' new keyword supported in backend sections.
2918 - MINOR: server: Add server_template_init() function to initialize servers from a templates.
2919 - DOC: Add documentation for new "server-template" keyword.
2920 - DOC: add layer 4 links/cross reference to "block" keyword.
2921 - DOC: errloc/errorloc302/errorloc303 missing status codes.
2922 - BUG/MEDIUM: lua: memory leak
2923 - CLEANUP: lua: remove test
2924 - BUG/MINOR: hash-balance-factor isn't effective in certain circumstances
2925 - BUG/MINOR: change header-declared function to static inline
2926 - REORG: spoe: move spoe_encode_varint / spoe_decode_varint from spoe to common
2927 - MINOR: Add binary encoding request header sample fetch
2928 - MINOR: proto-http: Add sample fetch wich returns all HTTP headers
2929 - MINOR: Add ModSecurity wrapper as contrib
2930 - BUG/MINOR: ssl: fix warnings about methods for opensslv1.1.
2931 - DOC: update RFC references
2932 - CONTRIB: tcploop: add action "X" to execute a command
2933 - MINOR: server: cli: Add server FQDNs to server-state file and stats socket.
2934 - BUG/MINOR: contrib/mod_security: fix build on FreeBSD
2935 - BUG/MINOR: checks: don't send proxy protocol with agent checks
2936 - MINOR: ssl: add prefer-client-ciphers
2937 - MEDIUM: ssl: revert ssl/tls version settings relative to default-server.
2938 - MEDIUM: ssl: ssl_methods implementation is reworked and factored for min/max tlsxx
2939 - MEDIUM: ssl: calculate the real min/max TLS version and find holes
2940 - MINOR: ssl: support TLSv1.3 for bind and server
2941 - MINOR: ssl: show methods supported by openssl
2942 - MEDIUM: ssl: add ssl-min-ver and ssl-max-ver parameters for bind and server
2943 - MEDIUM: ssl: ssl-min-ver and ssl-max-ver compatibility.
2944 - CLEANUP: retire obsoleted USE_GETSOCKNAME build option
2945 - BUG/MAJOR: dns: Broken kqueue events handling (BSD systems).
2946 - MINOR: sample: Add b64dec sample converter
2947 - BUG/MEDIUM: lua: segfault if a converter or a sample doesn't return anything
2948 - MINOR: cli: add ACCESS_LVL_MASK to store the access level
2949 - MINOR: cli: add 'expose-fd listeners' to pass listeners FDs
2950 - MEDIUM: proxy: zombify proxies only when the expose-fd socket is bound
2951 - MEDIUM: ssl: add basic support for OpenSSL crypto engine
2952 - MAJOR: ssl: add openssl async mode support
2953 - MEDIUM: ssl: handle multiple async engines
2954 - MINOR: boringssl: basic support for OCSP Stapling
2955 - MEDIUM: mworker: replace systemd mode by master worker mode
2956 - MEDIUM: mworker: handle reload and signals
2957 - MEDIUM: mworker: wait mode on reload failure
2958 - MEDIUM: mworker: try to guess the next stats socket to use with -x
2959 - MEDIUM: mworker: exit-on-failure option
2960 - MEDIUM: mworker: workers exit when the master leaves
2961 - DOC: add documentation for the master-worker mode
2962 - MEDIUM: systemd: Type=forking in unit file
2963 - MAJOR: systemd-wrapper: get rid of the wrapper
2964 - MINOR: log: Add logurilen tunable.
2965 - CLEANUP: server.c: missing prototype of srv_free_dns_resolution
2966 - MINOR: dns: smallest DNS fqdn size
2967 - MINOR: dns: functions to manage memory for a DNS resolution structure
2968 - MINOR: dns: parse_server() now uses srv_alloc_dns_resolution()
2969 - REORG: dns: dns_option structure, storage of hostname_dn
2970 - MINOR: dns: new snr_check_ip_callback function
2971 - MAJOR: dns: save a copy of the DNS response in struct resolution
2972 - MINOR: dns: implement a LRU cache for DNS resolutions
2973 - MINOR: dns: make 'ancount' field to match the number of saved records
2974 - MINOR: dns: introduce roundrobin into the internal cache (WIP)
2975 - MAJOR/REORG: dns: DNS resolution task and requester queues
2976 - BUILD: ssl: fix build with OPENSSL_NO_ENGINE
2977 - MINOR: Add Mod Defender integration as contrib
2978 - CLEANUP: str2mask return code comment: non-zero -> zero.
2979 - MINOR: tools: make debug_hexdump() use a const char for the string
2980 - MINOR: tools: make debug_hexdump() take a string prefix
2981 - CLEANUP: connection: remove unused CO_FL_WAIT_DATA
2982
Willy Tarreau7b677262017-04-03 09:27:49 +020029832017/04/03 : 1.8-dev1
2984 - BUG/MEDIUM: proxy: return "none" and "unknown" for unknown LB algos
2985 - BUG/MINOR: stats: make field_str() return an empty string on NULL
2986 - DOC: Spelling fixes
2987 - BUG/MEDIUM: http: Fix tunnel mode when the CONNECT method is used
2988 - BUG/MINOR: http: Keep the same behavior between 1.6 and 1.7 for tunneled txn
2989 - BUG/MINOR: filters: Protect args in macros HAS_DATA_FILTERS and IS_DATA_FILTER
2990 - BUG/MINOR: filters: Invert evaluation order of HTTP_XFER_BODY and XFER_DATA analyzers
2991 - BUG/MINOR: http: Call XFER_DATA analyzer when HTTP txn is switched in tunnel mode
2992 - BUG/MAJOR: stream: fix session abort on resource shortage
2993 - OPTIM: stream-int: don't disable polling anymore on DONT_READ
2994 - BUG/MINOR: cli: allow the backslash to be escaped on the CLI
2995 - BUG/MEDIUM: cli: fix "show stat resolvers" and "show tls-keys"
2996 - DOC: Fix map table's format
2997 - DOC: Added 51Degrees conv and fetch functions to documentation.
2998 - BUG/MINOR: http: don't send an extra CRLF after a Set-Cookie in a redirect
2999 - DOC: mention that req_tot is for both frontends and backends
3000 - BUG/MEDIUM: variables: some variable name can hide another ones
3001 - MINOR: lua: Allow argument for actions
3002 - BUILD: rearrange target files by build time
3003 - CLEANUP: hlua: just indent functions
3004 - MINOR: lua: give HAProxy variable access to the applets
3005 - BUG/MINOR: stats: fix be/sessions/max output in html stats
3006 - MINOR: proxy: Add fe_name/be_name fetchers next to existing fe_id/be_id
3007 - DOC: lua: Documentation about some entry missing
3008 - DOC: lua: Add documentation about variable manipulation from applet
3009 - MINOR: Do not forward the header "Expect: 100-continue" when the option http-buffer-request is set
3010 - DOC: Add undocumented argument of the trace filter
3011 - DOC: Fix some typo in SPOE documentation
3012 - MINOR: cli: Remove useless call to bi_putchk
3013 - BUG/MINOR: cli: be sure to always warn the cli applet when input buffer is full
3014 - MINOR: applet: Count number of (active) applets
3015 - MINOR: task: Rename run_queue and run_queue_cur counters
3016 - BUG/MEDIUM: stream: Save unprocessed events for a stream
3017 - BUG/MAJOR: Fix how the list of entities waiting for a buffer is handled
3018 - BUILD/MEDIUM: Fixing the build using LibreSSL
3019 - BUG/MEDIUM: lua: In some case, the return of sample-fetches is ignored (2)
3020 - SCRIPTS: git-show-backports: fix a harmless typo
3021 - SCRIPTS: git-show-backports: add -H to use the hash of the commit message
3022 - BUG/MINOR: stream-int: automatically release SI_FL_WAIT_DATA on SHUTW_NOW
3023 - CLEANUP: applet/lua: create a dedicated ->fcn entry in hlua_cli context
3024 - CLEANUP: applet/table: add an "action" entry in ->table context
3025 - CLEANUP: applet: remove the now unused appctx->private field
3026 - DOC: lua: documentation about time parser functions
3027 - DOC: lua: improve links
3028 - DOC: lua: section declared twice
3029 - MEDIUM: cli: 'show cli sockets' list the CLI sockets
3030 - BUG/MINOR: cli: "show cli sockets" wouldn't list all processes
3031 - BUG/MINOR: cli: "show cli sockets" would always report process 64
3032 - CLEANUP: lua: rename one of the lua appctx union
3033 - BUG/MINOR: lua/cli: bad error message
3034 - MEDIUM: lua: use memory pool for hlua struct in applets
3035 - MINOR: lua/signals: Remove Lua part from signals.
3036 - DOC: cli: show cli sockets
3037 - MINOR: cli: automatically enable a CLI I/O handler when there's no parser
3038 - CLEANUP: memory: remove the now unused cli_parse_show_pools() function
3039 - CLEANUP: applet: group all CLI contexts together
3040 - CLEANUP: stats: move a misplaced stats context initialization
3041 - MINOR: cli: add two general purpose pointers and integers in the CLI struct
3042 - MINOR: appctx/cli: remove the cli_socket entry from the appctx union
3043 - MINOR: appctx/cli: remove the env entry from the appctx union
3044 - MINOR: appctx/cli: remove the "be" entry from the appctx union
3045 - MINOR: appctx/cli: remove the "dns" entry from the appctx union
3046 - MINOR: appctx/cli: remove the "server_state" entry from the appctx union
3047 - MINOR: appctx/cli: remove the "tlskeys" entry from the appctx union
3048 - CONTRIB: tcploop: add limits.h to fix build issue with some compilers
3049 - MINOR/DOC: lua: just precise one thing
3050 - DOC: fix small typo in fe_id (backend instead of frontend)
3051 - BUG/MINOR: Fix the sending function in Lua's cosocket
3052 - BUG/MINOR: lua: memory leak executing tasks
3053 - BUG/MINOR: lua: bad return code
3054 - BUG/MINOR: lua: memleak when Lua/cli fails
3055 - MEDIUM: lua: remove Lua struct from session, and allocate it with memory pools
3056 - CLEANUP: haproxy: statify unexported functions
3057 - MINOR: haproxy: add a registration for build options
3058 - CLEANUP: wurfl: use the build options list to report it
3059 - CLEANUP: 51d: use the build options list to report it
3060 - CLEANUP: da: use the build options list to report it
3061 - CLEANUP: namespaces: use the build options list to report it
3062 - CLEANUP: tcp: use the build options list to report transparent modes
3063 - CLEANUP: lua: use the build options list to report it
3064 - CLEANUP: regex: use the build options list to report the regex type
3065 - CLEANUP: ssl: use the build options list to report the SSL details
3066 - CLEANUP: compression: use the build options list to report the algos
3067 - CLEANUP: auth: use the build options list to report its support
3068 - MINOR: haproxy: add a registration for post-check functions
3069 - CLEANUP: checks: make use of the post-init registration to start checks
3070 - CLEANUP: filters: use the function registration to initialize all proxies
3071 - CLEANUP: wurfl: make use of the late init registration
3072 - CLEANUP: 51d: make use of the late init registration
3073 - CLEANUP: da: make use of the late init registration code
3074 - MINOR: haproxy: add a registration for post-deinit functions
3075 - CLEANUP: wurfl: register the deinit function via the dedicated list
3076 - CLEANUP: 51d: register the deinitialization function
3077 - CLEANUP: da: register the deinitialization function
3078 - CLEANUP: wurfl: move global settings out of the global section
3079 - CLEANUP: 51d: move global settings out of the global section
3080 - CLEANUP: da: move global settings out of the global section
3081 - MINOR: cfgparse: add two new functions to check arguments count
3082 - MINOR: cfgparse: move parsing of "ca-base" and "crt-base" to ssl_sock
3083 - MEDIUM: cfgparse: move all tune.ssl.* keywords to ssl_sock
3084 - MEDIUM: cfgparse: move maxsslconn parsing to ssl_sock
3085 - MINOR: cfgparse: move parsing of ssl-default-{bind,server}-ciphers to ssl_sock
3086 - MEDIUM: cfgparse: move ssl-dh-param-file parsing to ssl_sock
3087 - MEDIUM: compression: move the zlib-specific stuff from global.h to compression.c
3088 - BUG/MEDIUM: ssl: properly reset the reused_sess during a forced handshake
3089 - BUG/MEDIUM: ssl: avoid double free when releasing bind_confs
3090 - BUG/MINOR: stats: fix be/sessions/current out in typed stats
3091 - MINOR: tcp-rules: check that the listener exists before updating its counters
3092 - MEDIUM: spoe: don't create a dummy listener for outgoing connections
3093 - MINOR: listener: move the transport layer pointer to the bind_conf
3094 - MEDIUM: move listener->frontend to bind_conf->frontend
3095 - MEDIUM: ssl: remote the proxy argument from most functions
3096 - MINOR: connection: add a new prepare_bind_conf() entry to xprt_ops
3097 - MEDIUM: ssl_sock: implement ssl_sock_prepare_bind_conf()
3098 - MINOR: connection: add a new destroy_bind_conf() entry to xprt_ops
3099 - MINOR: ssl_sock: implement ssl_sock_destroy_bind_conf()
3100 - MINOR: server: move the use_ssl field out of the ifdef USE_OPENSSL
3101 - MINOR: connection: add a minimal transport layer registration system
3102 - CLEANUP: connection: remove all direct references to raw_sock and ssl_sock
3103 - CLEANUP: connection: unexport raw_sock and ssl_sock
3104 - MINOR: connection: add new prepare_srv()/destroy_srv() entries to xprt_ops
3105 - MINOR: ssl_sock: implement and use prepare_srv()/destroy_srv()
3106 - CLEANUP: ssl: move tlskeys_finalize_config() to a post_check callback
3107 - CLEANUP: ssl: move most ssl-specific global settings to ssl_sock.c
3108 - BUG/MINOR: backend: nbsrv() should return 0 if backend is disabled
3109 - BUG/MEDIUM: ssl: for a handshake when server-side SNI changes
3110 - BUG/MINOR: systemd: potential zombie processes
3111 - DOC: Add timings events schemas
3112 - BUILD: lua: build failed on FreeBSD.
3113 - MINOR: samples: add xx-hash functions
3114 - MEDIUM: regex: pcre2 support
3115 - BUG/MINOR: option prefer-last-server must be ignored in some case
3116 - MINOR: stats: Support "select all" for backend actions
3117 - BUG/MINOR: sample-fetches/stick-tables: bad type for the sample fetches sc*_get_gpt0
3118 - BUG/MAJOR: channel: Fix the definition order of channel analyzers
3119 - BUG/MINOR: http: report real parser state in error captures
3120 - BUILD: scripts: automatically update the branch in version.h when releasing
3121 - MINOR: tools: add a generic hexdump function for debugging
3122 - BUG/MAJOR: http: fix risk of getting invalid reports of bad requests
3123 - MINOR: http: custom status reason.
3124 - MINOR: connection: add sample fetch "fc_rcvd_proxy"
3125 - BUG/MINOR: config: emit a warning if http-reuse is enabled with incompatible options
3126 - BUG/MINOR: tools: fix off-by-one in port size check
3127 - BUG/MEDIUM: server: consider AF_UNSPEC as a valid address family
3128 - MEDIUM: server: split the address and the port into two different fields
3129 - MINOR: tools: make str2sa_range() return the port in a separate argument
3130 - MINOR: server: take the destination port from the port field, not the addr
3131 - MEDIUM: server: disable protocol validations when the server doesn't resolve
3132 - BUG/MEDIUM: tools: do not force an unresolved address to AF_INET:0.0.0.0
3133 - BUG/MINOR: ssl: EVP_PKEY must be freed after X509_get_pubkey usage
3134 - BUG/MINOR: ssl: assert on SSL_set_shutdown with BoringSSL
3135 - MINOR: Use "500 Internal Server Error" for 500 error/status code message.
3136 - MINOR: proto_http.c 502 error txt typo.
3137 - DOC: add deprecation notice to "block"
3138 - MINOR: compression: fix -vv output without zlib/slz
3139 - BUG/MINOR: Reset errno variable before calling strtol(3)
3140 - MINOR: ssl: don't show prefer-server-ciphers output
3141 - OPTIM/MINOR: config: Optimize fullconn automatic computation loading configuration
3142 - BUG/MINOR: stream: Fix how backend-specific analyzers are set on a stream
3143 - MAJOR: ssl: bind configuration per certificat
3144 - MINOR: ssl: add curve suite for ECDHE negotiation
3145 - MINOR: checks: Add agent-addr config directive
3146 - MINOR: cli: Add possiblity to change agent config via CLI/socket
3147 - MINOR: doc: Add docs for agent-addr configuration variable
3148 - MINOR: doc: Add docs for agent-addr and agent-send CLI commands
3149 - BUILD: ssl: fix to build (again) with boringssl
3150 - BUILD: ssl: fix build on OpenSSL 1.0.0
3151 - BUILD: ssl: silence a warning reported for ERR_remove_state()
3152 - BUILD: ssl: eliminate warning with OpenSSL 1.1.0 regarding RAND_pseudo_bytes()
3153 - BUILD: ssl: kill a build warning introduced by BoringSSL compatibility
3154 - BUG/MEDIUM: tcp: don't poll for write when connect() succeeds
3155 - BUG/MINOR: unix: fix connect's polling in case no data are scheduled
3156 - MINOR: server: extend the flags to 32 bits
3157 - BUG/MINOR: lua: Map.end are not reliable because "end" is a reserved keyword
3158 - MINOR: dns: give ability to dns_init_resolvers() to close a socket when requested
3159 - BUG/MAJOR: dns: restart sockets after fork()
3160 - MINOR: chunks: implement a simple dynamic allocator for trash buffers
3161 - BUG/MEDIUM: http: prevent redirect from overwriting a buffer
3162 - BUG/MEDIUM: filters: Do not truncate HTTP response when body length is undefined
3163 - BUG/MEDIUM: http: Prevent replace-header from overwriting a buffer
3164 - BUG/MINOR: http: Return an error when a replace-header rule failed on the response
3165 - BUG/MINOR: sendmail: The return of vsnprintf is not cleanly tested
3166 - BUG/MAJOR: ssl: fix a regression in ssl_sock_shutw()
3167 - BUG/MAJOR: lua segmentation fault when the request is like 'GET ?arg=val HTTP/1.1'
3168 - BUG/MEDIUM: config: reject anything but "if" or "unless" after a use-backend rule
3169 - MINOR: http: don't close when redirect location doesn't start with "/"
3170 - MEDIUM: boringssl: support native multi-cert selection without bundling
3171 - BUG/MEDIUM: ssl: fix verify/ca-file per certificate
3172 - BUG/MEDIUM: ssl: switchctx should not return SSL_TLSEXT_ERR_ALERT_WARNING
3173 - MINOR: ssl: removes SSL_CTX_set_ssl_version call and cleanup CTX creation.
3174 - BUILD: ssl: fix build with -DOPENSSL_NO_DH
3175 - MEDIUM: ssl: add new sample-fetch which captures the cipherlist
3176 - MEDIUM: ssl: remove ssl-options from crt-list
3177 - BUG/MEDIUM: ssl: in bind line, ssl-options after 'crt' are ignored.
3178 - BUG/MINOR: ssl: fix cipherlist captures with sustainable SSL calls
3179 - MINOR: ssl: improved cipherlist captures
3180 - BUG/MINOR: spoe: Fix soft stop handler using a specific id for spoe filters
3181 - BUG/MINOR: spoe: Fix parsing of arguments in spoe-message section
3182 - MAJOR: spoe: Add support of pipelined and asynchronous exchanges with agents
3183 - MINOR: spoe: Add support for pipelining/async capabilities in the SPOA example
3184 - MINOR: spoe: Remove SPOE details from the appctx structure
3185 - MINOR: spoe: Add status code in error variable instead of hardcoded value
3186 - MINOR: spoe: Send a log message when an error occurred during event processing
3187 - MINOR: spoe: Check the scope of sample fetches used in SPOE messages
3188 - MEDIUM: spoe: Be sure to wakeup the good entity waiting for a buffer
3189 - MINOR: spoe: Use the min of all known max_frame_size to encode messages
3190 - MAJOR: spoe: Add support of payload fragmentation in NOTIFY frames
3191 - MINOR: spoe: Add support for fragmentation capability in the SPOA example
3192 - MAJOR: spoe: refactor the filter to clean up the code
3193 - MINOR: spoe: Handle NOTIFY frames cancellation using ABORT bit in ACK frames
3194 - REORG: spoe: Move struct and enum definitions in dedicated header file
3195 - REORG: spoe: Move low-level encoding/decoding functions in dedicated header file
3196 - MINOR: spoe: Improve implementation of the payload fragmentation
3197 - MINOR: spoe: Add support of negation for options in SPOE configuration file
3198 - MINOR: spoe: Add "pipelining" and "async" options in spoe-agent section
3199 - MINOR: spoe: Rely on alertif_too_many_arg during configuration parsing
3200 - MINOR: spoe: Add "send-frag-payload" option in spoe-agent section
3201 - MINOR: spoe: Add "max-frame-size" statement in spoe-agent section
3202 - DOC: spoe: Update SPOE documentation to reflect recent changes
3203 - MINOR: config: warn when some HTTP rules are used in a TCP proxy
3204 - BUG/MEDIUM: ssl: Clear OpenSSL error stack after trying to parse OCSP file
3205 - BUG/MEDIUM: cli: Prevent double free in CLI ACL lookup
3206 - BUG/MINOR: Fix "get map <map> <value>" CLI command
3207 - MINOR: Add nbsrv sample converter
3208 - CLEANUP: Replace repeated code to count usable servers with be_usable_srv()
3209 - MINOR: Add hostname sample fetch
3210 - CLEANUP: Remove comment that's no longer valid
3211 - MEDIUM: http_error_message: txn->status / http_get_status_idx.
3212 - MINOR: http-request tarpit deny_status.
3213 - CLEANUP: http: make http_server_error() not set the status anymore
3214 - MEDIUM: stats: Add JSON output option to show (info|stat)
3215 - MEDIUM: stats: Add show json schema
3216 - BUG/MAJOR: connection: update CO_FL_CONNECTED before calling the data layer
3217 - MINOR: server: Add dynamic session cookies.
3218 - MINOR: cli: Let configure the dynamic cookies from the cli.
3219 - BUG/MINOR: checks: attempt clean shutw for SSL check
3220 - CONTRIB: tcploop: make it build on FreeBSD
3221 - CONTRIB: tcploop: fix time format to silence build warnings
3222 - CONTRIB: tcploop: report action 'K' (kill) in usage message
3223 - CONTRIB: tcploop: fix connect's address length
3224 - CONTRIB: tcploop: use the trash instead of NULL for recv()
3225 - BUG/MEDIUM: listener: do not try to rebind another process' socket
3226 - BUG/MEDIUM server: Fix crash when dynamic is defined, but not key is provided.
3227 - CLEANUP: config: Typo in comment.
3228 - BUG/MEDIUM: filters: Fix channels synchronization in flt_end_analyze
3229 - TESTS: add a test configuration to stress handshake combinations
3230 - BUG/MAJOR: stream-int: do not depend on connection flags to detect connection
3231 - BUG/MEDIUM: connection: ensure to always report the end of handshakes
3232 - MEDIUM: connection: don't test for CO_FL_WAKE_DATA
3233 - CLEANUP: connection: completely remove CO_FL_WAKE_DATA
3234 - BUG: payload: fix payload not retrieving arbitrary lengths
3235 - BUILD: ssl: simplify SSL_CTX_set_ecdh_auto compatibility
3236 - BUILD: ssl: fix OPENSSL_NO_SSL_TRACE for boringssl and libressl
3237 - BUG/MAJOR: http: fix typo in http_apply_redirect_rule
3238 - MINOR: doc: 2.4. Examples should be 2.5. Examples
3239 - BUG/MEDIUM: stream: fix client-fin/server-fin handling
3240 - MINOR: fd: add a new flag HAP_POLL_F_RDHUP to struct poller
3241 - BUG/MINOR: raw_sock: always perfom the last recv if RDHUP is not available
3242 - OPTIM: poll: enable support for POLLRDHUP
3243 - MINOR: kqueue: exclusively rely on the kqueue returned status
3244 - MEDIUM: kqueue: take care of EV_EOF to improve polling status accuracy
3245 - MEDIUM: kqueue: only set FD_POLL_IN when there are pending data
3246 - DOC/MINOR: Fix typos in proxy protocol doc
3247 - DOC: Protocol doc: add checksum, TLV type ranges
3248 - DOC: Protocol doc: add SSL TLVs, rename CHECKSUM
3249 - DOC: Protocol doc: add noop TLV
3250 - MEDIUM: global: add a 'hard-stop-after' option to cap the soft-stop time
3251 - MINOR: dns: improve DNS response parsing to use as many available records as possible
3252 - BUG/MINOR: cfgparse: loop in tracked servers lists not detected by check_config_validity().
3253 - MINOR: server: irrelevant error message with 'default-server' config file keyword.
3254 - MINOR: server: Make 'default-server' support 'backup' keyword.
3255 - MINOR: server: Make 'default-server' support 'check-send-proxy' keyword.
3256 - CLEANUP: server: code alignement.
3257 - MINOR: server: Make 'default-server' support 'non-stick' keyword.
3258 - MINOR: server: Make 'default-server' support 'send-proxy' and 'send-proxy-v2 keywords.
3259 - MINOR: server: Make 'default-server' support 'check-ssl' keyword.
3260 - MINOR: server: Make 'default-server' support 'force-sslv3' and 'force-tlsv1[0-2]' keywords.
3261 - CLEANUP: server: code alignement.
3262 - MINOR: server: Make 'default-server' support 'no-ssl*' and 'no-tlsv*' keywords.
3263 - MINOR: server: Make 'default-server' support 'ssl' keyword.
3264 - MINOR: server: Make 'default-server' support 'send-proxy-v2-ssl*' keywords.
3265 - CLEANUP: server: code alignement.
3266 - MINOR: server: Make 'default-server' support 'verify' keyword.
3267 - MINOR: server: Make 'default-server' support 'verifyhost' setting.
3268 - MINOR: server: Make 'default-server' support 'check' keyword.
3269 - MINOR: server: Make 'default-server' support 'track' setting.
3270 - MINOR: server: Make 'default-server' support 'ca-file', 'crl-file' and 'crt' settings.
3271 - MINOR: server: Make 'default-server' support 'redir' keyword.
3272 - MINOR: server: Make 'default-server' support 'observe' keyword.
3273 - MINOR: server: Make 'default-server' support 'cookie' keyword.
3274 - MINOR: server: Make 'default-server' support 'ciphers' keyword.
3275 - MINOR: server: Make 'default-server' support 'tcp-ut' keyword.
3276 - MINOR: server: Make 'default-server' support 'namespace' keyword.
3277 - MINOR: server: Make 'default-server' support 'source' keyword.
3278 - MINOR: server: Make 'default-server' support 'sni' keyword.
3279 - MINOR: server: Make 'default-server' support 'addr' keyword.
3280 - MINOR: server: Make 'default-server' support 'disabled' keyword.
3281 - MINOR: server: Add 'no-agent-check' server keyword.
3282 - DOC: server: Add docs for "server" and "default-server" new "no-*" and other settings.
3283 - MINOR: doc: fix use-server example (imap vs mail)
3284 - BUG/MEDIUM: tcp: don't require privileges to bind to device
3285 - BUILD: make the release script use shortlog for the final changelog
3286 - BUILD: scripts: fix typo in announce-release error message
3287 - CLEANUP: time: curr_sec_ms doesn't need to be exported
3288 - BUG/MEDIUM: server: Wrong server default CRT filenames initialization.
3289 - BUG/MEDIUM: peers: fix buffer overflow control in intdecode.
3290 - BUG/MEDIUM: buffers: Fix how input/output data are injected into buffers
3291 - BUG/MINOR: http: Fix conditions to clean up a txn and to handle the next request
3292 - CLEANUP: http: Remove channel_congested function
3293 - CLEANUP: buffers: Remove buffer_bounce_realign function
3294 - CLEANUP: buffers: Remove buffer_contig_area and buffer_work_area functions
3295 - MINOR: http: remove useless check on HTTP_MSGF_XFER_LEN for the request
3296 - MINOR: http: Add debug messages when HTTP body analyzers are called
3297 - BUG/MEDIUM: http: Fix blocked HTTP/1.0 responses when compression is enabled
3298 - BUG/MINOR: filters: Don't force the stream's wakeup when we wait in flt_end_analyze
3299 - DOC: fix parenthesis and add missing "Example" tags
3300 - DOC: update the contributing file
3301 - DOC: log-format/tcplog/httplog update
3302 - MINOR: config parsing: add warning when log-format/tcplog/httplog is overriden in "defaults" sections
3303
Willy Tarreau0e658fb2016-11-25 16:55:50 +010033042016/11/25 : 1.8-dev0
3305
Willy Tarreaue59fcdd2016-11-25 16:39:17 +010033062016/11/25 : 1.7.0
3307 - SCRIPTS: make publish-release also copy the new SPOE doc
3308 - BUILD: http: include types/sample.h in proto_http.h
3309 - BUILD: debug/flags: remove test for SF_COMP_READY
3310 - CONTRIB: debug/flags: add check for SF_ERR_CHK_PORT
3311 - MINOR: lua: add function which return true if the channel is full.
3312 - MINOR: lua: add ip addresses and network manipulation function
3313 - CONTRIB: tcploop: scriptable TCP I/O for debugging purposes
3314 - CONTRIB: tcploop: implement fork()
3315 - CONTRIB: tcploop: implement logging when called with -v
3316 - CONTRIB: tcploop: update the usage output
3317 - CONTRIB: tcploop: support sending plain strings
3318 - CONTRIB: tcploop: don't report failed send() or recv()
3319 - CONTRIB: tcploop: add basic loops via a jump instruction
3320 - BUG/MEDIUM: channel: bad unlikely macro
3321 - CLEANUP: lua: move comment
3322 - CLEANUP: lua: control executed twice
3323 - BUG/MEDIUM: ssl: Store certificate filename in a variable
3324 - BUG/MINOR: ssl: Print correct filename when error occurs reading OCSP
3325 - CLEANUP: ssl: Remove goto after return dead code
3326 - CLEANUP: ssl: Fix bind keywords name in comments
3327 - DOC: ssl: Use correct wording for ca-sign-pass
3328 - CLEANUP: lua: avoid directly calling getsockname/getpeername()
3329 - BUG/MINOR: stick-table: handle out-of-memory condition gracefully
3330 - MINOR: cli: add private pointer and release function
3331 - MEDIUM: lua: Add cli handler for Lua
3332 - BUG/MEDIUM: connection: check the control layer before stopping polling
3333 - DEBUG: connection: mark the closed FDs with a value that is easier to detect
3334 - BUG/MEDIUM: stick-table: fix regression caused by recent fix for out-of-memory
3335 - BUG/MINOR: cli: properly decrement ref count on tables during failed dumps
3336 - BUG/MEDIUM: lua: In some case, the return of sample-fetche is ignored
3337 - MINOR: filters: Add check_timeouts callback to handle timers expiration on streams
3338 - MINOR: spoe: Add 'timeout processing' option to limit time to process an event
3339 - MINOR: spoe: Remove useless 'timeout ack' option
3340 - MINOR: spoe: Add 'option continue-on-error' statement in spoe-agent section
3341 - MINOR: spoe: Add "maxconnrate" and "maxerrrate" statements
3342 - MINOR: spoe: Add "option set-on-error" statement
3343 - MINOR: stats: correct documentation of process ID for typed output
3344 - BUILD: contrib: fix ip6range build on Centos 7
3345 - BUILD: fix build on Solaris 10/11
3346 - BUG/MINOR: cli: fix pointer size when reporting data/transport layer name
3347 - BUG/MINOR: cli: dequeue from the proxy when changing a maxconn
3348 - BUG/MINOR: cli: wake up the CLI's task after a timeout update
3349 - MINOR: connection: add a few functions to report the data and xprt layers' names
3350 - MINOR: connection: add names for transport and data layers
3351 - REORG: cli: split dumpstats.c in src/cli.c and src/stats.c
3352 - REORG: cli: split dumpstats.h in stats.h and cli.h
3353 - REORG: cli: move ssl CLI functions to ssl_sock.c
3354 - REORG: cli: move map and acl code to map.c
3355 - REORG: cli: move show stat resolvers to dns.c
3356 - MINOR: cli: create new function cli_has_level() to validate permissions
3357 - MINOR: server: create new function cli_find_server() to find a server
3358 - MINOR: proxy: create new function cli_find_frontend() to find a frontend
3359 - REORG: cli: move 'set server' to server.c
3360 - REORG: cli: move 'show pools' to memory.c
3361 - REORG: cli: move 'show servers' to proxy.c
3362 - REORG: cli: move 'show sess' to stream.c
3363 - REORG: cli: move 'show backend' to proxy.c
3364 - REORG: cli: move get/set weight to server.c
3365 - REORG: cli: move "show stat" to stats.c
3366 - REORG: cli: move "show info" to stats.c
3367 - REORG: cli: move dump_text(), dump_text_line(), and dump_binary() to standard.c
3368 - REORG: cli: move table dump/clear/set to stick_table.c
3369 - REORG: cli: move "show errors" out of cli.c
3370 - REORG: cli: make "show env" also use the generic keyword registration
3371 - REORG: cli: move "set timeout" to its own handler
3372 - REORG: cli: move "clear counters" to stats.c
3373 - REORG: cli: move "set maxconn global" to its own handler
3374 - REORG: cli: move "set maxconn server" to server.c
3375 - REORG: cli: move "set maxconn frontend" to proxy.c
3376 - REORG: cli: move "shutdown sessions server" to stream.c
3377 - REORG: cli: move "shutdown session" to stream.c
3378 - REORG: cli: move "shutdown frontend" to proxy.c
3379 - REORG: cli: move "{enable|disable} frontend" to proxy.c
3380 - REORG: cli: move "{enable|disable} server" to server.c
3381 - REORG: cli: move "{enable|disable} health" to server.c
3382 - REORG: cli: move "{enable|disable} agent" to server.c
3383 - REORG: cli: move the "set rate-limit" functions to their own parser
3384 - CLEANUP: cli: rename STAT_CLI_* to CLI_ST_*
3385 - CLEANUP: cli: simplify the request parser a little bit
3386 - CLEANUP: cli: remove assignments to st0 and st2 in keyword parsers
3387 - BUILD: server: remove a build warning introduced by latest series
3388 - BUG/MINOR: log-format: uncatched memory allocation functions
3389 - CLEANUP: log-format: useless file and line in json converter
3390 - CLEANUP/MINOR: log-format: unexport functions parse_logformat_var_args() and parse_logformat_var()
3391 - CLEANUP: log-format: fix return code of the function parse_logformat_var()
3392 - CLEANUP: log-format: fix return code of function parse_logformat_var_args()
3393 - CLEANUP: log-format: remove unused arguments
3394 - MEDIUM: log-format: strict parsing and enable fail
3395 - MEDIUM: log-format/conf: take into account the parse_logformat_string() return code
3396 - BUILD: ssl: make the SSL layer build again with openssl 0.9.8
3397 - BUILD: vars: remove a build warning on vars.c
3398 - MINOR: lua: add utility function for check boolean argument
3399 - MINOR: lua: Add tokenize function.
3400 - BUG/MINOR: conf: calloc untested
3401 - MINOR: http/conf: store the use_backend configuration file and line for logs
3402 - MEDIUM: log-format: Use standard HAProxy log system to report errors
3403 - CLEANUP: sample: report "converter" instead of "conv method" in error messages
3404 - BUG: spoe: Fix parsing of SPOE actions in ACK frames
3405 - MINOR: cli: make "show stat" support a proxy name
3406 - MINOR: cli: make "show errors" support a proxy name
3407 - MINOR: cli: make "show errors" capable of dumping only request or response
3408 - BUG/MINOR: freq-ctr: make swrate_add() support larger values
3409 - CLEANUP: counters: move from 3 types to 2 types
3410 - CLEANUP: cfgparse: cascade the warnif_misplaced_* rules
3411 - REORG: tcp-rules: move tcp rules processing to their own file
3412 - REORG: stkctr: move all the stick counters processing to stick-tables.c
3413 - DOC: update the roadmap file with the latest changes
3414
Willy Tarreaud5d890b2016-11-09 23:18:17 +010034152016/11/09 : 1.7-dev6
3416 - DOC: fix the entry for hash-balance-factor config option
3417 - DOC: Fix typo in description of `-st` parameter in man page
3418 - CLEANUP: cfgparse: Very minor spelling correction
3419 - MINOR: examples: Update haproxy.spec URLs to haproxy.org
3420 - BUG/MEDIUM: peers: on shutdown, wake up the appctx, not the stream
3421 - BUG/MEDIUM: peers: fix use after free in peer_session_create()
3422 - MINOR: peers: make peer_session_forceshutdown() use the appctx and not the stream
3423 - MINOR: peers: remove the pointer to the stream
3424 - BUG/MEDIUM: systemd-wrapper: return correct exit codes
3425 - DOC: stats: provide state details for show servers state
3426 - MEDIUM: tools: make str2ip2() preserve existing ports
3427 - CLEANUP: tools: make ipcpy() preserve the original port
3428 - OPTIM: http: move all http character classs tables into a single one
3429 - OPTIM: http: improve parsing performance of long header lines
3430 - OPTIM: http: improve parsing performance of long URIs
3431 - OPTIM: http: optimize lookup of comma and quote in header values
3432 - BUG/MEDIUM: srv-state: properly restore the DRAIN state
3433 - BUG/MINOR: srv-state: allow to have both CMAINT and FDRAIN flags
3434 - MINOR: server: do not emit warnings/logs/alerts on server state changes at boot
3435 - BUG/MEDIUM: servers: properly propagate the maintenance states during startup
3436 - MEDIUM: wurfl: add Scientiamobile WURFL device detection module
3437 - DOC: move the device detection modules documentation to their own files
3438 - CLEANUP: wurfl: reduce exposure in the rest of the code
3439 - MEDIUM: ssl: Add support for OpenSSL 1.1.0
3440 - MINOR: stream: make option contstats usable again
3441 - MEDIUM: tools: make str2sa_range() return the FQDN even when not resolving
3442 - MINOR: init: move apply_server_state in haproxy.c before MODE_CHECK
3443 - MAJOR: server: postpone address resolution
3444 - MINOR: new srv_admin flag: SRV_ADMF_RMAINT
3445 - MINOR: server: indicate in the logs when RMAINT is cleared
3446 - MINOR: stats: indicate it when a server is down due to resolution
3447 - MINOR: server: make srv_set_admin_state() capable of telling why this happens
3448 - MINOR: dns: implement extra 'hold' timers.
3449 - MAJOR: dns: runtime resolution can change server admin state
3450 - MEDIUM: cli: leave the RMAINT state when setting an IP address on the CLI
3451 - MEDIUM: server: add a new init-addr server line setting
3452 - MEDIUM: server: make use of init-addr
3453 - MINOR: server: implement init-addr none
3454 - MEDIUM: server: make libc resolution failure non-fatal
3455 - MINOR: server: add support for explicit numeric address in init-addr
3456 - DOC: add some documentation for the "init-addr" server keyword
3457 - MINOR: init: add -dr to ignore server address resolution failures
3458 - MEDIUM: server: do not restrict anymore usage of IP address from the state file
3459 - BUG: vars: Fix 'set-var' converter because of a typo
3460 - CLEANUP: remove last references to 'ruleset' section
3461 - MEDIUM: filters: Add attch/detach and stream_set_backend callbacks
3462 - MINOR: filters: Update filters documentation accordingly to recent changes
3463 - MINOR: filters: Call stream_set_backend callbacks before updating backend stats
3464 - MINOR: filters: Remove backend filters attached to a stream only for HTTP streams
3465 - MINOR: flt_trace: Add hexdump option to dump forwarded data
3466 - MINOR: cfgparse: Add functions to backup and restore registered sections
3467 - MINOR: cfgparse: Parse scope lines and save the last one parsed
3468 - REORG: sample: move code to release a sample expression in sample.c
3469 - MINOR: vars: Allow '.' in variable names
3470 - MINOR: vars: Add vars_set_by_name_ifexist function
3471 - MEDIUM: vars: Add a per-process scope for variables
3472 - MINOR: vars: Add 'unset-var' action/converter
3473 - MAJOR: spoe: Add an experimental Stream Processing Offload Engine
3474 - MINOR: spoe: add random ip-reputation service as SPOA example
3475 - MINOR: spoe/checks: Add support for SPOP health checks
3476 - DOC: update ROADMAP file
3477
Willy Tarreau608efa12016-10-25 22:22:00 +020034782016/10/25 : 1.7-dev5
3479 - MINOR: cfgparse: few memory leaks fixes.
3480 - MEDIUM: log: Decompose %Tq in %Th %Ti %TR
3481 - CLEANUP: logs: remove unused log format field definitions
3482 - BUILD/MAJOR:updated 51d Trie implementation to incorperate latest update to 51Degrees.c
3483 - BUG/MAJOR: stream: properly mark the server address as unset on connect retry
3484 - CLEANUP: proto_http: Removing useless variable assignation
3485 - CLEANUP: dumpstats: Removing useless variables allocation
3486 - CLEANUP: dns: Removing usless variable & assignation
3487 - BUG/MINOR: payload: fix SSLv2 version parser
3488 - MINOR: cli: allow the semi-colon to be escaped on the CLI
3489 - MINOR: cli: change a server health check port through the stats socket
3490 - BUG/MINOR: Fix OSX compilation errors
3491 - MAJOR: check: find out which port to use for health check at run time
3492 - MINOR: server: introduction of 3 new server flags
3493 - MINOR: new update_server_addr_port() function to change both server's ADDR and service PORT
3494 - MINOR: cli: ability to change a server's port
3495 - CLEANUP/MINOR dns: comment do not follow up code update
3496 - MINOR: chunk: new strncat function
3497 - MINOR: dns: wrong DNS_MAX_UDP_MESSAGE value
3498 - MINOR: dns: new MAX values
3499 - MINOR: dns: new macro to compute DNS header size
3500 - MINOR: dns: new DNS structures to store received packets
3501 - MEDIUM: dns: new DNS response parser
3502 - MINOR: dns: query type change when last record is a CNAME
3503 - MINOR: dns: proper domain name validation when receiving DNS response
3504 - MINOR: dns: comments in types/dns.h about structures endianness
3505 - BUG/MINOR: displayed PCRE version is running release
3506 - MINOR: show Built with PCRE version
3507 - MINOR: show Running on zlib version
3508 - MEDIUM: make SO_REUSEPORT configurable
3509 - MINOR: enable IP_BIND_ADDRESS_NO_PORT on backend connections
3510 - BUG/MEDIUM: http/compression: Fix how chunked data are copied during the HTTP body parsing
3511 - BUG/MINOR: stats: report the correct conn_time in backend's html output
3512 - BUG/MEDIUM: dns: don't randomly crash on out-of-memory
3513 - MINOR: Add fe_req_rate sample fetch
3514 - MEDIUM: peers: Fix a peer stick-tables synchronization issue.
3515 - MEDIUM: cli: register CLI keywords with cli_register_kw()
3516 - BUILD: Make use of accept4() on OpenBSD.
3517 - MINOR: tcp: make set-src/set-src-port and set-dst/set-dst-port commutative
3518 - DOC: fix missed entry for "set-{src,dst}{,-port}"
3519 - BUG/MINOR: vars: use sess and not s->sess in action_store()
3520 - BUG/MINOR: vars: make smp_fetch_var() more robust against misuses
3521 - BUG/MINOR: vars: smp_fetch_var() doesn't depend on HTTP but on the session
3522 - MINOR: stats: output dcon
3523 - CLEANUP: tcp rules: mention everywhere that tcp-conn rules are L4
3524 - MINOR: counters: add new fields for denied_sess
3525 - MEDIUM: tcp: add registration and processing of TCP L5 rules
3526 - MINOR: stats: emit dses
3527 - DOC: document tcp-request session
3528 - MINOR: ssl: add debug traces
3529 - BUILD/CLEANUP: ssl: Check BIO_reset() return code
3530 - BUG/MINOR: ssl: Check malloc return code
3531 - BUG/MINOR: ssl: prevent multiple entries for the same certificate
3532 - BUG/MINOR: systemd: make the wrapper return a non-null status code on error
3533 - BUG/MINOR: systemd: always restore signals before execve()
3534 - BUG/MINOR: systemd: check return value of calloc()
3535 - MINOR: systemd: report it when execve() fails
3536 - BUG/MEDIUM: systemd: let the wrapper know that haproxy has completed or failed
3537 - MINOR: proxy: add 'served' field to proxy, equal to total of all servers'
3538 - MINOR: backend: add hash-balance-factor option for hash-type consistent
3539 - MINOR: server: compute a "cumulative weight" to allow chash balancing to hit its target
3540 - MEDIUM: server: Implement bounded-load hash algorithm
3541 - SCRIPTS: make git-show-backports also dump a "git show" command
3542 - MINOR: build: Allow linking to device-atlas library file
3543 - MINOR: stats: Escape equals sign on socket dump
3544
Willy Tarreau41d5e3a2016-08-14 12:25:21 +020035452016/08/14 : 1.7-dev4
3546 - MINOR: add list_append_word function
3547 - MEDIUM: init: use list_append_word in haproxy.c
3548 - MEDIUM: init: allow directory as argument of -f
3549 - CLEANUP: config: detect double registration of a config section
3550 - MINOR: log: add the %Td log-format specifier
3551 - MEDIUM: filters: Move HTTP headers filtering in its own callback
3552 - MINOR: filters: Simplify calls to analyzers using 2 new macros
3553 - MEDIUM: filters: Add pre and post analyzer callbacks
3554 - DOC: filters: Update the filters documentation accordingly to recent changes
3555 - BUG/MEDIUM: init: don't use environment locale
3556 - SCRIPTS: teach git-show-backports how to report upstream commits
3557 - SCRIPTS: make git-show-backports capable of limiting its history
3558 - BUG/MAJOR: fix listening IP address storage for frontends
3559 - BUG/MINOR: fix listening IP address storage for frontends (cont)
3560 - DOC: Fix typo so fetch is properly parsed by Cyril's converter
3561 - BUG/MAJOR: http: fix breakage of "reqdeny" causing random crashes
3562 - BUG/MEDIUM: stick-tables: fix breakage in table converters
3563 - MINOR: stick-table: change all stick-table converters' inputs to SMP_T_ANY
3564 - BUG/MEDIUM: dns: unbreak DNS resolver after header fix
3565 - BUILD: fix build on Solaris 11
3566 - BUG/MEDIUM: config: fix multiple declaration of section parsers
3567 - BUG/MEDIUM: stats: show servers state may show an servers from another backend
3568 - BUG/MEDIUM: fix risk of segfault with "show tls-keys"
3569 - MEDIUM: dumpstats: 'show tls-keys' is now able to show secrets
3570 - DOC: update doc about tls-tickets-keys dump
3571 - MEDIUM: tcp: add 'set-src' to 'tcp-request connection'
3572 - MINOR: set the CO_FL_ADDR_FROM_SET flags with 'set-src'
3573 - MEDIUM: tcp/http: add 'set-src-port' action
3574 - MEDIUM: tcp/http: new set-dst/set-dst-port actions
3575 - BUG/MEDIUM: sticktables: segfault in some configuration error cases
3576 - BUILD/MEDIUM: rebuild everything when an include file is changed
3577 - BUILD/MEDIUM: force a full rebuild if some build options change
3578 - BUG/MEDIUM: lua: converters doesn't work
3579 - BUG/MINOR: http: add-header: header name copied twice
3580 - BUG/MEDIUM: http: add-header: buffer overwritten
3581 - BUG/MINOR: ssl: fix potential memory leak in ssl_sock_load_dh_params()
3582 - MINOR: stream: export the function 'smp_create_src_stkctr'
3583 - BUG/MEDIUM: dumpstats: undefined behavior in stats_tlskeys_list()
3584 - MEDIUM: dumpstats: make stats_tlskeys_list() yield-aware during tls-keys dump
3585 - BUG/MINOR: http: url32+src should use the big endian version of url32
3586 - BUG/MINOR: http: url32+src should check cli_conn before using it
3587 - DOC: http: add documentation for url32 and url32+src
3588 - BUG/MINOR: fix http-response set-log-level parsing error
3589 - MINOR: systemd: Use variable for config and pidfile paths
3590 - MINOR: systemd: Perform sanity check on config before reload
3591 - MEDIUM: ssl: support SNI filters with multicerts
3592 - MINOR: ssl: crt-list parsing factor
3593 - BUILD: ssl: fix typo causing a build failure in the multicert patch
3594 - MINOR: listener: add the "accept-netscaler-cip" option to the "bind" keyword
3595 - MINOR: tcp: add "tcp-request connection expect-netscaler-cip layer4"
3596 - BUG/MINOR: init: always ensure that global.rlimit_nofile matches actual limits
3597 - BUG/MINOR: init: ensure that FD limit is raised to the max allowed
3598 - BUG/MEDIUM: external-checks: close all FDs right after the fork()
3599 - BUG/MAJOR: external-checks: use asynchronous signal delivery
3600 - BUG/MINOR: external-checks: do not unblock undesired signals
3601 - CLEANUP: external-check: don't block/unblock SIGCHLD when manipulating the list
3602 - BUG/MEDIUM: filters: Fix data filtering when data are modified
3603 - BUG/MINOR: filters: Fix HTTP parsing when a filter loops on data forwarding
3604 - BUG/MINOR: srv-state: fix incorrect output of state file
3605 - BUG/MINOR: ssl: close ssl key file on error
3606 - BUG/MINOR: http: fix misleading error message for response captures
3607 - BUG/BUILD: don't automatically run "make" on "make install"
3608 - DOC: add missing doc for http-request deny [deny_status <status>]
3609 - CLEANUP: dumpstats: u64 field is an unsigned type.
3610 - BUG/MEDIUM: http: unbreak uri/header/url_param hashing
3611 - BUG/MINOR: Rework slightly commit 9962f8fc to clean code and avoid mistakes
3612 - MINOR: new function my_realloc2 = realloc + free upon failure
3613 - CLEANUP: fixed some usages of realloc leading to memory leak
3614 - Revert "BUG/MINOR: ssl: fix potential memory leak in ssl_sock_load_dh_params()"
3615 - CLEANUP: connection: using internal struct to hold source and dest port.
3616 - DOC: spelling fixes
3617 - BUG/MINOR: ssl: fix potential memory leak in ssl_sock_load_dh_params()
3618 - BUG/MEDIUM: dns: fix alignment issues in the DNS response parser
3619 - BUG/MINOR: Fix endiness issue in DNS header creation code
3620 - BUG/MEDIUM: lua: the function txn_done() from sample fetches can crash
3621 - BUG/MEDIUM: lua: the function txn_done() from action wrapper can crash
3622 - MEDIUM: http: implement http-response track-sc* directive
3623 - BUG/MINOR: peers: Fix peers data decoding issue
3624 - BUG/MINOR: peers: don't count track-sc multiple times on errors
3625 - MINOR: standard: add function "escape_string"
3626 - BUG/MEDIUM: log: use function "escape_string" instead of "escape_chunk"
3627 - MINOR: tcp: Return TCP statistics like RTT and RTT variance
3628 - DOC: lua: remove old functions
3629 - BUG/MEDIUM: lua: somme HTTP manipulation functions are called without valid requests
3630 - DOC: fix json converter example and error message
3631 - BUG/MEDIUM: stream-int: completely detach connection on connect error
3632 - DOC: minor typo fixes to improve HTML parsing by haproxy-dconv
3633 - BUILD: make proto_tcp.c compatible with musl library
3634 - BUG/MAJOR: compression: initialize avail_in/next_in even during flush
3635 - BUG/MEDIUM: samples: make smp_dup() always duplicate the sample
3636 - MINOR: sample: implement smp_is_safe() and smp_make_safe()
3637 - MINOR: sample: provide smp_is_rw() and smp_make_rw()
3638 - BUG/MAJOR: server: the "sni" directive could randomly cause trouble
3639 - BUG/MEDIUM: stick-tables: do not fail on string keys with no allocated size
3640 - BUG/MEDIUM: stick-table: properly convert binary samples to keys
3641 - MINOR: sample: use smp_make_rw() in upper/lower converters
3642 - MINOR: tcp: add dst_is_local and src_is_local
3643 - BUG/MINOR: peers: some updates are pushed twice after a resync.
3644 - BUILD: protocol: fix some build errors on OpenBSD
3645 - BUILD: log: iovec requires to include sys/uio.h on OpenBSD
3646 - BUILD: tcp: do not include netinet/ip.h for IP_TTL
3647 - BUILD: connection: fix build breakage on openbsd due to missing in_systm.h
3648 - BUILD: checks: remove the last strcat and eliminate a warning on OpenBSD
3649 - BUILD: tcp: define SOL_TCP when only IPPROTO_TCP exists
3650 - BUILD: compression: remove a warning when no compression lib is used
3651 - BUILD: poll: remove unused hap_fd_isset() which causes a warning with clang
3652 - MINOR: tcp: add further tcp info fetchers
3653 - BUG/MINOR: peers: empty chunks after a resync.
3654 - BUG/MAJOR: stick-counters: possible crash when using sc_trackers with wrong table
3655 - MINOR: standard.c: ipcmp() function to compare 2 IP addresses stored in 2 struct sockaddr_storage
3656 - MINOR: standard.c: ipcpy() function to copy an IP address from a struct sockaddr_storage into an other one
3657 - MAJOR: listen section: don't use first bind port anymore when no server ports are provided
3658
Willy Tarreau7d1b48f2016-05-10 15:36:58 +020036592016/05/10 : 1.7-dev3
3660 - MINOR: sample: Moves ARGS underlying type from 32 to 64 bits.
3661 - BUG/MINOR: log: Don't use strftime() which can clobber timezone if chrooted
3662 - BUILD: namespaces: fix a potential build warning in namespaces.c
3663 - MINOR: da: Using ARG12 macro for the sample fetch and the convertor.
3664 - DOC: add encoding to json converter example
3665 - BUG/MINOR: conf: "listener id" expects integer, but its not checked
3666 - DOC: Clarify tunes.vars.xxx-max-size settings
3667 - CLEANUP: chunk: adding NULL check to chunk_dup allocation.
3668 - CLEANUP: connection: fix double negation on memcmp()
3669 - BUG/MEDIUM: peers: fix incorrect age in frequency counters
3670 - BUG/MEDIUM: Fix RFC5077 resumption when more than TLS_TICKETS_NO are present
3671 - BUG/MAJOR: Fix crash in http_get_fhdr with exactly MAX_HDR_HISTORY headers
3672 - BUG/MINOR: lua: can't load external libraries
3673 - BUG/MINOR: prevent the dump of uninitialized vars
3674 - CLEANUP: map: it seems that the map were planed to be chained
3675 - MINOR: lua: move class registration facilities
3676 - MINOR: lua: remove some useless checks
3677 - CLEANUP: lua: Remove two same functions
3678 - MINOR: lua: refactor the Lua object registration
3679 - MINOR: lua: precise message when a critical error is catched
3680 - MINOR: lua: post initialization
3681 - MINOR: lua: Add internal function which strip spaces
3682 - MINOR: lua: convert field to lua type
3683 - DOC: "addr" parameter applies to both health and agent checks
3684 - DOC: timeout client: pointers to timeout http-request
3685 - DOC: typo on stick-store response
3686 - DOC: stick-table: amend paragraph blaming the loss of table upon reload
3687 - DOC: typo: ACL subdir match
3688 - DOC: typo: maxconn paragraph is wrong due to a wrong buffer size
3689 - DOC: regsub: parser limitation about the inability to use closing square brackets
3690 - DOC: typo: req.uri is now replaced by capture.req.uri
3691 - DOC: name set-gpt0 mismatch with the expected keyword
3692 - MINOR: http: sample fetch which returns unique-id
3693 - MINOR: dumpstats: extract stats fields enum and names
3694 - MINOR: dumpstats: split stats_dump_info_to_buffer() in two parts
3695 - MINOR: dumpstats: split stats_dump_fe_stats() in two parts
3696 - MINOR: dumpstats: split stats_dump_li_stats() in two parts
3697 - MINOR: dumpstats: split stats_dump_sv_stats() in two parts
3698 - MINOR: dumpstats: split stats_dump_be_stats() in two parts
3699 - MINOR: lua: dump general info
3700 - MINOR: lua: add class proxy
3701 - MINOR: lua: add class server
3702 - MINOR: lua: add class listener
3703 - BUG/MEDIUM: stick-tables: some sample-fetch doesn't work in the connection state.
3704 - MEDIUM: proxy: use dynamic allocation for error dumps
3705 - CLEANUP: remove unneeded casts
3706 - CLEANUP: uniformize last argument of malloc/calloc
3707 - DOC: fix "needed" typo
3708 - BUG/MINOR: dumpstats: fix write to global chunk
3709 - BUG/MINOR: dns: inapropriate way out after a resolution timeout
3710 - BUG/MINOR: dns: trigger a DNS query type change on resolution timeout
3711 - CLEANUP: proto_http: few corrections for gcc warnings.
3712 - BUG/MINOR: DNS: resolution structure change
3713 - BUG/MINOR : allow to log cookie for tarpit and denied request
3714 - BUG/MEDIUM: ssl: rewind the BIO when reading certificates
3715 - OPTIM/MINOR: session: abort if possible before connecting to the backend
3716 - DOC: http: rename the unique-id sample and add the documentation
3717 - BUG/MEDIUM: trace.c: rdtsc() is defined in two files
3718 - BUG/MEDIUM: channel: fix miscalculation of available buffer space (2nd try)
3719 - BUG/MINOR: server: risk of over reading the pref_net array.
3720 - BUG/MINOR: cfgparse: couple of small memory leaks.
3721 - BUG/MEDIUM: sample: initialize the pointer before parse_binary call.
3722 - DOC: fix discrepancy in the example for http-request redirect
3723 - MINOR: acl: Add predefined METH_DELETE, METH_PUT
3724 - CLEANUP: .gitignore cleanup
3725 - DOC: Clarify IPv4 address / mask notation rules
3726 - CLEANUP: fix inconsistency between fd->iocb, proto->accept and accept()
3727 - BUG/MEDIUM: fix maxaccept computation on per-process listeners
3728 - BUG/MINOR: listener: stop unbound listeners on startup
3729 - BUG/MINOR: fix maxaccept computation according to the frontend process range
3730 - TESTS: add blocksig.c to run tests with all signals blocked
3731 - MEDIUM: unblock signals on startup.
3732 - MINOR: filters: Print the list of existing filters during HA startup
3733 - MINOR: filters: Typo in an error message
3734 - MINOR: filters: Filters must define the callbacks struct during config parsing
3735 - DOC: filters: Add filters documentation
3736 - BUG/MEDIUM: channel: don't allow to overwrite the reserve until connected
3737 - BUG/MEDIUM: channel: incorrect polling condition may delay event delivery
3738 - BUG/MEDIUM: channel: fix miscalculation of available buffer space (3rd try)
3739 - BUG/MEDIUM: log: fix risk of segfault when logging HTTP fields in TCP mode
3740 - MINOR: Add ability for agent-check to set server maxconn
3741 - CLEANUP: Use server_parse_maxconn_change_request for maxconn CLI updates
3742 - MINOR: filters: add opaque data
3743 - BUG/MEDIUM: lua: protects the upper boundary of the argument list for converters/fetches.
3744 - MINOR: lua: migrate the argument mask to 64 bits type.
3745 - BUG/MINOR: dumpstats: Fix the "Total bytes saved" counter in backends stats
3746 - BUG/MINOR: log: fix a typo that would cause %HP to log <BADREQ>
3747 - BUG/MEDIUM: http: fix incorrect reporting of server errors
3748 - MINOR: channel: add new function channel_congested()
3749 - BUG/MEDIUM: http: fix risk of CPU spikes with pipelined requests from dead client
3750 - BUG/MAJOR: channel: fix miscalculation of available buffer space (4th try)
3751 - BUG/MEDIUM: stream: ensure the SI_FL_DONT_WAKE flag is properly cleared
3752 - BUG/MEDIUM: channel: fix inconsistent handling of 4GB-1 transfers
3753 - BUG/MEDIUM: stats: show servers state may show an empty or incomplete result
3754 - BUG/MEDIUM: stats: show backend may show an empty or incomplete result
3755 - MINOR: stats: fix typo in help messages
3756 - MINOR: stats: show stat resolvers missing in the help message
3757 - BUG/MINOR: dns: fix DNS header definition
3758 - BUG/MEDIUM: dns: fix alignment issue when building DNS queries
3759 - CLEANUP: don't ignore scripts in .gitignore
3760 - BUILD: add a few release and backport scripts in scripts/
3761
Willy Tarreau8234f6d2016-03-14 00:10:05 +010037622016/03/14 : 1.7-dev2
3763 - DOC: lua: fix lua API
3764 - DOC: mailers: typo in 'hostname' description
3765 - DOC: compression: missing mention of libslz for compression algorithm
3766 - BUILD/MINOR: regex: missing header
3767 - BUG/MINOR: stream: bad return code
3768 - DOC: lua: fix somme errors and add implicit types
3769 - MINOR: lua: add set/get priv for applets
3770 - BUG/MINOR: http: fix several off-by-one errors in the url_param parser
3771 - BUG/MINOR: http: Be sure to process all the data received from a server
3772 - MINOR: filters/http: Use a wrapper function instead of stream_int_retnclose
3773 - BUG/MINOR: chunk: make chunk_dup() always check and set dst->size
3774 - DOC: ssl: fixed some formatting errors in crt tag
3775 - MINOR: chunks: ensure that chunk_strcpy() adds a trailing zero
3776 - MINOR: chunks: add chunk_strcat() and chunk_newstr()
3777 - MINOR: chunk: make chunk_initstr() take a const string
3778 - MEDIUM: tools: add csv_enc_append() to preserve the original chunk
3779 - MINOR: tools: make csv_enc_append() always start at the first byte of the chunk
3780 - MINOR: lru: new function to delete <nb> least recently used keys
3781 - DOC: add Ben Shillito as the maintainer of 51d
3782 - BUG/MINOR: 51d: Ensures a unique domain for each configuration
3783 - BUG/MINOR: 51d: Aligns Pattern cache implementation with HAProxy best practices.
3784 - BUG/MINOR: 51d: Releases workset back to pool.
3785 - BUG/MINOR: 51d: Aligned const pointers to changes in 51Degrees.
3786 - CLEANUP: 51d: Aligned if statements with HAProxy best practices and removed casts from malloc.
3787 - MINOR: rename master process name in -Ds (systemd mode)
3788 - DOC: fix a few spelling mistakes
3789 - DOC: fix "workaround" spelling
3790 - BUG/MINOR: examples: Fixing haproxy.spec to remove references to .cfg files
3791 - MINOR: fix the return type for dns_response_get_query_id() function
3792 - MINOR: server state: missing LF (\n) on error message printed when parsing server state file
3793 - BUG/MEDIUM: dns: no DNS resolution happens if no ports provided to the nameserver
3794 - BUG/MAJOR: servers state: server port is erased when dns resolution is enabled on a server
3795 - BUG/MEDIUM: servers state: server port is used uninitialized
3796 - BUG/MEDIUM: config: Adding validation to stick-table expire value.
3797 - BUG/MEDIUM: sample: http_date() doesn't provide the right day of the week
3798 - BUG/MEDIUM: channel: fix miscalculation of available buffer space.
3799 - MEDIUM: pools: add a new flag to avoid rounding pool size up
3800 - BUG/MEDIUM: buffers: do not round up buffer size during allocation
3801 - BUG/MINOR: stream: don't force retries if the server is DOWN
3802 - BUG/MINOR: counters: make the sc-inc-gpc0 and sc-set-gpt0 touch the table
3803 - MINOR: unix: don't mention free ports on EAGAIN
3804 - BUG/CLEANUP: CLI: report the proper field states in "show sess"
3805 - MINOR: stats: send content-length with the redirect to allow keep-alive
3806 - BUG: stream_interface: Reuse connection even if the output channel is empty
3807 - DOC: remove old tunnel mode assumptions
3808 - BUG/MAJOR: http-reuse: fix risk of orphaned connections
3809 - BUG/MEDIUM: http-reuse: do not share private connections across backends
3810 - BUG/MINOR: ssl: Be sure to use unique serial for regenerated certificates
3811 - BUG/MINOR: stats: fix missing comma in stats on agent drain
3812 - MAJOR: filters: Add filters support
3813 - MINOR: filters: Do not reset stream analyzers if the client is gone
3814 - REORG: filters: Prepare creation of the HTTP compression filter
3815 - MAJOR: filters/http: Rewrite the HTTP compression as a filter
3816 - MEDIUM: filters: Use macros to call filters callbacks to speed-up processing
3817 - MEDIUM: filters: remove http_start_chunk, http_last_chunk and http_chunk_end
3818 - MEDIUM: filters: Replace filter_http_headers callback by an analyzer
3819 - MEDIUM: filters/http: Move body parsing of HTTP messages in dedicated functions
3820 - MINOR: filters: Add stream_filters structure to hide filters info
3821 - MAJOR: filters: Require explicit registration to filter HTTP body and TCP data
3822 - MINOR: filters: Remove unused or useless stuff and do small optimizations
3823 - MEDIUM: filters: Optimize the HTTP compression for chunk encoded response
3824 - MINOR: filters/http: Slightly update the parsing of chunks
3825 - MINOR: filters/http: Forward remaining data when a channel has no "data" filters
3826 - MINOR: filters: Add an filter example
3827 - MINOR: filters: Extract proxy stuff from the struct filter
3828 - MINOR: map: Add regex matching replacement
3829 - BUG/MINOR: lua: unsafe initialization
3830 - DOC: lua: fix somme errors
3831 - MINOR: lua: file dedicated to unsafe functions
3832 - MINOR: lua: add "now" time function
3833 - MINOR: standard: add RFC HTTP date parser
3834 - MINOR: lua: Add date functions
3835 - MINOR: lua: move common function
3836 - MINOR: lua: merge function
3837 - MINOR: lua: Add concat class
3838 - MINOR: standard: add function "escape_chunk"
3839 - MEDIUM: log: add a new log format flag "E"
3840 - DOC: add server name at rate-limit sessions example
3841 - BUG/MEDIUM: ssl: fix off-by-one in ALPN list allocation
3842 - BUG/MEDIUM: ssl: fix off-by-one in NPN list allocation
3843 - DOC: LUA: fix some typos and syntax errors
3844 - MINOR: cli: add a new "show env" command
3845 - MEDIUM: config: allow to manipulate environment variables in the global section
3846 - MEDIUM: cfgparse: reject incorrect 'timeout retry' keyword spelling in resolvers
3847 - MINOR: mailers: increase default timeout to 10 seconds
3848 - MINOR: mailers: use <CRLF> for all line endings
3849 - BUG/MAJOR: lua: segfault using Concat object
3850 - DOC: lua: copyrights
3851 - MINOR: common: mask conversion
3852 - MEDIUM: dns: extract options
3853 - MEDIUM: dns: add a "resolve-net" option which allow to prefer an ip in a network
3854 - MINOR: mailers: make it possible to configure the connection timeout
3855 - BUG/MAJOR: lua: applets can't sleep.
3856 - BUG/MINOR: server: some prototypes are renamed
3857 - BUG/MINOR: lua: Useless copy
3858 - BUG/MEDIUM: stats: stats bind-process doesn't propagate the process mask correctly
3859 - BUG/MINOR: server: fix the format of the warning on address change
3860 - CLEANUP: server: add "const" to some message strings
3861 - MINOR: server: generalize the "updater" source
3862 - BUG/MEDIUM: chunks: always reject negative-length chunks
3863 - BUG/MINOR: systemd: ensure we don't miss signals
3864 - BUG/MINOR: systemd: report the correct signal in debug message output
3865 - BUG/MINOR: systemd: propagate the correct signal to haproxy
3866 - MINOR: systemd: ensure a reload doesn't mask a stop
3867 - BUG/MEDIUM: cfgparse: wrong argument offset after parsing server "sni" keyword
3868 - CLEANUP: stats: Avoid computation with uninitialized bits.
3869 - CLEANUP: pattern: Ignore unknown samples in pat_match_ip().
3870 - CLEANUP: map: Avoid memory leak in out-of-memory condition.
3871 - BUG/MINOR: tcpcheck: fix incorrect list usage resulting in failure to load certain configs
3872 - BUG/MAJOR: samples: check smp->strm before using it
3873 - MINOR: sample: add a new helper to initialize the owner of a sample
3874 - MINOR: sample: always set a new sample's owner before evaluating it
3875 - BUG/MAJOR: vars: always retrieve the stream and session from the sample
3876 - CLEANUP: payload: remove useless and confusing nullity checks for channel buffer
3877 - BUG/MINOR: ssl: fix usage of the various sample fetch functions
3878 - MINOR: stats: create fields types suitable for all CSV output data
3879 - MINOR: stats: add all the "show info" fields in a table
3880 - MEDIUM: stats: fill all the show info elements prior to displaying them
3881 - MINOR: stats: add a function to emit fields into a chunk
3882 - MINOR: stats: add stats_dump_info_fields() to dump one field per line
3883 - MEDIUM: stats: make use of stats_dump_info_fields() for "show info"
3884 - MINOR: stats: add a declaration of all stats fields
3885 - MINOR: stats: don't hard-code the CSV fields list anymore
3886 - MINOR: stats: create stats fields storage and CSV dump function
3887 - MEDIUM: stats: convert stats_dump_fe_stats() to use stats_dump_fields_csv()
3888 - MEDIUM: stats: make stats_dump_fe_stats() use stats fields for HTML dump
3889 - MEDIUM: stats: convert stats_dump_li_stats() to use stats_dump_fields_csv()
3890 - MEDIUM: stats: make stats_dump_li_stats() use stats fields for HTML dump
3891 - MEDIUM: stats: convert stats_dump_be_stats() to use stats_dump_fields_csv()
3892 - MEDIUM: stats: make stats_dump_be_stats() use stats fields for HTML dump
3893 - MEDIUM: stats: convert stats_dump_sv_stats() to use stats_dump_fields_csv()
3894 - MEDIUM: stats: make stats_dump_sv_stats() use the stats field for HTML
3895 - MEDIUM: stats: move the server state coloring logic to the server dump function
3896 - MINOR: stats: do not use srv->admin & STATS_ADMF_MAINT in HTML dumps
3897 - MINOR: stats: do not check srv->state for SRV_ST_STOPPED in HTML dumps
3898 - MINOR: stats: make CSV report server check status only when enabled
3899 - MINOR: stats: only report backend's down time if it has servers
3900 - MINOR: stats: prepend '*' in front of the check status when in progress
3901 - MINOR: stats: make HTML stats dump rely on the table for the check status
3902 - MINOR: stats: add agent_status, agent_code, agent_duration to output
3903 - MINOR: stats: add check_desc and agent_desc to the output fields
3904 - MINOR: stats: add check and agent's health values in the output
3905 - MEDIUM: stats: make the HTML server state dump use the CSV states
3906 - MEDIUM: stats: only report observe errors when observe is set
3907 - MEDIUM: stats: expose the same flags for CLI and HTTP accesses
3908 - MEDIUM: stats: report server's address in the CSV output
3909 - MEDIUM: stats: report the cookie value in the server & backend CSV dumps
3910 - MEDIUM: stats: compute the color code only in the HTML form
3911 - MEDIUM: stats: report the listeners' address in the CSV output
3912 - MEDIUM: stats: make it possible to report the WAITING state for listeners
3913 - REORG: stats: dump the frontend's HTML stats via a generic function
3914 - REORG: stats: dump the socket stats via the generic function
3915 - REORG: stats: dump the server stats via the generic function
3916 - REORG: stats: dump the backend stats via the generic function
3917 - MEDIUM: stats: add a new "mode" column to report the proxy mode
3918 - MINOR: stats: report the load balancing algorithm in CSV output
3919 - MINOR: stats: add 3 fields to report the frontend-specific connection stats
3920 - MINOR: stats: report number of intercepted requests for frontend and backends
3921 - MINOR: stats: introduce stats_dump_one_line() to dump one stats line
3922 - CLEANUP: stats: make stats_dump_fields_html() not rely on proxy anymore
3923 - MINOR: stats: add ST_SHOWADMIN to pass the admin info in the regular flags
3924 - MINOR: stats: make stats_dump_fields_html() not use &trash by default
3925 - MINOR: stats: add functions to emit typed fields into a chunk
3926 - MEDIUM: stats: support "show info typed" on the CLI
3927 - MEDIUM: stats: implement a typed output format for stats
3928 - DOC: document the "show info typed" and "show stat typed" output formats
3929 - MINOR: cfgparse: warn when uid parameter is not a number
3930 - MINOR: cfgparse: warn when gid parameter is not a number
3931 - BUG/MINOR: standard: Avoid free of non-allocated pointer
3932 - BUG/MINOR: pattern: Avoid memory leak on out-of-memory condition
3933 - CLEANUP: http: fix a build warning introduced by a recent fix
3934 - BUG/MINOR: log: GMT offset not updated when entering/leaving DST
3935
Willy Tarreaucb928252015-12-20 23:33:18 +010039362015/12/20 : 1.7-dev1
3937 - DOC: specify that stats socket doc (section 9.2) is in management
3938 - BUILD: install only relevant and existing documentation
3939 - CLEANUP: don't ignore debian/ directory if present
3940 - BUG/MINOR: dns: parsing error of some DNS response
3941 - BUG/MEDIUM: namespaces: don't fail if no namespace is used
3942 - BUG/MAJOR: ssl: free the generated SSL_CTX if the LRU cache is disabled
3943 - MEDIUM: dns: Don't use the ANY query type
3944 - BUILD: ssl: fix build error introduced in commit 7969a3 with OpenSSL < 1.0.0
3945 - DOC: fix a typo for a "deviceatlas" keyword
3946 - FIX: small typo in an example using the "Referer" header
3947 - MINOR: cli: ability to set per-server maxconn
3948 - DEBUG/MINOR: memory: add a build option to disable memory pools sharing
3949 - DEBUG/MEDIUM: memory: optionally protect free data in pools
3950 - DEBUG/MEDIUM: memory: add optional control pool memory operations
3951 - MEDIUM: memory: add accounting for failed allocations
3952 - BUG/MEDIUM: config: count memory limits on 64 bits, not 32
3953 - BUG/MAJOR: dns: first DNS response packet not matching queried hostname may lead to a loop
3954 - BUG/MINOR: dns: unable to parse CNAMEs response
3955 - BUG/MINOR: examples/haproxy.init: missing brace in quiet_check()
3956 - DOC: deviceatlas: more example use cases.
3957 - MINOR: config: allow IPv6 bracketed literals
3958 - BUG/BUILD: replace haproxy-systemd-wrapper with $(EXTRA) in install-bin.
3959 - BUILD: add Haiku as supported target.
3960 - BUG/MAJOR: http: don't requeue an idle connection that is already queued
3961 - DOC: typo on capture.res.hdr and capture.req.hdr
3962 - BUG/MINOR: dns: check for duplicate nameserver id in a resolvers section was missing
3963 - CLEANUP: use direction names in place of numeric values
3964 - BUG/MEDIUM: lua: sample fetches based on response doesn't work
3965 - MINOR: check: add agent-send server parameter
3966 - BUG/MINOR: http rule: http capture 'id' rule points to a non existing id
3967 - BUG/MINOR: server: check return value of fgets() in apply_server_state()
3968 - BUG/MINOR: acl: don't use record layer in req_ssl_ver
3969 - BUILD: freebsd: double declaration
3970 - BUG/MEDIUM: lua: clean output buffer
3971 - BUILD: check for libressl to be able to build against it
3972 - DOC: lua-api/index.rst small example fixes, spelling correction.
3973 - DOC: lua: architecture and first steps
3974 - DOC: relation between timeout http-request and option http-buffer-request
3975 - BUILD: Make deviceatlas require PCRE
3976 - BUG: http: do not abort keep-alive connections on server timeout
3977 - BUG/MEDIUM: http: switch the request channel to no-delay once done.
3978 - BUG/MINOR: lua: don't force-sslv3 LUA's SSL socket
3979 - BUILD/MINOR: http: proto_http.h needs sample.h
3980 - BUG/MEDIUM: http: don't enable auto-close on the response side
3981 - BUG/MEDIUM: stream: fix half-closed timeout handling
3982 - CLEANUP: compression: don't allocate DEFAULT_MAXZLIBMEM without USE_ZLIB
3983 - BUG/MEDIUM: cli: changing compression rate-limiting must require admin level
3984 - BUG/MEDIUM: sample: urlp can't match an empty value
3985 - BUILD: dumpstats: silencing warning for printf format specifier / time_t
3986 - CLEANUP: proxy: calloc call inverted arguments
3987 - MINOR: da: silent logging by default and displaying DeviceAtlas support if built.
3988 - BUG/MEDIUM: da: stop DeviceAtlas processing in the convertor if there is no input.
3989 - DOC: Edited 51Degrees section of README/
3990 - BUG/MEDIUM: checks: email-alert not working when declared in defaults
3991 - BUG/MINOR: checks: email-alert causes a segfault when an unknown mailers section is configured
3992 - BUG/MINOR: checks: typo in an email-alert error message
3993 - BUG/MINOR: tcpcheck: conf parsing error when no port configured on server and last rule is a CONNECT with no port
3994 - BUG/MINOR: tcpcheck: conf parsing error when no port configured on server and first rule(s) is (are) COMMENT
3995 - BUG/MEDIUM: http: fix http-reuse when frontend and backend differ
3996 - DOC: prefer using http-request/response over reqXXX/rspXXX directives
3997 - CLEANUP: haproxy: using _GNU_SOURCE instead of __USE_GNU macro.
3998 - MINOR: ssl: Added cert_key_and_chain struct
3999 - MEDIUM: ssl: Added support for creating SSL_CTX with multiple certs
4000 - MINOR: ssl: Added multi cert support for crt-list config keyword
4001 - MEDIUM: ssl: Added multi cert support for loading crt directories
4002 - MEDIUM: ssl: Added support for Multi-Cert OCSP Stapling
4003 - BUILD: ssl: set SSL_SOCK_NUM_KEYTYPES with openssl < 1.0.2
4004 - MINOR: config: make tune.recv_enough configurable
4005 - BUG/MEDIUM: config: properly adjust maxconn with nbproc when memmax is forced
4006 - DOC: ssl: Adding docs for Multi-Cert bundling
4007 - BUG/MEDIUM: peers: table entries learned from a remote are pushed to others after a random delay.
4008 - BUG/MEDIUM: peers: old stick table updates could be repushed.
4009 - MINOR: lua: service/applet can have access to the HTTP headers when a POST is received
4010 - REORG/MINOR: lua: convert boolean "int" to bitfield
4011 - BUG/MEDIUM: lua: Lua applets must not fetch samples using http_txn
4012 - BUG/MINOR: lua: Lua applets must not use http_txn
4013 - BUG/MEDIUM: lua: Forbid HTTP applets from being called from tcp rulesets
4014 - BUG/MAJOR: lua: Do not force the HTTP analysers in use-services
4015 - CLEANUP: lua: bad error messages
4016 - CONTRIB: initiate a debugging suite to make debugging easier
4017
Willy Tarreau991b4782015-10-13 21:48:10 +020040182015/10/13 : 1.7-dev0
4019 - exact copy of 1.6.0
4020
Willy Tarreau844028b2015-10-13 18:52:22 +020040212015/10/13 : 1.6.0
4022 - BUG/MINOR: Handle interactive mode in cli handler
4023 - DOC: global section missing parameters
4024 - DOC: backend section missing parameters
4025 - DOC: stats paramaters available in frontend
4026 - MINOR: lru: do not allocate useless memory in lru64_lookup
4027 - BUG/MINOR: http: Add OPTIONS in supported http methods (found by find_http_meth)
4028 - BUG/MINOR: ssl: fix management of the cache where forged certificates are stored
4029 - MINOR: ssl: Release Servers SSL context when HAProxy is shut down
4030 - MINOR: ssl: Read the file used to generate certificates in any order
4031 - MINOR: ssl: Add support for EC for the CA used to sign generated certificates
4032 - MINOR: ssl: Add callbacks to set DH/ECDH params for generated certificates
4033 - BUG/MEDIUM: logs: fix time zone offset format in RFC5424
4034 - BUILD: Fix the build on OSX (htonll/ntohll)
4035 - BUILD: enable build on Linux/s390x
4036 - BUG/MEDIUM: lua: direction test failed
4037 - MINOR: lua: fix a spelling error in some error messages
4038 - CLEANUP: cli: ensure we can never double-free error messages
4039 - BUG/MEDIUM: lua: force server-close mode on Lua services
4040 - MEDIUM: init: support more command line arguments after pid list
4041 - MEDIUM: init: support a list of files on the command line
4042 - MINOR: debug: enable memory poisonning to use byte 0
4043 - BUILD: ssl: fix build error introduced by recent commit
4044 - BUG/MINOR: config: make the stats socket pass the correct proxy to the parsers
4045 - MEDIUM: server: implement TCP_USER_TIMEOUT on the server
4046 - DOC: mention the "namespace" options for bind and server lines
4047 - DOC: add the "management" documentation
4048 - DOC: move the stats socket documentation from config to management
4049 - MINOR: examples: update haproxy.spec to mention new docs
4050 - DOC: mention management.txt in README
4051 - DOC: remove haproxy-{en,fr}.txt
4052 - BUILD: properly report when USE_ZLIB and USE_SLZ are used together
4053 - MINOR: init: report use of libslz instead of "no compression"
4054 - CLEANUP: examples: remove some obsolete and confusing files
4055 - CLEANUP: examples: remove obsolete configuration file samples
4056 - CLEANUP: examples: fix the example file content-sw-sample.cfg
4057 - CLEANUP: examples: update sample file option-http_proxy.cfg
4058 - CLEANUP: examples: update sample file ssl.cfg
4059 - CLEANUP: tests: move a test file from examples/ to tests/
4060 - CLEANUP: examples: shut up warnings in transparent proxy example
4061 - CLEANUP: tests: removed completely obsolete test files
4062 - DOC: update ROADMAP to remove what was done in 1.6
4063 - BUG/MEDIUM: pattern: fixup use_after_free in the pat_ref_delete_by_id
4064
Willy Tarreau8c1ad712015-10-06 12:13:56 +020040652015/10/06 : 1.6-dev7
4066 - MINOR: cli: Dump all resolvers stats if no resolver section is given
4067 - BUG: config: external-check command validation is checking for incorrect arguments.
4068 - DOC: documentation format cleanups
4069 - DOC: lua: few typos.
4070 - BUG/MEDIUM: str2ip: make getaddrinfo() consider local address selection policy
4071 - BUG/MEDIUM: logs: segfault writing to log from Lua
4072 - DOC: fix lua use-service example
4073 - MINOR: payload: add support for tls session ticket ext
4074 - MINOR: lua: remove the run flag
4075 - MEDIUM: lua: change the timeout execution
4076 - MINOR: lua: rename the tune.lua.applet-timeout
4077 - DOC: lua: update Lua doc
4078 - DOC: lua: update doc according with the last Lua changes
4079 - MINOR: http/tcp: fill the avalaible actions
4080 - DOC: reorder misplaced res.ssl_hello_type in the doc
4081 - BUG/MINOR: tcp: make silent-drop always force a TCP reset
4082 - CLEANUP: tcp: silent-drop: only drain the connection when quick-ack is disabled
4083 - BUILD: tcp: use IPPROTO_IP when SOL_IP is not available
4084 - BUILD: server: fix build warnings introduced by load-server-state
4085 - BUG/MEDIUM: server: fix misuse of format string in load-server-state's warnings
4086
Willy Tarreaue7ae6562015-09-28 23:46:27 +020040872015/09/28 : 1.6-dev6
4088 - BUG/MAJOR: can't enable a server through the stat socket
4089 - MINOR: server: Macro definition for server-state
4090 - MINOR: cli: new stats socket command: show servers state
4091 - DOC: stats socket command: show servers state
4092 - MINOR: config: new global directive server-state-base
4093 - DOC: global directive server-state-base
4094 - MINOR: config: new global section directive: server-state-file
4095 - DOC: new global directive: server-state-file
4096 - MINOR: config: new backend directives: load-server-state-from-file and server-state-file-name
4097 - DOC: load-server-state-from-file
4098 - MINOR: init: server state loaded from file
4099 - MINOR: server: startup slowstart task when using seamless reload of HAProxy
4100 - MINOR: cli: new stats socket command: show backend
4101 - DOC: servers state seamless reload example
4102 - BUG: dns: can't connect UDP socket on FreeBSD
4103 - MINOR: cfgparse: New function cfg_unregister_sections()
4104 - MINOR: chunk: New function free_trash_buffers()
4105 - BUG/MEDIUM: main: Freeing a bunch of static pointers
4106 - MINOR: proto_http: Externalisation of previously internal functions
4107 - MINOR: global: Few new struct fields for da module
4108 - MAJOR: da: Update of the DeviceAtlas API module
4109 - DOC: DeviceAtlas new keywords
4110 - DOC: README: DeviceAtlas sample configuration updates
4111 - MEDIUM: log: replace sendto() with sendmsg() in __send_log()
4112 - MEDIUM: log: use a separate buffer for the header and for the message
4113 - MEDIUM: logs: remove the hostname, tag and pid part from the logheader
4114 - MEDIUM: logs: add support for RFC5424 header format per logger
4115 - MEDIUM: logs: add a new RFC5424 log-format for the structured-data
4116 - DOC: mention support for the RFC5424 syslog message format
4117 - MEDIUM: logs: have global.log_send_hostname not contain the trailing space
4118 - MEDIUM: logs: pass the trailing "\n" as an iovec
4119 - BUG/MEDIUM: peers: some table updates are randomly not pushed.
4120 - BUG/MEDIUM: peers: same table updates re-pushed after a re-connect
4121 - BUG/MINOR: fct peer_prepare_ackmsg should not use trash.
4122 - MINOR: http: made CHECK_HTTP_MESSAGE_FIRST accessible to other functions
4123 - MINOR: global: Added new fields for 51Degrees device detection
4124 - DOC: Added more explanation for 51Degrees V3.2
4125 - BUILD: Changed 51Degrees option to support V3.2
4126 - MAJOR: 51d: Upgraded to support 51Degrees V3.2 and new features
4127 - MINOR: 51d: Improved string handling for LRU cache
4128 - DOC: add references to rise/fall for the fastinter explanation
4129 - MINOR: support cpu-map feature through the compile option USE_CPU_AFFINITY on FreeBSD
4130 - BUG/MAJOR: lua: potential unexpected aborts()
4131 - BUG/MINOR: lua: breaks the log message if his size exceed one buffer
4132 - MINOR: action: add private configuration
4133 - MINOR: action: add reference to the original keywork matched for the called parser.
4134 - MINOR: lua: change actions registration
4135 - MEDIUM: proto_http: smp_prefetch_http initialize txn
4136 - MINOR: channel: rename function chn_sess to chn_strm
4137 - CLEANUP: lua: align defines
4138 - MINOR: http: export http_get_path() function
4139 - MINOR: http: export the get_reason() function
4140 - MINOR: http: export function http_msg_analyzer()
4141 - MINOR: http: split initialization
4142 - MINOR: lua: reset pointer after use
4143 - MINOR: lua: identify userdata objects
4144 - MEDIUM: lua: use the function lua_rawset in place of lua_settable
4145 - BUG/MAJOR: lua: segfault after the channel data is modified by some Lua action.
4146 - CLEANUP: lua: use calloc in place of malloc
4147 - BUG/MEDIUM: lua: longjmp function must be unregistered
4148 - BUG/MEDIUM: lua: forces a garbage collection
4149 - BUG/MEDIUM: lua: wakeup task on bad conditions
4150 - MINOR: standard: avoid DNS resolution from the function str2sa_range()
4151 - MINOR: lua: extend socket address to support non-IP families
4152 - MINOR: lua/applet: the cosocket applet should use appctx_wakeup in place of task_wakeup
4153 - BUG/MEDIUM: lua: socket destroy before reading pending data
4154 - MEDIUM: lua: change the GC policy
4155 - OPTIM/MEDIUM: lua: executes the garbage collector only when using cosocket
4156 - BUG/MEDIUM: lua: don't reset undesired flags in hlua_ctx_resume
4157 - MINOR: applet: add init function
4158 - MINOR: applet: add an execution timeout
4159 - MINOR: stream/applet: add use-service action
4160 - MINOR: lua: add AppletTCP class and service
4161 - MINOR: lua: add AppletHTTP class and service
4162 - DOC: lua: some documentation update
4163 - DOC: add the documentation about internal circular lists
4164 - DOC: add a CONTRIBUTING file
4165 - DOC: add a MAINTAINERS file
4166 - BUG/MAJOR: peers: fix a crash when stopping peers on unbound processes
4167 - DOC: update coding-style to reference checkpatch.pl
4168 - BUG/MEDIUM: stick-tables: fix double-decrement of tracked entries
4169 - BUG/MINOR: args: add name for ARGT_VAR
4170 - DOC: add more entries to MAINTAINERS
4171 - DOC: add more entries to MAINTAINERS
4172 - CLEANUP: stream-int: remove obsolete function si_applet_call()
4173 - BUG/MAJOR: cli: do not dereference strm_li()->proto->name
4174 - BUG/MEDIUM: http: do not dereference strm_li(stream)
4175 - BUG/MEDIUM: proxy: do not dereference strm_li(stream)
4176 - BUG/MEDIUM: stream: do not dereference strm_li(stream)
4177 - MINOR: stream-int: use si_release_endpoint() to close idle conns
4178 - BUG/MEDIUM: payload: make req.payload and payload_lv aware of dynamic buffers
4179 - BUG/MEDIUM: acl: always accept match "found"
4180 - MINOR: applet: rename applet_runq to applet_active_queue
4181 - BUG/MAJOR: applet: use a separate run queue to maintain list integrity
4182 - MEDIUM: stream-int: split stream_int_update_conn() into si- and conn-specific parts
4183 - MINOR: stream-int: implement a new stream_int_update() function
4184 - MEDIUM: stream-int: factor out the stream update functions
4185 - MEDIUM: stream-int: call stream_int_update() from si_update()
4186 - MINOR: stream-int: export stream_int_update_*
4187 - MINOR: stream-int: move the applet_pause call out of the stream updates
4188 - MEDIUM: stream-int: clean up the conditions to enable reading in si_conn_wake_cb
4189 - MINOR: stream-int: implement the stream_int_notify() function
4190 - MEDIUM: stream-int: use the same stream notification function for applets and conns
4191 - MEDIUM: stream-int: completely remove stream_int_update_embedded()
4192 - MINOR: stream-int: rename si_applet_done() to si_applet_wake_cb()
4193 - BUG/MEDIUM: applet: fix reporting of broken write situation
4194 - BUG/MINOR: stats: do not call cli_release_handler 3 times
4195 - BUG/MEDIUM: cli: properly handle closed output
4196 - MINOR: cli: do not call the release handler on internal error.
4197 - BUG/MEDIUM: stream-int: avoid double-call to applet->release
4198 - DEBUG: add p_malloc() to return a poisonned memory area
4199 - CLEANUP: lua: remove unneeded memset(0) after calloc()
4200 - MINOR: lua: use the proper applet wakeup mechanism
4201 - BUG/MEDIUM: lua: better fix for the protocol check
4202 - BUG/MEDIUM: lua: properly set the target on the connection
4203 - MEDIUM: actions: pass a new "flags" argument to custom actions
4204 - MEDIUM: actions: add new flag ACT_FLAG_FINAL to notify about last call
4205 - MEDIUM: http: pass ACT_FLAG_FINAL to custom actions
4206 - MEDIUM: lua: only allow actions to yield if not in a final call
4207 - DOC: clarify how to make use of abstract sockets in socat
4208 - CLEANUP: config: make the errorloc/errorfile messages less confusing
4209 - MEDIUM: action: add a new flag ACT_FLAG_FIRST
4210 - BUG/MINOR: config: check that tune.bufsize is always positive
4211 - MEDIUM: config: set tune.maxrewrite to 1024 by default
4212 - DOC: add David Carlier as maintainer of da.c
4213 - DOC: fix some broken unexpected unicode chars in the Lua doc.
4214 - BUG/MEDIUM: proxy: ignore stopped peers
4215 - BUG/MEDIUM: proxy: do not wake stopped proxies' tasks during soft_stop()
4216 - MEDIUM: init: completely deallocate unused peers
4217 - BUG/MEDIUM: tcp: fix inverted condition to call custom actions
4218 - DOC: remove outdated actions lists on tcp-request/response
4219 - MEDIUM: tcp: add new tcp action "silent-drop"
4220 - DOC: add URLs to optional libraries in the README
4221
Willy Tarreaua02e8a62015-09-14 12:23:10 +020042222015/09/14 : 1.6-dev5
4223 - MINOR: dns: dns_resolution structure update: time_t to unsigned int
4224 - BUG/MEDIUM: dns: DNS resolution doesn't start
4225 - BUG/MAJOR: dns: dns client resolution infinite loop
4226 - MINOR: dns: coding style update
4227 - MINOR: dns: new bitmasks to use against DNS flags
4228 - MINOR: dns: dns_nameserver structure update: new counter for truncated response
4229 - MINOR: dns: New DNS response analysis code: DNS_RESP_TRUNCATED
4230 - MEDIUM: dns: handling of truncated response
4231 - MINOR: DNS client query type failover management
4232 - MINOR: dns: no expected DNS record type found
4233 - MINOR: dns: new flag to report that no IP can be found in a DNS response packet
4234 - BUG/MINOR: DNS request retry counter used for retry only
4235 - DOC: DNS documentation updated
4236 - MEDIUM: actions: remove ACTION_STOP
4237 - BUG/MEDIUM: lua: outgoing connection was broken since 1.6-dev2 (bis)
4238 - BUG/MINOR: lua: last log character truncated.
4239 - CLEANUP: typo: bad indent
4240 - CLEANUP: actions: missplaced includes
4241 - MINOR: build: missing header
4242 - CLEANUP: lua: Merge log functions
4243 - BUG/MAJOR: http: don't manipulate the server connection if it's killed
4244 - BUG/MINOR: http: remove stupid HTTP_METH_NONE entry
4245 - BUG/MAJOR: http: don't call http_send_name_header() after an error
4246 - MEDIUM: tools: make str2sa_range() optionally return the FQDN
4247 - BUG/MINOR: tools: make str2sa_range() report unresolvable addresses
4248 - BUG/MEDIUM: dns: use the correct server hostname when resolving
4249
Willy Tarreau61d301f2015-08-30 00:17:17 +020042502015/08/30 : 1.6-dev4
4251 - MINOR: log: Add log-format variable %HQ, to log HTTP query strings
4252 - DOC: typo in 'redirect', 302 code meaning
4253 - DOC: typos in tcp-check expect examples
4254 - DOC: resolve-prefer default value and default-server update
4255 - MINOR: DNS counters: increment valid counter
4256 - BUG/MEDIUM: DNS resolution response parsing broken
4257 - MINOR: server: add new SRV_ADMF_CMAINT flag
4258 - MINOR: server SRV_ADMF_CMAINT flag doesn't imply SRV_ADMF_FMAINT
4259 - BUG/MEDIUM: dns: wrong first time DNS resolution
4260 - BUG/MEDIUM: lua: Lua tasks fail to start.
4261 - BUILD: add USE_LUA to BUILD_OPTIONS when it's used
4262 - DOC/MINOR: fix OpenBSD versions where haproxy works
4263 - MINOR: 51d: unable to start haproxy without "51degrees-data-file"
4264 - BUG/MEDIUM: peers: fix wrong message id on stick table updates acknowledgement.
4265 - BUG/MAJOR: peers: fix current table pointer not re-initialized on session release.
4266 - BUILD: ssl: Allow building against libssl without SSLv3.
4267 - DOC: clarify some points about SSL and the proxy protocol
4268 - DOC: mention support for RFC 5077 TLS Ticket extension in starter guide
4269 - BUG/MEDIUM: mailer: DATA part must be terminated with <CRLF>.<CRLF>
4270 - DOC: match several lua configuration option names to those implemented in code
4271 - MINOR cfgparse: Correct the mailer warning text to show the right names to the user
4272 - BUG/MINOR: ssl: TLS Ticket Key rotation broken via socket command
4273 - MINOR: stream: initialize the current_rule field to NULL on stream init
4274 - BUG/MEDIUM: lua: timeout error with converters, wrapper and actions.
4275 - CLEANUP: proto_http: remove useless initialisation
4276 - CLEANUP: http/tcp actions: remove the scope member
4277 - BUG/MINOR: proto_tcp: custom action continue is ignored
4278 - MINOR: proto_tcp: add session in the action prototype
4279 - MINOR: vars: reduce the code size of some wrappers
4280 - MINOR: Move http method enum from proto_http to sample
4281 - MINOR: sample: Add ipv6 to ipv4 and sint to ipv6 casts
4282 - MINOR: sample/proto_tcp: export "smp_fetch_src"
4283 - MEDIUM: cli: rely on the map's output type instead of the sample type
4284 - BUG/MEDIUM: stream: The stream doen't inherit SC from the session
4285 - BUG/MEDIUM: vars: segfault during the configuration parsing
4286 - BUG/MEDIUM: stick-tables: refcount error after copying SC for the session to the stream
4287 - BUG/MEDIUM: lua: bad error processing
4288 - MINOR: samples: rename a struct from sample_storage to sample_data
4289 - MINOR: samples: rename some struct member from "smp" to "data"
4290 - MEDIUM: samples: Use the "struct sample_data" in the "struct sample"
4291 - MINOR: samples: extract the anonymous union and create the union sample_value
4292 - MINOR: samples: rename union from "data" to "u"
4293 - MEDIUM: 51degrees: Adapt the 51Degrees library
4294 - MINOR: samples: data assignation simplification
4295 - MEDIUM: pattern/map: Maps can returns various types
4296 - MINOR: map: The map can return IPv4 and IPv6
4297 - MEDIUM: actions: Merge (http|tcp)-(request|reponse) action structs
4298 - MINOR: actions: Remove the data opaque pointer
4299 - MINOR: lua: use the hlua_rule type in place of opaque type
4300 - MINOR: vars: use the vars types as argument in place of opaque type
4301 - MINOR: proto_http: use an "expr" type in place of generic opaque type.
4302 - MINOR: proto_http: replace generic opaque types by real used types for the actions on thr request line
4303 - MINOR: proto_http: replace generic opaque types by real used types in "http_capture"
4304 - MINOR: proto_http: replace generic opaque types by real used types in "http_capture" by id
4305 - MEDIUM: track-sc: Move the track-sc configuration storage in the union
4306 - MEDIUM: capture: Move the capture configuration storage in the union
4307 - MINOR: actions: add "from" information
4308 - MINOR: actions: remove the mark indicating the last entry in enum
4309 - MINOR: actions: Declare all the embedded actions in the same header file
4310 - MINOR: actions: change actions names
4311 - MEDIUM: actions: Add standard return code for the action API
4312 - MEDIUM: actions: Merge (http|tcp)-(request|reponse) keywords structs
4313 - MINOR: proto_tcp: proto_tcp.h is now useles
4314 - MINOR: actions: mutualise the action keyword lookup
4315 - MEDIUM: actions: Normalize the return code of the configuration parsers
4316 - MINOR: actions: Remove wrappers
4317 - MAJOR: stick-tables: use sample types in place of dedicated types
4318 - MEDIUM: stick-tables: use the sample type names
4319 - MAJOR: stick-tables: remove key storage from the key struct
4320 - MEDIUM: stick-tables: Add GPT0 in the stick tables
4321 - MINOR: stick-tables: Add GPT0 access
4322 - MINOR: stick-tables: Add GPC0 actions
4323 - BUG/MEDIUM: lua: the lua fucntion Channel:close() causes a segfault
4324 - DOC: ssl: missing LF
4325 - MINOR: lua: add core.done() function
4326 - DOC: fix function name
4327 - BUG/MINOR: lua: in some case a sample may remain undefined
4328 - DOC: fix "http_action_set_req_line()" comments
4329 - MINOR: http: Action for manipulating the returned status code.
4330 - MEDIUM: lua: turns txn:close into txn:done
4331 - BUG/MEDIUM: lua: cannot process more Lua hooks after a "done()" function call
4332 - BUILD: link with libdl if needed for Lua support
4333 - CLEANUP: backend: factor out objt_server() in connect_server()
4334 - MEDIUM: backend: don't call si_alloc_conn() when we reuse a valid connection
4335 - MEDIUM: stream-int: simplify si_alloc_conn()
4336 - MINOR: stream-int: add new function si_detach_endpoint()
4337 - MINOR: server: add a list of private idle connections
4338 - MINOR: connection: add a new list member in the connection struct
4339 - MEDIUM: stream-int: queue idle connections at the server
4340 - MINOR: stream-int: make si_idle_conn() only accept valid connections
4341 - MINOR: server: add a list of already used idle connections
4342 - MINOR: connection: add a new flag CO_FL_PRIVATE
4343 - MINOR: config: add new setting "http-reuse"
4344 - MAJOR: backend: initial work towards connection reuse
4345 - MAJOR: backend: improve the connection reuse mechanism
4346 - MEDIUM: backend: implement "http-reuse safe"
4347 - MINOR: server: add a list of safe, already reused idle connections
4348 - MEDIUM: backend: add the "http-reuse aggressive" strategy
4349 - DOC: document the new http-reuse directive
4350 - DOC: internals: document next steps for HTTP connection reuse
4351 - DOC: mention that %ms is left-padded with zeroes.
4352 - MINOR: init: indicate to check 'bind' lines when no listeners were found.
4353 - MAJOR: http: remove references to appsession
4354 - CLEANUP: config: remove appsession initialization
4355 - CLEANUP: appsession: remove appsession.c and sessionhash.c
4356 - CLEANUP: tests: remove sessionhash_test.c and test-cookie-appsess.cfg
4357 - CLEANUP: proxy: remove last references to appsession
4358 - CLEANUP: appsession: remove the last include files
4359 - DOC: remove documentation about appsession
4360 - CLEANUP: .gitignore: ignore more test files
4361 - CLEANUP: .gitignore: finally ignore everything but what is known.
4362 - MEDIUM: config: emit a warning on a frontend without listener
4363 - DOC: add doc/internals/entities-v2.txt
4364 - DOC: add doc/linux-syn-cookies.txt
4365 - DOC: add design thoughts on HTTP/2
4366 - DOC: add some thoughts on connection sharing for HTTP/2
4367 - DOC: add design thoughts on dynamic buffer allocation
4368 - BUG/MEDIUM: counters: ensure that src_{inc,clr}_gpc0 creates a missing entry
4369 - DOC: add new file intro.txt
4370 - MAJOR: tproxy: remove support for cttproxy
4371 - BUG/MEDIUM: lua: outgoing connection was broken since 1.6-dev2
4372 - DOC: lua: replace txn:close with txn:done in lua-api
4373 - DOC: intro: minor updates and fixes
4374 - DOC: intro: fix too long line.
4375 - DOC: fix example of http-request using ssl_fc_session_id
4376 - BUG/MEDIUM: lua: txn:done() still causes a segfault in TCP mode
4377 - CLEANUP: lua: fix some indent issues
4378 - BUG/MEDIUM: lua: fix a segfault in txn:done() if called twice
4379 - DOC: lua: mention than txn:close was renamed txn:done.
4380
Willy Tarreau50bdda62015-07-22 17:32:56 +020043812015/07/22 : 1.6-dev3
4382 - CLEANUP: sample: generalize sample_fetch_string() as sample_fetch_as_type()
4383 - MEDIUM: http: Add new 'set-src' option to http-request
4384 - DOC usesrc root privileges requirments
4385 - BUG/MINOR: dns: wrong time unit for some DNS default parameters
4386 - MINOR: proxy: bit field for proxy_find_best_match diff status
4387 - MINOR: server: new server flag: SRV_F_FORCED_ID
4388 - MINOR: server: server_find functions: id, name, best_match
4389 - DOC: dns: fix chapters syntax
4390 - BUILD/MINOR: tools: rename popcount to my_popcountl
4391 - BUILD: add netbsd TARGET
4392 - MEDIUM: 51Degrees code refactoring and cleanup
4393 - MEDIUM: 51d: add LRU-based cache on User-Agent string detection
4394 - DOC: add notes about the "51degrees-cache-size" parameter
4395 - BUG/MEDIUM: 51d: possible incorrect operations on smp->data.str.str
4396 - BUG/MAJOR: connection: fix TLV offset calculation for proxy protocol v2 parsing
4397 - MINOR: Add sample fetch to detect Supported Elliptic Curves Extension
4398 - BUG/MINOR: payload: Add volatile flag to smp_fetch_req_ssl_ec_ext
4399 - BUG/MINOR: lua: type error in the arguments wrapper
4400 - CLEANUP: vars: remove unused struct
4401 - BUG/MINOR: http/sample: gmtime/localtime can fail
4402 - MINOR: standard: add 64 bits conversion functions
4403 - MAJOR: sample: converts uint and sint in 64 bits signed integer
4404 - MAJOR: arg: converts uint and sint in sint
4405 - MEDIUM: sample: switch to saturated arithmetic
4406 - MINOR: vars: returns variable content
4407 - MEDIUM: vars/sample: operators can use variables as parameter
4408 - BUG/MINOR: ssl: fix smp_fetch_ssl_fc_session_id
4409 - BUILD/MINOR: lua: fix a harmless build warning
4410 - BUILD/MINOR: stats: fix build warning due to condition always true
4411 - BUG/MAJOR: lru: fix unconditional call to free due to unexpected semi-colon
4412 - BUG/MEDIUM: logs: fix improper systematic use of quotes with a few tags
4413 - BUILD/MINOR: lua: ensure that hlua_ctx_destroy is properly defined
4414 - BUG/MEDIUM: lru: fix possible memory leak when ->free() is used
4415 - MINOR: vars: make the accounting not depend on the stream
4416 - MEDIUM: vars: move the session variables to the session, not the stream
4417 - BUG/MEDIUM: vars: do not freeze the connection when the expression cannot be fetched
4418 - BUG/MAJOR: buffers: make the buffer_slow_realign() function respect output data
4419 - BUG/MAJOR: tcp: tcp rulesets were still broken
4420 - MINOR: stats: improve compression stats reporting
4421 - MINOR: ssl: make self-generated certs also work with raw IPv6 addresses
4422 - CLEANUP: ssl: make ssl_sock_generated_cert_serial() take a const
4423 - CLEANUP: ssl: make ssl_sock_generate_certificate() use ssl_sock_generated_cert_serial()
4424 - BUG/MINOR: log: missing some ARGC_* entries in fmt_directives()
4425 - MINOR: args: add new context for servers
4426 - MINOR: stream: maintain consistence between channel_forward and HTTP forward
4427 - MINOR: ssl: provide ia function to set the SNI extension on a connection
4428 - MEDIUM: ssl: add sni support on the server lines
4429 - CLEANUP: stream: remove a useless call to si_detach()
4430 - CLEANUP: stream-int: fix a few outdated comments about stream_int_register_handler()
4431 - CLEANUP: stream-int: remove stream_int_unregister_handler() and si_detach()
4432 - MINOR: stream-int: only use si_release_endpoint() to release a connection
4433 - MINOR: standard: provide htonll() and ntohll()
4434 - CLEANUP/MINOR: dns: dns_str_to_dn_label() only needs a const char
4435 - BUG/MAJOR: dns: fix the length of the string to be copied
4436
Willy Tarreauad90f0d2015-06-17 15:53:25 +020044372015/06/17 : 1.6-dev2
4438 - BUG/MINOR: ssl: Display correct filename in error message
4439 - MEDIUM: logs: Add HTTP request-line log format directives
4440 - BUG/MEDIUM: check: tcpcheck regression introduced by e16c1b3f
4441 - BUG/MINOR: check: fix tcpcheck error message
4442 - MINOR: use an int instead of calling tcpcheck_get_step_id
4443 - MINOR: tcpcheck_rule structure update
4444 - MINOR: include comment in tcpcheck error log
4445 - DOC: tcpcheck comment documentation
4446 - MEDIUM: server: add support for changing a server's address
4447 - MEDIUM: server: change server ip address from stats socket
4448 - MEDIUM: protocol: add minimalist UDP protocol client
4449 - MEDIUM: dns: implement a DNS resolver
4450 - MAJOR: server: add DNS-based server name resolution
4451 - DOC: server name resolution + proto DNS
4452 - MINOR: dns: add DNS statistics
4453 - MEDIUM: http: configurable http result codes for http-request deny
4454 - BUILD: Compile clean when debug options defined
4455 - MINOR: lru: Add the possibility to free data when an item is removed
4456 - MINOR: lru: Add lru64_lookup function
4457 - MEDIUM: ssl: Add options to forge SSL certificates
4458 - MINOR: ssl: Export functions to manipulate generated certificates
4459 - MEDIUM: config: add DeviceAtlas global keywords
4460 - MEDIUM: global: add the DeviceAtlas required elements to struct global
4461 - MEDIUM: sample: add the da-csv converter
4462 - MEDIUM: init: DeviceAtlas initialization
4463 - BUILD: Makefile: add options to build with DeviceAtlas
4464 - DOC: README: explain how to build with DeviceAtlas
4465 - BUG/MEDIUM: http: fix the url_param fetch
4466 - BUG/MEDIUM: init: segfault if global._51d_property_names is not initialized
4467 - MAJOR: peers: peers protocol version 2.0
4468 - MINOR: peers: avoid re-scheduling of pending stick-table's updates still not pushed.
4469 - MEDIUM: peers: re-schedule stick-table's entry for sync when data is modified.
4470 - MEDIUM: peers: support of any stick-table data-types for sync
4471 - BUG/MAJOR: sample: regression on sample cast to stick table types.
4472 - CLEANUP: deinit: remove codes for cleaning p->block_rules
4473 - DOC: Fix L4TOUT typo in documentation
4474 - DOC: set-log-level in Logging section preamble
4475 - BUG/MEDIUM: compat: fix segfault on FreeBSD
4476 - MEDIUM: check: include server address and port in the send-state header
4477 - MEDIUM: backend: Allow redispatch on retry intervals
4478 - MINOR: Add TLS ticket keys reference and use it in the listener struct
4479 - MEDIUM: Add support for updating TLS ticket keys via socket
4480 - DOC: Document new socket commands "show tls-keys" and "set ssl tls-key"
4481 - MINOR: Add sample fetch which identifies if the SSL session has been resumed
4482 - DOC: Update doc about weight, act and bck fields in the statistics
4483 - BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value being overwritten
4484 - MINOR: ssl: add a destructor to free allocated SSL ressources
4485 - MEDIUM: ssl: add the possibility to use a global DH parameters file
4486 - MEDIUM: ssl: replace standards DH groups with custom ones
4487 - MEDIUM: stats: Add enum srv_stats_state
4488 - MEDIUM: stats: Separate server state and colour in stats
4489 - MEDIUM: stats: Only report drain state in stats if server has SRV_ADMF_DRAIN set
4490 - MEDIUM: stats: Differentiate between DRAIN and DRAIN (agent)
4491 - MEDIUM: Lower priority of email alerts for log-health-checks messages
4492 - MEDIUM: Send email alerts when servers are marked as UP or enter the drain state
4493 - MEDIUM: Document when email-alerts are sent
4494 - BUG/MEDIUM: lua: bad argument number in analyser and in error message
4495 - MEDIUM: lua: automatically converts strings in proxy, tables, server and ip
4496 - BUG/MINOR: utf8: remove compilator warning
4497 - MEDIUM: map: uses HAProxy facilities to store default value
4498 - BUG/MINOR: lua: error in detection of mandatory arguments
4499 - BUG/MINOR: lua: set current proxy as default value if it is possible
4500 - BUG/MEDIUM: http: the action set-{method|path|query|uri} doesn't run.
4501 - BUG/MEDIUM: lua: undetected infinite loop
4502 - BUG/MAJOR: http: don't read past buffer's end in http_replace_value
4503 - BUG/MEDIUM: http: the function "(req|res)-replace-value" doesn't respect the HTTP syntax
4504 - MEDIUM/CLEANUP: http: rewrite and lighten http_transform_header() prototype
4505 - BUILD: lua: it miss the '-ldl' directive
4506 - MEDIUM: http: allows 'R' and 'S' in the protocol alphabet
4507 - MINOR: http: split the function http_action_set_req_line() in two parts
4508 - MINOR: http: split http_transform_header() function in two parts.
4509 - MINOR: http: export function inet_set_tos()
4510 - MINOR: lua: txn: add function set_(loglevel|tos|mark)
4511 - MINOR: lua: create and register HTTP class
4512 - DOC: lua: fix some typos
4513 - MINOR: lua: add log functions
4514 - BUG/MINOR: lua: Fix SSL initialisation
4515 - DOC: lua: some fixes
4516 - MINOR: lua: (req|res)_get_headers return more than one header value
4517 - MINOR: lua: map system integration in Lua
4518 - BUG/MEDIUM: http: functions set-{path,query,method,uri} breaks the HTTP parser
4519 - MINOR: sample: add url_dec converter
4520 - MEDIUM: sample: fill the struct sample with the session, proxy and stream pointers
4521 - MEDIUM: sample change the prototype of sample-fetches and converters functions
4522 - MINOR: sample: fill the struct sample with the options.
4523 - MEDIUM: sample: change the prototype of sample-fetches functions
4524 - MINOR: http: split the url_param in two parts
4525 - CLEANUP: http: bad indentation
4526 - MINOR: http: add body_param fetch
4527 - MEDIUM: http: url-encoded parsing function can run throught wrapped buffer
4528 - DOC: http: req.body_param documentation
4529 - MINOR: proxy: custom capture declaration
4530 - MINOR: capture: add two "capture" converters
4531 - MEDIUM: capture: Allow capture with slot identifier
4532 - MINOR: http: add array of generic pointers in http_res_rules
4533 - MEDIUM: capture: adds http-response capture
4534 - MINOR: common: escape CSV strings
4535 - MEDIUM: stats: escape some strings in the CSV dump
4536 - MINOR: tcp: add custom actions that can continue tcp-(request|response) processing
4537 - MINOR: lua: Lua tcp action are not final action
4538 - DOC: lua: schematics about lua socket organization
4539 - BUG/MINOR: debug: display (null) in place of "meth"
4540 - DOC: mention the "lua action" in documentation
4541 - MINOR: standard: add function that converts signed int to a string
4542 - BUG/MINOR: sample: wrong conversion of signed values
4543 - MEDIUM: sample: Add type any
4544 - MINOR: debug: add a special converter which display its input sample content.
4545 - MINOR: tcp: increase the opaque data array
4546 - MINOR: tcp/http/conf: extends the keyword registration options
4547 - MINOR: build: fix build dependency
4548 - MEDIUM: vars: adds support of variables
4549 - MINOR: vars: adds get and set functions
4550 - MINOR: lua: Variable access
4551 - MINOR: samples: add samples which returns constants
4552 - BUG/MINOR: vars/compil: fix some warnings
4553 - BUILD: add 51degrees options to makefile.
4554 - MINOR: global: add several 51Degrees members to global
4555 - MINOR: config: add 51Degrees config parsing.
4556 - MINOR: init: add 51Degrees initialisation code
4557 - MEDIUM: sample: add fiftyone_degrees converter.
4558 - MEDIUM: deinit: add cleanup for 51Degrees to deinit
4559 - MEDIUM: sample: add trie support to 51Degrees
4560 - DOC: add 51Degrees notes to configuration.txt.
4561 - DOC: add build indications for 51Degrees to README.
4562 - MEDIUM: cfgparse: introduce weak and strong quoting
4563 - BUG/MEDIUM: cfgparse: incorrect memmove in quotes management
4564 - MINOR: cfgparse: remove line size limitation
4565 - MEDIUM: cfgparse: expand environment variables
4566 - BUG/MINOR: cfgparse: fix typo in 'option httplog' error message
4567 - BUG/MEDIUM: cfgparse: segfault when userlist is misused
4568 - CLEANUP: cfgparse: remove reference to 'ruleset' section
4569 - MEDIUM: cfgparse: check section maximum number of arguments
4570 - MEDIUM: cfgparse: max arguments check in the global section
4571 - MEDIUM: cfgparse: check max arguments in the proxies sections
4572 - CLEANUP: stream-int: remove a redundant clearing of the linger_risk flag
4573 - MINOR: connection: make conn_sock_shutw() actually perform the shutdown() call
4574 - MINOR: stream-int: use conn_sock_shutw() to shutdown a connection
4575 - MINOR: connection: perform the call to xprt->shutw() in conn_data_shutw()
4576 - MEDIUM: stream-int: replace xprt->shutw calls with conn_data_shutw()
4577 - MINOR: checks: use conn_data_shutw_hard() instead of call via xprt
4578 - MINOR: connection: implement conn_sock_send()
4579 - MEDIUM: stream-int: make conn_si_send_proxy() use conn_sock_send()
4580 - MEDIUM: connection: make conn_drain() perform more controls
4581 - REORG: connection: move conn_drain() to connection.c and rename it
4582 - CLEANUP: stream-int: remove inclusion of fd.h that is not used anymore
4583 - MEDIUM: channel: don't always set CF_WAKE_WRITE on bi_put*
4584 - CLEANUP: lua: don't use si_ic/si_oc on known stream-ints
4585 - BUG/MEDIUM: peers: correctly configure the client timeout
4586 - MINOR: peers: centralize configuration of the peers frontend
4587 - MINOR: proxy: store the default target into the frontend's configuration
4588 - MEDIUM: stats: use frontend_accept() as the accept function
4589 - MEDIUM: peers: use frontend_accept() instead of peer_accept()
4590 - CLEANUP: listeners: remove unused timeout
4591 - MEDIUM: listener: store the default target per listener
4592 - BUILD: fix automatic inclusion of libdl.
4593 - MEDIUM: lua: implement a simple memory allocator
4594 - MEDIUM: compression: postpone buffer adjustments after compression
4595 - MEDIUM: compression: don't send leading zeroes with chunk size
4596 - BUG/MINOR: compression: consider the expansion factor in init
4597 - MINOR: http: check the algo name "identity" instead of the function pointer
4598 - CLEANUP: compression: statify all algo-specific functions
4599 - MEDIUM: compression: add a distinction between UA- and config- algorithms
4600 - MEDIUM: compression: add new "raw-deflate" compression algorithm
4601 - MEDIUM: compression: split deflate_flush() into flush and finish
4602 - CLEANUP: compression: remove unused reset functions
4603 - MAJOR: compression: integrate support for libslz
4604 - BUG/MEDIUM: http: hdr_cnt would not count any header when called without name
4605 - BUG/MAJOR: http: null-terminate the http actions keywords list
4606 - CLEANUP: lua: remove the unused hlua_sleep memory pool
4607 - BUG/MAJOR: lua: use correct object size when initializing a new converter
4608 - CLEANUP: lua: remove hard-coded sizeof() in object creations and mallocs
4609 - CLEANUP: lua: fix confusing local variable naming in hlua_txn_new()
4610 - CLEANUP: hlua: stop using variable name "s" alternately for hlua_txn and hlua_smp
4611 - CLEANUP: lua: get rid of the last "*ht" for struct hlua_txn.
4612 - CLEANUP: lua: rename last occurrences of "*s" to "*htxn" for hlua_txn
4613 - CLEANUP: lua: rename variable "sc" for struct hlua_smp
4614 - CLEANUP: lua: get rid of the last two "*hs" for hlua_smp
4615 - REORG/MAJOR: session: rename the "session" entity to "stream"
4616 - REORG/MEDIUM: stream: rename stream flags from SN_* to SF_*
4617 - MINOR: session: start to reintroduce struct session
4618 - MEDIUM: stream: allocate the session when a stream is created
4619 - MEDIUM: stream: move the listener's pointer to the session
4620 - MEDIUM: stream: move the frontend's pointer to the session
4621 - MINOR: session: add a pointer to the session's origin
4622 - MEDIUM: session: use the pointer to the origin instead of s->si[0].end
4623 - CLEANUP: sample: remove useless tests in fetch functions for l4 != NULL
4624 - MEDIUM: http: move header captures from http_txn to struct stream
4625 - MINOR: http: create a dedicated pool for http_txn
4626 - MAJOR: http: move http_txn out of struct stream
4627 - MAJOR: sample: don't pass l7 anymore to sample fetch functions
4628 - CLEANUP: lua: remove unused hlua_smp->l7 and hlua_txn->l7
4629 - MEDIUM: http: remove the now useless http_txn from {req/res} rules
4630 - CLEANUP: lua: don't pass http_txn anymore to hlua_request_act_wrapper()
4631 - MAJOR: sample: pass a pointer to the session to each sample fetch function
4632 - MINOR: stream: provide a few helpers to retrieve frontend, listener and origin
4633 - CLEANUP: stream: don't set ->target to the incoming connection anymore
4634 - MINOR: stream: move session initialization before the stream's
4635 - MINOR: session: store the session's accept date
4636 - MINOR: session: don't rely on s->logs.logwait in embryonic sessions
4637 - MINOR: session: implement session_free() and use it everywhere
4638 - MINOR: session: add stick counters to the struct session
4639 - REORG: stktable: move the stkctr_* functions from stream to sticktable
4640 - MEDIUM: streams: support looking up stkctr in the session
4641 - MEDIUM: session: update the session's stick counters upon session_free()
4642 - MEDIUM: proto_tcp: track the session's counters in the connection ruleset
4643 - MAJOR: tcp: make tcp_exec_req_rules() only rely on the session
4644 - MEDIUM: stream: don't call stream_store_counters() in kill_mini_session() nor session_accept()
4645 - MEDIUM: stream: move all the session-specific stuff of stream_accept() earlier
4646 - MAJOR: stream: don't initialize the stream anymore in stream_accept
4647 - MEDIUM: session: remove the task pointer from the session
4648 - REORG: session: move the session parts out of stream.c
4649 - MINOR: stream-int: make appctx_new() take the applet in argument
4650 - MEDIUM: peers: move the appctx initialization earlier
4651 - MINOR: session: introduce session_new()
4652 - MINOR: session: make use of session_new() when creating a new session
4653 - MINOR: peers: make use of session_new() when creating a new session
4654 - MEDIUM: peers: initialize the task before the stream
4655 - MINOR: session: set the CO_FL_CONNECTED flag on the connection once ready
4656 - CLEANUP: stream.c: do not re-attach the connection to the stream
4657 - MEDIUM: stream: isolate connection-specific initialization code
4658 - MEDIUM: stream: also accept appctx as origin in stream_accept_session()
4659 - MEDIUM: peers: make use of stream_accept_session()
4660 - MEDIUM: frontend: make ->accept only return +/-1
4661 - MEDIUM: stream: return the stream upon accept()
4662 - MEDIUM: frontend: move some stream initialisation to stream_new()
4663 - MEDIUM: frontend: move the fd-specific settings to session_accept_fd()
4664 - MEDIUM: frontend: don't restrict frontend_accept() to connections anymore
4665 - MEDIUM: frontend: move some remaining stream settings to stream_new()
4666 - CLEANUP: frontend: remove one useless local variable
4667 - MEDIUM: stream: don't rely on the session's listener anymore in stream_new()
4668 - MEDIUM: lua: make use of stream_new() to create an outgoing connection
4669 - MINOR: lua: minor cleanup in hlua_socket_new()
4670 - MINOR: lua: no need for setting timeouts / conn_retries in hlua_socket_new()
4671 - MINOR: peers: no need for setting timeouts / conn_retries in peer_session_create()
4672 - CLEANUP: stream-int: swap stream-int and appctx declarations
4673 - CLEANUP: namespaces: fix protection against multiple inclusions
4674 - MINOR: session: maintain the session count stats in the session, not the stream
4675 - MEDIUM: session: adjust the connection flags before stream_new()
4676 - MINOR: stream: pass the pointer to the origin explicitly to stream_new()
4677 - CLEANUP: poll: move the conditions for waiting out of the poll functions
4678 - BUG/MEDIUM: listener: don't report an error when resuming unbound listeners
4679 - BUG/MEDIUM: init: don't limit cpu-map to the first 32 processes only
4680 - BUG/MAJOR: tcp/http: fix current_rule assignment when restarting over a ruleset
4681 - BUG/MEDIUM: stream-int: always reset si->ops when si->end is nullified
4682 - DOC: update the entities diagrams
4683 - BUG/MEDIUM: http: properly retrieve the front connection
4684 - MINOR: applet: add a new "owner" pointer in the appctx
4685 - MEDIUM: applet: make the applet not depend on a stream interface anymore
4686 - REORG: applet: move the applet definitions out of stream_interface
4687 - CLEANUP: applet: rename struct si_applet to applet
4688 - REORG: stream-int: create si_applet_ops dedicated to applets
4689 - MEDIUM: applet: add basic support for an applet run queue
4690 - MEDIUM: applet: implement a run queue for active appctx
4691 - MEDIUM: stream-int: add a new function si_applet_done()
4692 - MAJOR: applet: now call si_applet_done() instead of si_update() in I/O handlers
4693 - MAJOR: stream: use a regular ->update for all stream interfaces
4694 - MEDIUM: dumpstats: don't unregister the applet anymore
4695 - MEDIUM: applet: centralize the call to si_applet_done() in the I/O handler
4696 - MAJOR: stream: do not allocate request buffers anymore when the left side is an applet
4697 - MINOR: stream-int: add two flags to indicate an applet's wishes regarding I/O
4698 - MEDIUM: applet: make the applets only use si_applet_{cant|want|stop}_{get|put}
4699 - MEDIUM: stream-int: pause the appctx if the task is woken up
4700 - BUG/MAJOR: tcp: only call registered actions when they're registered
4701 - BUG/MEDIUM: peers: fix applet scheduling
4702 - BUG/MEDIUM: peers: recent applet changes broke peers updates scheduling
4703 - MINOR: tools: provide an rdtsc() function for time comparisons
4704 - IMPORT: lru: import simple ebtree-based LRU functions
4705 - IMPORT: hash: import xxhash-r39
4706 - MEDIUM: pattern: add a revision to all pattern expressions
4707 - MAJOR: pattern: add LRU-based cache on pattern matching
4708 - BUG/MEDIUM: http: remove content-length from chunked messages
4709 - DOC: http: update the comments about the rules for determining transfer-length
4710 - BUG/MEDIUM: http: do not restrict parsing of transfer-encoding to HTTP/1.1
4711 - BUG/MEDIUM: http: incorrect transfer-coding in the request is a bad request
4712 - BUG/MEDIUM: http: remove content-length form responses with bad transfer-encoding
4713 - MEDIUM: http: restrict the HTTP version token to 1 digit as per RFC7230
4714 - MEDIUM: http: disable support for HTTP/0.9 by default
4715 - MEDIUM: http: add option-ignore-probes to get rid of the floods of 408
4716 - BUG/MINOR: config: clear proxy->table.peers.p for disabled proxies
4717 - MEDIUM: init: don't stop proxies in parent process when exiting
4718 - MINOR: stick-table: don't attach to peers in stopped state
4719 - MEDIUM: config: initialize stick-tables after peers, not before
4720 - MEDIUM: peers: add the ability to disable a peers section
4721 - MINOR: peers: store the pointer to the signal handler
4722 - MEDIUM: peers: unregister peers that were never started
4723 - MEDIUM: config: propagate the table's process list to the peers sections
4724 - MEDIUM: init: stop any peers section not bound to the correct process
4725 - MEDIUM: config: validate that peers sections are bound to exactly one process
4726 - MAJOR: peers: allow peers section to be used with nbproc > 1
4727 - DOC: relax the peers restriction to single-process
4728 - DOC: document option http-ignore-probes
4729 - DOC: fix the comments about the meaning of msg->sol in HTTP
4730 - BUG/MEDIUM: http: wait for the exact amount of body bytes in wait_for_request_body
4731 - BUG/MAJOR: http: prevent risk of reading past end with balance url_param
4732 - MEDIUM: stream: move HTTP request body analyser before process_common
4733 - MEDIUM: http: add a new option http-buffer-request
4734 - MEDIUM: http: provide 3 fetches for the body
4735 - DOC: update the doc on the proxy protocol
4736 - BUILD: pattern: fix build warnings introduced in the LRU cache
4737 - BUG/MEDIUM: stats: properly initialize the scope before dumping stats
4738 - CLEANUP: config: fix misleading information in error message.
4739 - MINOR: config: report the number of processes using a peers section in the error case
4740 - BUG/MEDIUM: config: properly compute the default number of processes for a proxy
4741 - MEDIUM: http: add new "capture" action for http-request
4742 - BUG/MEDIUM: http: fix the http-request capture parser
4743 - BUG/MEDIUM: http: don't forward client shutdown without NOLINGER except for tunnels
4744 - BUILD/MINOR: ssl: fix build failure introduced by recent patch
4745 - BUG/MAJOR: check: fix breakage of inverted tcp-check rules
4746 - CLEANUP: checks: fix double usage of cur / current_step in tcp-checks
4747 - BUG/MEDIUM: checks: do not dereference head of a tcp-check at the end
4748 - CLEANUP: checks: simplify the loop processing of tcp-checks
4749 - BUG/MAJOR: checks: always check for end of list before proceeding
4750 - BUG/MEDIUM: checks: do not dereference a list as a tcpcheck struct
4751 - BUG/MAJOR: checks: break infinite loops when tcp-checks starts with comment
4752 - MEDIUM: http: make url_param iterate over multiple occurrences
4753 - BUG/MEDIUM: peers: apply a random reconnection timeout
4754 - MEDIUM: config: reject invalid config with name duplicates
4755 - MEDIUM: config: reject conflicts in table names
4756 - CLEANUP: proxy: make the proxy lookup functions more user-friendly
4757 - MINOR: proxy: simply ignore duplicates in proxy name lookups
4758 - MINOR: config: don't open-code proxy name lookups
4759 - MEDIUM: config: clarify the conflicting modes detection for backend rules
4760 - CLEANUP: proxy: remove now unused function findproxy_mode()
4761 - MEDIUM: stick-table: remove the now duplicate find_stktable() function
4762 - MAJOR: config: remove the deprecated reqsetbe / reqisetbe actions
4763 - MINOR: proxy: add a new function proxy_find_by_id()
4764 - MINOR: proxy: add a flag to memorize that the proxy's ID was forced
4765 - MEDIUM: proxy: add a new proxy_find_best_match() function
4766 - CLEANUP: http: explicitly reference request in http_apply_redirect_rules()
4767 - MINOR: http: prepare support for parsing redirect actions on responses
4768 - MEDIUM: http: implement http-response redirect rules
4769 - MEDIUM: http: no need to close the request on redirect if data was parsed
4770 - BUG/MEDIUM: http: fix body processing for the stats applet
4771 - BUG/MINOR: da: fix log-level comparison to emove annoying warning
4772 - CLEANUP: global: remove one ifdef USE_DEVICEATLAS
4773 - CLEANUP: da: move the converter registration to da.c
4774 - CLEANUP: da: register the config keywords in da.c
4775 - CLEANUP: adjust the envelope name in da.h to reflect the file name
4776 - CLEANUP: da: remove ifdef USE_DEVICEATLAS from da.c
4777 - BUILD: make 51D easier to build by defaulting to 51DEGREES_SRC
4778 - BUILD: fix build warning when not using 51degrees
4779 - BUILD: make DeviceAtlas easier to build by defaulting to DEVICEATLAS_SRC
4780 - BUILD: ssl: fix recent build breakage on older SSL libs
4781
Willy Tarreau8747b6d2015-03-11 23:57:23 +010047822015/03/11 : 1.6-dev1
4783 - CLEANUP: extract temporary $CFG to eliminate duplication
4784 - CLEANUP: extract temporary $BIN to eliminate duplication
4785 - CLEANUP: extract temporary $PIDFILE to eliminate duplication
4786 - CLEANUP: extract temporary $LOCKFILE to eliminate duplication
4787 - CLEANUP: extract quiet_check() to avoid duplication
4788 - BUG/MINOR: don't start haproxy on reload
4789 - DOC: Address issue where documentation is excluded due to a gitignore rule.
4790 - BUG/MEDIUM: systemd: set KillMode to 'mixed'
4791 - BUILD: fix "make install" to support spaces in the install dirs
4792 - BUG/MINOR: config: http-request replace-header arg typo
4793 - BUG: config: error in http-response replace-header number of arguments
4794 - DOC: missing track-sc* in http-request rules
4795 - BUILD: lua: missing ifdef related to SSL when enabling LUA
4796 - BUG/MEDIUM: regex: fix pcre_study error handling
4797 - MEDIUM: regex: Use pcre_study always when PCRE is used, regardless of JIT
4798 - BUG/MINOR: Fix search for -p argument in systemd wrapper.
4799 - MEDIUM: Improve signal handling in systemd wrapper.
4800 - DOC: fix typo in Unix Socket commands
4801 - BUG/MEDIUM: checks: external checks can't change server status to UP
4802 - BUG/MEDIUM: checks: segfault with external checks in a backend section
4803 - BUG/MINOR: checks: external checks shouldn't wait for timeout to return the result
4804 - BUG/MEDIUM: auth: fix segfault with http-auth and a configuration with an unknown encryption algorithm
4805 - BUG/MEDIUM: config: userlists should ensure that encrypted passwords are supported
4806 - BUG/MINOR: config: don't propagate process binding for dynamic use_backend
4807 - BUG/MINOR: log: fix request flags when keep-alive is enabled
4808 - BUG/MEDIUM: checks: fix conflicts between agent checks and ssl healthchecks
4809 - MINOR: checks: allow external checks in backend sections
4810 - MEDIUM: checks: provide environment variables to the external checks
4811 - MINOR: checks: update dynamic environment variables in external checks
4812 - DOC: checks: environment variables used by "external-check command"
4813 - BUG/MEDIUM: backend: correctly detect the domain when use_domain_only is used
4814 - MINOR: ssl: load certificates in alphabetical order
4815 - BUG/MINOR: checks: prevent http keep-alive with http-check expect
4816 - MINOR: lua: typo in an error message
4817 - MINOR: report the Lua version in -vv
4818 - MINOR: lua: add a compilation error message when compiled with an incompatible version
4819 - BUG/MEDIUM: lua: segfault when calling haproxy sample fetches from lua
4820 - BUILD: try to automatically detect the Lua library name
4821 - BUILD/CLEANUP: systemd: avoid a warning due to mixed code and declaration
4822 - BUG/MEDIUM: backend: Update hash to use unsigned int throughout
4823 - BUG/MEDIUM: connection: fix memory corruption when building a proxy v2 header
4824 - MEDIUM: connection: add new bit in Proxy Protocol V2
4825 - BUG/MINOR: ssl: rejects OCSP response without nextupdate.
4826 - BUG/MEDIUM: ssl: Fix to not serve expired OCSP responses.
4827 - BUG/MINOR: ssl: Fix OCSP resp update fails with the same certificate configured twice.
4828 - BUG/MINOR: ssl: Fix external function in order not to return a pointer on an internal trash buffer.
4829 - MINOR: add fetchs 'ssl_c_der' and 'ssl_f_der' to return DER formatted certs
4830 - MINOR: ssl: add statement to force some ssl options in global.
4831 - BUG/MINOR: ssl: correctly initialize ssl ctx for invalid certificates
4832 - BUG/MEDIUM: ssl: fix bad ssl context init can cause segfault in case of OOM.
4833 - BUG/MINOR: samples: fix unnecessary memcopy converting binary to string.
4834 - MINOR: samples: adds the bytes converter.
4835 - MINOR: samples: adds the field converter.
4836 - MINOR: samples: add the word converter.
4837 - BUG/MINOR: server: move the directive #endif to the end of file
4838 - BUG/MAJOR: buffer: check the space left is enough or not when input data in a buffer is wrapped
4839 - DOC: fix a few typos
4840 - CLEANUP: epoll: epoll_events should be allocated according to global.tune.maxpollevents
4841 - BUG/MINOR: http: fix typo: "401 Unauthorized" => "407 Unauthorized"
4842 - BUG/MINOR: parse: refer curproxy instead of proxy
4843 - BUG/MINOR: parse: check the validity of size string in a more strict way
4844 - BUILD: add new target 'make uninstall' to support uninstalling haproxy from OS
4845 - DOC: expand the docs for the provided stats.
4846 - BUG/MEDIUM: unix: do not unlink() abstract namespace sockets upon failure.
4847 - MEDIUM: ssl: Certificate Transparency support
4848 - MEDIUM: stats: proxied stats admin forms fix
4849 - MEDIUM: http: Compress HTTP responses with status codes 201,202,203 in addition to 200
4850 - BUG/MEDIUM: connection: sanitize PPv2 header length before parsing address information
4851 - MAJOR: namespace: add Linux network namespace support
4852 - MINOR: systemd: Check configuration before start
4853 - BUILD: ssl: handle boringssl in openssl version detection
4854 - BUILD: ssl: disable OCSP when using boringssl
4855 - BUILD: ssl: don't call get_rfc2409_prime when using boringssl
4856 - MINOR: ssl: don't use boringssl's cipher_list
4857 - BUILD: ssl: use OPENSSL_NO_OCSP to detect OCSP support
4858 - MINOR: stats: fix minor typo in HTML page
4859 - MINOR: Also accept SIGHUP/SIGTERM in systemd-wrapper
4860 - MEDIUM: Add support for configurable TLS ticket keys
4861 - DOC: Document the new tls-ticket-keys bind keyword
4862 - DOC: clearly state that the "show sess" output format is not fixed
4863 - MINOR: stats: fix minor typo fix in stats_dump_errors_to_buffer()
4864 - DOC: httplog does not support 'no'
4865 - BUG/MEDIUM: ssl: Fix a memory leak in DHE key exchange
4866 - MINOR: ssl: use SSL_get_ciphers() instead of directly accessing the cipher list.
4867 - BUG/MEDIUM: Consistently use 'check' in process_chk
4868 - MEDIUM: Add external check
4869 - BUG/MEDIUM: Do not set agent health to zero if server is disabled in config
4870 - MEDIUM/BUG: Only explicitly report "DOWN (agent)" if the agent health is zero
4871 - MEDIUM: Remove connect_chk
4872 - MEDIUM: Refactor init_check and move to checks.c
4873 - MEDIUM: Add free_check() helper
4874 - MEDIUM: Move proto and addr fields struct check
4875 - MEDIUM: Attach tcpcheck_rules to check
4876 - MEDIUM: Add parsing of mailers section
4877 - MEDIUM: Allow configuration of email alerts
4878 - MEDIUM: Support sending email alerts
4879 - DOC: Document email alerts
4880 - MINOR: Remove trailing '.' from email alert messages
4881 - MEDIUM: Allow suppression of email alerts by log level
4882 - BUG/MEDIUM: Do not consider an agent check as failed on L7 error
4883 - MINOR: deinit: fix memory leak
4884 - MINOR: http: export the function 'smp_fetch_base32'
4885 - BUG/MEDIUM: http: tarpit timeout is reset
4886 - MINOR: sample: add "json" converter
4887 - BUG/MEDIUM: pattern: don't load more than once a pattern list.
4888 - MINOR: map/acl/dumpstats: remove the "Done." message
4889 - BUG/MAJOR: ns: HAProxy segfault if the cli_conn is not from a network connection
4890 - BUG/MINOR: pattern: error message missing
4891 - BUG/MEDIUM: pattern: some entries are not deleted with case insensitive match
4892 - BUG/MINOR: ARG6 and ARG7 don't fit in a 32 bits word
4893 - MAJOR: poll: only rely on wake_expired_tasks() to compute the wait delay
4894 - MEDIUM: task: call session analyzers if the task is woken by a message.
4895 - MEDIUM: protocol: automatically pick the proto associated to the connection.
4896 - MEDIUM: channel: wake up any request analyzer on response activity
4897 - MINOR: converters: add a "void *private" argument to converters
4898 - MINOR: converters: give the session pointer as converter argument
4899 - MINOR: sample: add private argument to the struct sample_fetch
4900 - MINOR: global: export function and permits to not resolve DNS names
4901 - MINOR: sample: add function for browsing samples.
4902 - MINOR: global: export many symbols.
4903 - MINOR: includes: fix a lot of missing or useless includes
4904 - MEDIUM: tcp: add register keyword system.
4905 - MEDIUM: buffer: make bo_putblk/bo_putstr/bo_putchk return the number of bytes copied.
4906 - MEDIUM: http: change the code returned by the response processing rule functions
4907 - MEDIUM: http/tcp: permit to resume http and tcp custom actions
4908 - MINOR: channel: functions to get data from a buffer without copy
4909 - MEDIUM: lua: lua integration in the build and init system.
4910 - MINOR: lua: add ease functions
4911 - MINOR: lua: add runtime execution context
4912 - MEDIUM: lua: "com" signals
4913 - MINOR: lua: add the configuration directive "lua-load"
4914 - MINOR: lua: core: create "core" class and object
4915 - MINOR: lua: post initialisation bindings
4916 - MEDIUM: lua: add coroutine as tasks.
4917 - MINOR: lua: add sample and args type converters
4918 - MINOR: lua: txn: create class TXN associated with the transaction.
4919 - MINOR: lua: add shared context in the lua stack
4920 - MINOR: lua: txn: import existing sample-fetches in the class TXN
4921 - MINOR: lua: txn: add lua function in TXN that returns an array of http headers
4922 - MINOR: lua: register and execute sample-fetches in LUA
4923 - MINOR: lua: register and execute converters in LUA
4924 - MINOR: lua: add bindings for tcp and http actions
4925 - MINOR: lua: core: add sleep functions
4926 - MEDIUM: lua: socket: add "socket" class for TCP I/O
4927 - MINOR: lua: core: pattern and acl manipulation
4928 - MINOR: lua: channel: add "channel" class
4929 - MINOR: lua: txn: object "txn" provides two objects "channel"
4930 - MINOR: lua: core: can set the nice of the current task
4931 - MINOR: lua: core: can yield an execution stack
4932 - MINOR: lua: txn: add binding for closing the client connection.
4933 - MEDIUM: lua: Lua initialisation "on demand"
4934 - BUG/MAJOR: lua: send function fails and return bad bytes
4935 - MINOR: remove unused declaration.
4936 - MINOR: lua: remove some #define
4937 - MINOR: lua: use bitfield and macro in place of integer and enum
4938 - MINOR: lua: set skeleton for Lua execution expiration
4939 - MEDIUM: lua: each yielding function returns a wake up time.
4940 - MINOR: lua: adds "forced yield" flag
4941 - MEDIUM: lua: interrupt the Lua execution for running other process
4942 - MEDIUM: lua: change the sleep function core
4943 - BUG/MEDIUM: lua: the execution timeout is ignored in yield case
4944 - DOC: lua: Lua configuration documentation
4945 - MINOR: lua: add the struct session in the lua channel struct
4946 - BUG/MINOR: lua: set buffer if it is nnot avalaible.
4947 - BUG/MEDIUM: lua: reset flags before resuming execution
4948 - BUG/MEDIUM: lua: fix infinite loop about channel
4949 - BUG/MEDIUM: lua: the Lua process is not waked up after sending data on requests side
4950 - BUG/MEDIUM: lua: many errors when we try to send data with the channel API
4951 - MEDIUM: lua: use the Lua-5.3 version of the library
4952 - BUG/MAJOR: lua: some function are not yieldable, the forced yield causes errors
4953 - BUG/MEDIUM: lua: can't handle the response bytes
4954 - BUG/MEDIUM: lua: segfault with buffer_replace2
4955 - BUG/MINOR: lua: check buffers before initializing socket
4956 - BUG/MINOR: log: segfault if there are no proxy reference
4957 - BUG/MEDIUM: lua: sockets don't have buffer to write data
4958 - BUG/MEDIUM: lua: cannot connect socket
4959 - BUG/MINOR: lua: sockets receive behavior doesn't follows the specs
4960 - BUG/BUILD: lua: The strict Lua 5.3 version check is not done.
4961 - BUG/MEDIUM: buffer: one byte miss in buffer free space check
4962 - MEDIUM: lua: make the functions hlua_gethlua() and hlua_sethlua() faster
4963 - MINOR: replace the Core object by a simple model.
4964 - MEDIUM: lua: change the objects configuration
4965 - MEDIUM: lua: create a namespace for the fetches
4966 - MINOR: converters: add function to browse converters
4967 - MINOR: lua: wrapper for converters
4968 - MINOR: lua: replace function (req|get)_channel by a variable
4969 - MINOR: lua: fetches and converters can return an empty string in place of nil
4970 - DOC: lua api
4971 - BUG/MEDIUM: sample: fix random number upper-bound
4972 - BUG/MINOR: stats:Fix incorrect printf type.
4973 - BUG/MAJOR: session: revert all the crappy client-side timeout changes
4974 - BUG/MINOR: logs: properly initialize and count log sockets
4975 - BUG/MEDIUM: http: fetch "base" is not compatible with set-header
4976 - BUG/MINOR: counters: do not untrack counters before logging
4977 - BUG/MAJOR: sample: correctly reinitialize sample fetch context before calling sample_process()
4978 - MINOR: stick-table: make stktable_fetch_key() indicate why it failed
4979 - BUG/MEDIUM: counters: fix track-sc* to wait on unstable contents
4980 - BUILD: remove TODO from the spec file and add README
4981 - MINOR: log: make MAX_SYSLOG_LEN overridable at build time
4982 - MEDIUM: log: support a user-configurable max log line length
4983 - DOC: provide an example of how to use ssl_c_sha1
4984 - BUILD: checks: external checker needs signal.h
4985 - BUILD: checks: kill a minor warning on Solaris in external checks
4986 - BUILD: http: fix isdigit & isspace warnings on Solaris
4987 - BUG/MINOR: listener: set the listener's fd to -1 after deletion
4988 - BUG/MEDIUM: unix: failed abstract socket binding is retryable
4989 - MEDIUM: listener: implement a per-protocol pause() function
4990 - MEDIUM: listener: support rebinding during resume()
4991 - BUG/MEDIUM: unix: completely unbind abstract sockets during a pause()
4992 - DOC: explicitly mention the limits of abstract namespace sockets
4993 - DOC: minor fix on {sc,src}_kbytes_{in,out}
4994 - DOC: fix alphabetical sort of converters
4995 - MEDIUM: stick-table: implement lookup from a sample fetch
4996 - MEDIUM: stick-table: add new converters to fetch table data
4997 - MINOR: samples: add two converters for the date format
4998 - BUG/MAJOR: http: correctly rewind the request body after start of forwarding
4999 - DOC: remove references to CPU=native in the README
5000 - DOC: mention that "compression offload" is ignored in defaults section
5001 - DOC: mention that Squid correctly responds 400 to PPv2 header
5002 - BUILD: fix dependencies between config and compat.h
5003 - MINOR: session: export the function 'smp_fetch_sc_stkctr'
5004 - MEDIUM: stick-table: make it easier to register extra data types
5005 - BUG/MINOR: http: base32+src should use the big endian version of base32
5006 - MINOR: sample: allow IP address to cast to binary
5007 - MINOR: sample: add new converters to hash input
5008 - MINOR: sample: allow integers to cast to binary
5009 - BUILD: report commit ID in git versions as well
5010 - CLEANUP: session: move the stick counters declarations to stick_table.h
5011 - MEDIUM: http: add the track-sc* actions to http-request rules
5012 - BUG/MEDIUM: connection: fix proxy v2 header again!
5013 - BUG/MAJOR: tcp: fix a possible busy spinning loop in content track-sc*
5014 - OPTIM/MINOR: proxy: reduce struct proxy by 48 bytes on 64-bit archs
5015 - MINOR: log: add a new field "%lc" to implement a per-frontend log counter
5016 - BUG/MEDIUM: http: fix inverted condition in pat_match_meth()
5017 - BUG/MEDIUM: http: fix improper parsing of HTTP methods for use with ACLs
5018 - BUG/MINOR: pattern: remove useless allocation of unused trash in pat_parse_reg()
5019 - BUG/MEDIUM: acl: correctly compute the output type when a converter is used
5020 - CLEANUP: acl: cleanup some of the redundancy and spaghetti after last fix
5021 - BUG/CRITICAL: http: don't update msg->sov once data start to leave the buffer
5022 - MEDIUM: http: enable header manipulation for 101 responses
5023 - BUG/MEDIUM: config: propagate frontend to backend process binding again.
5024 - MEDIUM: config: properly propagate process binding between proxies
5025 - MEDIUM: config: make the frontends automatically bind to the listeners' processes
5026 - MEDIUM: config: compute the exact bind-process before listener's maxaccept
5027 - MEDIUM: config: only warn if stats are attached to multi-process bind directives
5028 - MEDIUM: config: report it when tcp-request rules are misplaced
5029 - DOC: indicate in the doc that track-sc* can wait if data are missing
5030 - MINOR: config: detect the case where a tcp-request content rule has no inspect-delay
5031 - MEDIUM: systemd-wrapper: support multiple executable versions and names
5032 - BUG/MEDIUM: remove debugging code from systemd-wrapper
5033 - BUG/MEDIUM: http: adjust close mode when switching to backend
5034 - BUG/MINOR: config: don't propagate process binding on fatal errors.
5035 - BUG/MEDIUM: check: rule-less tcp-check must detect connect failures
5036 - BUG/MINOR: tcp-check: report the correct failed step in the status
5037 - DOC: indicate that weight zero is reported as DRAIN
5038 - BUG/MEDIUM: config: avoid skipping disabled proxies
5039 - BUG/MINOR: config: do not accept more track-sc than configured
5040 - BUG/MEDIUM: backend: fix URI hash when a query string is present
5041 - BUG/MEDIUM: http: don't dump debug headers on MSG_ERROR
5042 - BUG/MAJOR: cli: explicitly call cli_release_handler() upon error
5043 - BUG/MEDIUM: tcp: fix outgoing polling based on proxy protocol
5044 - BUILD/MINOR: ssl: de-constify "ciphers" to avoid a warning on openssl-0.9.8
5045 - BUG/MEDIUM: tcp: don't use SO_ORIGINAL_DST on non-AF_INET sockets
5046 - BUG/BUILD: revert accidental change in the makefile from latest SSL fix
5047 - BUG/MEDIUM: ssl: force a full GC in case of memory shortage
5048 - MEDIUM: ssl: add support for smaller SSL records
5049 - MINOR: session: release a few other pools when stopping
5050 - MINOR: task: release the task pool when stopping
5051 - BUG/MINOR: config: don't inherit the default balance algorithm in frontends
5052 - BUG/MAJOR: frontend: initialize capture pointers earlier
5053 - BUG/MINOR: stats: correctly set the request/response analysers
5054 - MAJOR: polling: centralize calls to I/O callbacks
5055 - DOC: fix typo in the body parser documentation for msg.sov
5056 - BUG/MINOR: peers: the buffer size is global.tune.bufsize, not trash.size
5057 - MINOR: sample: add a few basic internal fetches (nbproc, proc, stopping)
5058 - DEBUG: pools: apply poisonning on every allocated pool
5059 - BUG/MAJOR: sessions: unlink session from list on out of memory
5060 - BUG/MEDIUM: patterns: previous fix was incomplete
5061 - BUG/MEDIUM: payload: ensure that a request channel is available
5062 - BUG/MINOR: tcp-check: don't condition data polling on check type
5063 - BUG/MEDIUM: tcp-check: don't rely on random memory contents
5064 - BUG/MEDIUM: tcp-checks: disable quick-ack unless next rule is an expect
5065 - BUG/MINOR: config: fix typo in condition when propagating process binding
5066 - BUG/MEDIUM: config: do not propagate processes between stopped processes
5067 - BUG/MAJOR: stream-int: properly check the memory allocation return
5068 - BUG/MEDIUM: memory: fix freeing logic in pool_gc2()
5069 - BUG/MAJOR: namespaces: conn->target is not necessarily a server
5070 - BUG/MEDIUM: compression: correctly report zlib_mem
5071 - CLEANUP: lists: remove dead code
5072 - CLEANUP: memory: remove dead code
5073 - CLEANUP: memory: replace macros pool_alloc2/pool_free2 with functions
5074 - MINOR: memory: cut pool allocator in 3 layers
5075 - MEDIUM: memory: improve pool_refill_alloc() to pass a refill count
5076 - MINOR: stream-int: retrieve session pointer from stream-int
5077 - MINOR: buffer: reset a buffer in b_reset() and not channel_init()
5078 - MEDIUM: buffer: use b_alloc() to allocate and initialize a buffer
5079 - MINOR: buffer: move buffer initialization after channel initialization
5080 - MINOR: buffer: only use b_free to release buffers
5081 - MEDIUM: buffer: always assign a dummy empty buffer to channels
5082 - MEDIUM: buffer: add a new buf_wanted dummy buffer to report failed allocations
5083 - MEDIUM: channel: do not report full when buf_empty is present on a channel
5084 - MINOR: session: group buffer allocations together
5085 - MINOR: buffer: implement b_alloc_fast()
5086 - MEDIUM: buffer: implement b_alloc_margin()
5087 - MEDIUM: session: implement a basic atomic buffer allocator
5088 - MAJOR: session: implement a wait-queue for sessions who need a buffer
5089 - MAJOR: session: only allocate buffers when needed
5090 - MINOR: stats: report a "waiting" flags for sessions
5091 - MAJOR: session: only wake up as many sessions as available buffers permit
5092 - MINOR: config: implement global setting tune.buffers.reserve
5093 - MINOR: config: implement global setting tune.buffers.limit
5094 - MEDIUM: channel: implement a zero-copy buffer transfer
5095 - MEDIUM: stream-int: support splicing from applets
5096 - OPTIM: stream-int: try to send pending spliced data
5097 - CLEANUP: session: remove session_from_task()
5098 - DOC: add missing entry for log-format and clarify the text
5099 - MINOR: logs: add a new per-proxy "log-tag" directive
5100 - BUG/MEDIUM: http: fix header removal when previous header ends with pure LF
5101 - MINOR: config: extend the default max hostname length to 64 and beyond
5102 - BUG/MEDIUM: channel: fix possible integer overflow on reserved size computation
5103 - BUG/MINOR: channel: compare to_forward with buf->i, not buf->size
5104 - MINOR: channel: add channel_in_transit()
5105 - MEDIUM: channel: make buffer_reserved() use channel_in_transit()
5106 - MEDIUM: channel: make bi_avail() use channel_in_transit()
5107 - BUG/MEDIUM: channel: don't schedule data in transit for leaving until connected
5108 - CLEANUP: channel: rename channel_reserved -> channel_is_rewritable
5109 - MINOR: channel: rename channel_full() to !channel_may_recv()
5110 - MINOR: channel: rename buffer_reserved() to channel_reserved()
5111 - MINOR: channel: rename buffer_max_len() to channel_recv_limit()
5112 - MINOR: channel: rename bi_avail() to channel_recv_max()
5113 - MINOR: channel: rename bi_erase() to channel_truncate()
5114 - BUG/MAJOR: log: don't try to emit a log if no logger is set
5115 - MINOR: tools: add new round_2dig() function to round integers
5116 - MINOR: global: always export some SSL-specific metrics
5117 - MINOR: global: report information about the cost of SSL connections
5118 - MAJOR: init: automatically set maxconn and/or maxsslconn when possible
5119 - MINOR: http: add a new fetch "query" to extract the request's query string
5120 - MINOR: hash: add new function hash_crc32
5121 - MINOR: samples: provide a "crc32" converter
5122 - MEDIUM: backend: add the crc32 hash algorithm for load balancing
5123 - BUG/MINOR: args: add missing entry for ARGT_MAP in arg_type_names
5124 - BUG/MEDIUM: http: make http-request set-header compute the string before removal
5125 - MEDIUM: args: use #define to specify the number of bits used by arg types and counts
5126 - MEDIUM: args: increase arg type to 5 bits and limit arg count to 5
5127 - MINOR: args: add type-specific flags for each arg in a list
5128 - MINOR: args: implement a new arg type for regex : ARGT_REG
5129 - MEDIUM: regex: add support for passing regex flags to regex_exec_match()
5130 - MEDIUM: samples: add a regsub converter to perform regex-based transformations
5131 - BUG/MINOR: sample: fix case sensitivity for the regsub converter
5132 - MEDIUM: http: implement http-request set-{method,path,query,uri}
5133 - DOC: fix missing closing brackend on regsub
5134 - MEDIUM: samples: provide basic arithmetic and bitwise operators
5135 - MEDIUM: init: continue to enforce SYSTEM_MAXCONN with auto settings if set
5136 - BUG/MINOR: http: fix incorrect header value offset in replace-hdr/replace-value
5137 - BUG/MINOR: http: abort request processing on filter failure
5138 - MEDIUM: tcp: implement tcp-ut bind option to set TCP_USER_TIMEOUT
5139 - MINOR: ssl/server: add the "no-ssl-reuse" server option
5140 - BUG/MAJOR: peers: initialize s->buffer_wait when creating the session
5141 - MINOR: http: add a new function to iterate over each header line
5142 - MINOR: http: add the new sample fetches req.hdr_names and res.hdr_names
5143 - MEDIUM: task: always ensure that the run queue is consistent
5144 - BUILD: Makefile: add -Wdeclaration-after-statement
5145 - BUILD/CLEANUP: ssl: avoid a warning due to mixed code and declaration
5146 - BUILD/CLEANUP: config: silent 3 warnings about mixed declarations with code
5147 - MEDIUM: protocol: use a family array to index the protocol handlers
5148 - BUILD: lua: cleanup many mixed occurrences declarations & code
5149 - BUG/MEDIUM: task: fix recently introduced scheduler skew
5150 - BUG/MINOR: lua: report the correct function name in an error message
5151 - BUG/MAJOR: http: fix stats regression consecutive to HTTP_RULE_RES_YIELD
5152 - Revert "BUG/MEDIUM: lua: can't handle the response bytes"
5153 - MINOR: lua: convert IP addresses to type string
5154 - CLEANUP: lua: use the same function names in C and Lua
5155 - REORG/MAJOR: move session's req and resp channels back into the session
5156 - CLEANUP: remove now unused channel pool
5157 - REORG/MEDIUM: stream-int: introduce si_ic/si_oc to access channels
5158 - MEDIUM: stream-int: add a flag indicating which side the SI is on
5159 - MAJOR: stream-int: only rely on SI_FL_ISBACK to find the requested channel
5160 - MEDIUM: stream-interface: remove now unused pointers to channels
5161 - MEDIUM: stream-int: make si_sess() use the stream int's side
5162 - MEDIUM: stream-int: use si_task() to retrieve the task from the stream int
5163 - MEDIUM: stream-int: remove any reference to the owner
5164 - CLEANUP: stream-int: add si_ib/si_ob to dereference the buffers
5165 - CLEANUP: stream-int: add si_opposite() to find the other stream interface
5166 - REORG/MEDIUM: channel: only use chn_prod / chn_cons to find stream-interfaces
5167 - MEDIUM: channel: add a new flag "CF_ISRESP" for the response channel
5168 - MAJOR: channel: only rely on the new CF_ISRESP flag to find the SI
5169 - MEDIUM: channel: remove now unused ->prod and ->cons pointers
5170 - CLEANUP: session: simplify references to chn_{prod,cons}(&s->{req,res})
5171 - CLEANUP: session: use local variables to access channels / stream ints
5172 - CLEANUP: session: don't needlessly pass a pointer to the stream-int
5173 - CLEANUP: session: don't use si_{ic,oc} when we know the session.
5174 - CLEANUP: stream-int: limit usage of si_ic/si_oc
5175 - CLEANUP: lua: limit usage of si_ic/si_oc
5176 - MINOR: channel: add chn_sess() helper to retrieve session from channel
5177 - MEDIUM: session: simplify receive buffer allocator to only use the channel
5178 - MEDIUM: lua: use CF_ISRESP to detect the channel's side
5179 - CLEANUP: lua: remove the session pointer from hlua_channel
5180 - CLEANUP: lua: hlua_channel_new() doesn't need the pointer to the session anymore
5181 - MEDIUM: lua: remove struct hlua_channel
5182 - MEDIUM: lua: remove hlua_sample_fetch
5183
Willy Tarreau15480d72014-06-19 21:10:58 +020051842014/06/19 : 1.6-dev0
5185 - exact copy of 1.5.0
5186
Willy Tarreau9229f122014-06-19 21:01:06 +020051872014/06/19 : 1.5.0
5188 - MEDIUM: ssl: ignored file names ending as '.issuer' or '.ocsp'.
5189 - MEDIUM: ssl: basic OCSP stapling support.
5190 - MINOR: ssl/cli: Fix unapropriate comment in code on 'set ssl ocsp-response'
5191 - MEDIUM: ssl: add 300s supported time skew on OCSP response update.
5192 - MINOR: checks: mysql-check: Add support for v4.1+ authentication
5193 - MEDIUM: ssl: Add the option to use standardized DH parameters >= 1024 bits
5194 - MEDIUM: ssl: fix detection of ephemeral diffie-hellman key exchange by using the cipher description.
5195 - MEDIUM: http: add actions "replace-header" and "replace-values" in http-req/resp
5196 - MEDIUM: Break out check establishment into connect_chk()
5197 - MEDIUM: Add port_to_str helper
5198 - BUG/MEDIUM: fix ignored values for half-closed timeouts (client-fin and server-fin) in defaults section.
5199 - BUG/MEDIUM: Fix unhandled connections problem with systemd daemon mode and SO_REUSEPORT.
5200 - MINOR: regex: fix a little configuration memory leak.
5201 - MINOR: regex: Create JIT compatible function that return match strings
5202 - MEDIUM: regex: replace all standard regex function by own functions
5203 - MEDIUM: regex: Remove null terminated strings.
5204 - MINOR: regex: Use native PCRE API.
5205 - MINOR: missing regex.h include
5206 - DOC: Add Exim as Proxy Protocol implementer.
5207 - BUILD: don't use type "uint" which is not portable
5208 - BUILD: stats: workaround stupid and bogus -Werror=format-security behaviour
5209 - BUG/MEDIUM: http: clear CF_READ_NOEXP when preparing a new transaction
5210 - CLEANUP: http: don't clear CF_READ_NOEXP twice
5211 - DOC: fix proxy protocol v2 decoder example
5212 - DOC: fix remaining occurrences of "pattern extraction"
5213 - MINOR: log: allow the HTTP status code to be logged even in TCP frontends
5214 - MINOR: logs: don't limit HTTP header captures to HTTP frontends
5215 - MINOR: sample: improve sample_fetch_string() to report partial contents
5216 - MINOR: capture: extend the captures to support non-header keys
5217 - MINOR: tcp: prepare support for the "capture" action
5218 - MEDIUM: tcp: add a new tcp-request capture directive
5219 - MEDIUM: session: allow shorter retry delay if timeout connect is small
5220 - MEDIUM: session: don't apply the retry delay when redispatching
5221 - MEDIUM: session: redispatch earlier when possible
5222 - MINOR: config: warn when tcp-check rules are used without option tcp-check
5223 - BUG/MINOR: connection: make proxy protocol v1 support the UNKNOWN protocol
5224 - DOC: proxy protocol example parser was still wrong
5225 - DOC: minor updates to the proxy protocol doc
5226 - CLEANUP: connection: merge proxy proto v2 header and address block
5227 - MEDIUM: connection: add support for proxy protocol v2 in accept-proxy
5228 - MINOR: tools: add new functions to quote-encode strings
5229 - DOC: clarify the CSV format
5230 - MEDIUM: stats: report the last check and last agent's output on the CSV status
5231 - MINOR: freq_ctr: introduce a new averaging method
5232 - MEDIUM: session: maintain per-backend and per-server time statistics
5233 - MEDIUM: stats: report per-backend and per-server time stats in HTML and CSV outputs
5234 - BUG/MINOR: http: fix typos in previous patch
5235 - DOC: remove the ultra-obsolete TODO file
5236 - DOC: update roadmap
5237 - DOC: minor updates to the README
5238 - DOC: mention the maxconn limitations with the select poller
5239 - DOC: commit a few old design thoughts files
5240
Willy Tarreau2e858402014-05-28 17:50:53 +020052412014/05/28 : 1.5-dev26
5242 - BUG/MEDIUM: polling: fix possible CPU hogging of worker processes after receiving SIGUSR1.
5243 - BUG/MINOR: stats: fix a typo on a closing tag for a server tracking another one
5244 - OPTIM: stats: avoid the calculation of a useless link on tracking servers in maintenance
5245 - MINOR: fix a few memory usage errors
5246 - CONTRIB: halog: Filter input lines by date and time through timestamp
5247 - MINOR: ssl: SSL_CTX_set_options() and SSL_CTX_set_mode() take a long, not an int
5248 - BUG/MEDIUM: regex: fix risk of buffer overrun in exp_replace()
5249 - MINOR: acl: set "str" as default match for strings
5250 - DOC: Add some precisions about acl default matching method
5251 - MEDIUM: acl: strenghten the option parser to report invalid options
5252 - BUG/MEDIUM: config: a stats-less config crashes in 1.5-dev25
5253 - BUG/MINOR: checks: tcp-check must not stop on '\0' for binary checks
5254 - MINOR: stats: improve alignment of color codes to save one line of header
5255 - MINOR: checks: simplify and improve reporting of state changes when using log-health-checks
5256 - MINOR: server: remove the SRV_DRAIN flag which can always be deduced
5257 - MINOR: server: use functions to detect state changes and to update them
5258 - MINOR: server: create srv_was_usable() from srv_is_usable() and use a pointer
5259 - BUG/MINOR: stats: do not report "100%" in the thottle column when server is draining
5260 - BUG/MAJOR: config: don't free valid regex memory
5261 - BUG/MEDIUM: session: don't clear CF_READ_NOEXP if analysers are not called
5262 - BUG/MINOR: stats: tracking servers may incorrectly report an inherited DRAIN status
5263 - MEDIUM: proxy: make timeout parser a bit stricter
5264 - REORG/MEDIUM: server: split server state and flags in two different variables
5265 - REORG/MEDIUM: server: move the maintenance bits out of the server state
5266 - MAJOR: server: use states instead of flags to store the server state
5267 - REORG: checks: put the functions in the appropriate files !
5268 - MEDIUM: server: properly support and propagate the maintenance status
5269 - MEDIUM: server: allow multi-level server tracking
5270 - CLEANUP: checks: rename the server_status_printf function
5271 - MEDIUM: checks: simplify server up/down/nolb transitions
5272 - MAJOR: checks: move health checks changes to set_server_check_status()
5273 - MINOR: server: make the status reporting function support a reason
5274 - MINOR: checks: simplify health check reporting functions
5275 - MINOR: server: implement srv_set_stopped()
5276 - MINOR: server: implement srv_set_running()
5277 - MINOR: server: implement srv_set_stopping()
5278 - MEDIUM: checks: simplify failure notification using srv_set_stopped()
5279 - MEDIUM: checks: simplify success notification using srv_set_running()
5280 - MEDIUM: checks: simplify stopping mode notification using srv_set_stopping()
5281 - MEDIUM: stats: report a server's own state instead of the tracked one's
5282 - MINOR: server: make use of srv_is_usable() instead of checking eweight
5283 - MAJOR: checks: add support for a new "drain" administrative mode
5284 - MINOR: stats: use the admin flags for soft enable/disable/stop/start on the web page
5285 - MEDIUM: stats: introduce new actions to simplify admin status management
5286 - MINOR: cli: introduce a new "set server" command
5287 - MINOR: stats: report a distinct output for DOWN caused by agent
5288 - MINOR: checks: support specific check reporting for the agent
5289 - MINOR: checks: support a neutral check result
5290 - BUG/MINOR: cli: "agent" was missing from the "enable"/"disable" help message
5291 - MEDIUM: cli: add support for enabling/disabling health checks.
5292 - MEDIUM: stats: report down caused by agent prior to reporting up
5293 - MAJOR: agent: rework the response processing and support additional actions
5294 - MINOR: stats: improve the stats web page to support more actions
5295 - CONTRIB: halog: avoid calling time/localtime/mktime for each line
5296 - DOC: document the workarouds for Google Chrome's bogus pre-connect
5297 - MINOR: stats: report SSL key computations per second
5298 - MINOR: stats: add counters for SSL cache lookups and misses
5299
Willy Tarreaua3393952014-05-10 15:16:43 +020053002014/05/10 : 1.5-dev25
5301 - MEDIUM: connection: Implement and extented PROXY Protocol V2
5302 - MINOR: ssl: clean unused ACLs declarations
5303 - MINOR: ssl: adds fetchs and ACLs for ssl back connection.
5304 - MINOR: ssl: merge client's and frontend's certificate functions.
5305 - MINOR: ssl: adds ssl_f_sha1 fetch to return frontend's certificate fingerprint
5306 - MINOR: ssl: adds sample converter base64 for binary type.
5307 - MINOR: ssl: convert to binary ssl_fc_unique_id and ssl_bc_unique_id.
5308 - BUG/MAJOR: ssl: Fallback to private session cache if current lock mode is not supported.
5309 - MAJOR: ssl: Change default locks on ssl session cache.
5310 - BUG/MINOR: chunk: Fix function chunk_strcmp and chunk_strcasecmp match a substring.
5311 - MINOR: ssl: add global statement tune.ssl.force-private-cache.
5312 - MINOR: ssl: remove fallback to SSL session private cache if lock init fails.
5313 - BUG/MEDIUM: patterns: last fix was still not enough
5314 - MINOR: http: export the smp_fetch_cookie function
5315 - MINOR: http: generic pointer to rule argument
5316 - BUG/MEDIUM: pattern: a typo breaks automatic acl/map numbering
5317 - BUG/MAJOR: patterns: -i and -n are ignored for inlined patterns
5318 - BUG/MINOR: proxy: unsafe initialization of HTTP transaction when switching from TCP frontend
5319 - BUG/MINOR: http: log 407 in case of proxy auth
5320 - MINOR: http: rely on the message body parser to send 100-continue
5321 - MEDIUM: http: move reqadd after execution of http_request redirect
5322 - MEDIUM: http: jump to dedicated labels after http-request processing
5323 - BUG/MINOR: http: block rules forgot to increment the denied_req counter
5324 - BUG/MINOR: http: block rules forgot to increment the session's request counter
5325 - MEDIUM: http: move Connection header processing earlier
5326 - MEDIUM: http: remove even more of the spaghetti in the request path
5327 - MINOR: http: silently support the "block" action for http-request
5328 - CLEANUP: proxy: rename "block_cond" to "block_rules"
5329 - MEDIUM: http: emulate "block" rules using "http-request" rules
5330 - MINOR: http: remove the now unused loop over "block" rules
5331 - MEDIUM: http: factorize the "auth" action of http-request and stats
5332 - MEDIUM: http: make http-request rules processing return a verdict instead of a rule
5333 - MINOR: config: add minimum support for emitting warnings only once
5334 - MEDIUM: config: inform the user about the deprecatedness of "block" rules
5335 - MEDIUM: config: inform the user that "reqsetbe" is deprecated
5336 - MEDIUM: config: inform the user only once that "redispatch" is deprecated
5337 - MEDIUM: config: warn that '{cli,con,srv}timeout' are deprecated
5338 - BUG/MINOR: auth: fix wrong return type in pat_match_auth()
5339 - BUILD: config: remove a warning with clang
5340 - BUG/MAJOR: http: connection setup may stall on balance url_param
5341 - BUG/MEDIUM: http/session: disable client-side expiration only after body
5342 - BUG/MEDIUM: http: correctly report request body timeouts
5343 - BUG/MEDIUM: http: disable server-side expiration until client has sent the body
5344 - MEDIUM: listener: make the accept function more robust against pauses
5345 - BUILD: syscalls: remove improper inline statement in front of syscalls
5346 - BUILD: ssl: SSL_CTX_set_msg_callback() needs openssl >= 0.9.7
5347 - BUG/MAJOR: session: recover the correct connection pointer in half-initialized sessions
5348 - DOC: add some explanation on the shared cache build options in the readme.
5349 - MEDIUM: proxy: only adjust the backend's bind-process when already set
5350 - MEDIUM: config: limit nbproc to the machine's word size
5351 - MEDIUM: config: check the bind-process settings according to nbproc
5352 - MEDIUM: listener: parse the new "process" bind keyword
5353 - MEDIUM: listener: inherit the process mask from the proxy
5354 - MAJOR: listener: only start listeners bound to the same processes
5355 - MINOR: config: only report a warning when stats sockets are bound to more than 1 process
5356 - CLEANUP: config: set the maxaccept value for peers listeners earlier
5357 - BUG/MINOR: backend: only match IPv4 addresses with RDP cookies
5358 - BUG/MINOR: checks: correctly configure the address family and protocol
5359 - MINOR: tools: split is_addr() and is_inet_addr()
5360 - MINOR: protocols: use is_inet_addr() when only INET addresses are desired
5361 - MEDIUM: unix: add preliminary support for connecting to servers over UNIX sockets
5362 - MEDIUM: checks: only complain about the missing port when the check uses TCP
5363 - MEDIUM: unix: implement support for Linux abstract namespace sockets
5364 - DOC: map_beg was missing from the table of map_* converters
5365 - DOC: ebtree: indicate that prefix insertion/lookup may be used with strings
5366 - MEDIUM: pattern: use ebtree's longest match to index/lookup string beginning
5367 - BUILD: remove the obsolete BSD and OSX makefiles
5368 - MEDIUM: unix: avoid a double connect probe when no data are sent
5369 - DOC: stop referencing the slow git repository in the README
5370 - BUILD: only build the systemd wrapper on Linux 2.6 and above
5371 - DOC: update roadmap with completed tasks
5372 - MEDIUM: session: implement half-closed timeouts (client-fin and server-fin)
5373
Willy Tarreau8860dcd2014-04-26 00:08:14 +020053742014/04/26 : 1.5-dev24
5375 - MINOR: pattern: find element in a reference
5376 - MEDIUM: http: ACL and MAP updates through http-(request|response) rules
5377 - MEDIUM: ssl: explicitly log failed handshakes after a heartbeat
5378 - DOC: Full section dedicated to the converters
5379 - MEDIUM: http: register http-request and http-response keywords
5380 - BUG/MINOR: compression: correctly report incoming byte count
5381 - BUG/MINOR: http: don't report server aborts as client aborts
5382 - BUG/MEDIUM: channel: bi_putblk() must not wrap before the end of buffer
5383 - CLEANUP: buffers: remove unused function buffer_contig_space_with_res()
5384 - MEDIUM: stats: reimplement HTTP keep-alive on the stats page
5385 - BUG/MAJOR: http: fix timeouts during data forwarding
5386 - BUG/MEDIUM: http: 100-continue responses must process the next part immediately
5387 - MEDIUM: http: move skipping of 100-continue earlier
5388 - BUILD: stats: let gcc know that last_fwd cannot be used uninitialized...
5389 - CLEANUP: general: get rid of all old occurrences of "session *t"
5390 - CLEANUP: http: remove the useless "if (1)" inherited from version 1.4
5391 - BUG/MEDIUM: stats: mismatch between behaviour and doc about front/back
5392 - MEDIUM: http: enable analysers to have keep-alive on stats
5393 - REORG: http: move HTTP Connection response header parsing earlier
5394 - MINOR: stats: always emit HTTP/1.1 in responses
5395 - MINOR: http: add capture.req.ver and capture.res.ver
5396 - MINOR: checks: add a new global max-spread-checks directive
5397 - BUG/MAJOR: http: fix the 'next' pointer when performing a redirect
5398 - MINOR: http: implement the max-keep-alive-queue setting
5399 - DOC: fix alphabetic order of tcp-check
5400 - MINOR: connection: add a new error code for SSL with heartbeat
5401 - MEDIUM: ssl: implement a workaround for the OpenSSL heartbleed attack
5402 - BUG/MEDIUM: Revert "MEDIUM: ssl: Add standardized DH parameters >= 1024 bits"
5403 - BUILD: http: remove a warning on strndup
5404 - BUILD: ssl: avoid a warning about conn not used with OpenSSL < 1.0.1
5405 - BUG/MINOR: ssl: really block OpenSSL's response to heartbleed attack
5406 - MINOR: ssl: finally catch the heartbeats missing the padding
5407
Willy Tarreau8317b282014-04-23 01:49:41 +020054082014/04/23 : 1.5-dev23
5409 - BUG/MINOR: reject malformed HTTP/0.9 requests
5410 - MINOR: systemd wrapper: re-execute on SIGUSR2
5411 - MINOR: systemd wrapper: improve logging
5412 - MINOR: systemd wrapper: propagate exit status
5413 - BUG/MINOR: tcpcheck connect wrong behavior
5414 - MEDIUM: proxy: support use_backend with dynamic names
5415 - MINOR: stats: Enhancement to stats page to provide information of last session time.
5416 - BUG/MEDIUM: peers: fix key consistency for integer stick tables
5417 - DOC: fix a typo on http-server-close and encapsulate options with double-quotes
5418 - DOC: fix fetching samples syntax
5419 - MINOR: ssl: add ssl_fc_unique_id to fetch TLS Unique ID
5420 - MEDIUM: ssl: Use ALPN support as it will be available in OpenSSL 1.0.2
5421 - DOC: fix typo
5422 - CLEANUP: code style: use tabs to indent codes instead of spaces
5423 - DOC: fix a few config typos.
5424 - BUG/MINOR: raw_sock: also consider ENOTCONN in addition to EAGAIN for recv()
5425 - DOC: lowercase format string in unique-id
5426 - MINOR: set IP_FREEBIND on IPv6 sockets in transparent mode
5427 - BUG/MINOR: acl: req_ssl_sni fails with SSLv3 record version
5428 - BUG/MINOR: build: add missing objects in osx and bsd Makefiles
5429 - BUG/MINOR: build: handle whitespaces in wc -l output
5430 - BUG/MINOR: Fix name lookup ordering when compiled with USE_GETADDRINFO
5431 - MEDIUM: ssl: Add standardized DH parameters >= 1024 bits
5432 - BUG/MEDIUM: map: The map parser includes blank lines.
5433 - BUG/MINOR: log: The log of quotted capture header has been terminated by 2 quotes.
5434 - MINOR: standard: add function "encode_chunk"
5435 - BUG/MINOR: http: fix encoding of samples used in http headers
5436 - MINOR: sample: add hex converter
5437 - MEDIUM: sample: change the behavior of the bin2str cast
5438 - MAJOR: auth: Change the internal authentication system.
5439 - MEDIUM: acl/pattern: standardisation "of pat_parse_int()" and "pat_parse_dotted_ver()"
5440 - MEDIUM: pattern: The pattern parser no more uses <opaque> and just takes one string.
5441 - MEDIUM: pattern: Change the prototype of the function pattern_register().
5442 - CONTRIB: ip6range: add a network IPv6 range to mask converter
5443 - MINOR: pattern: separe list element from the data part.
5444 - MEDIUM: pattern: add indexation function.
5445 - MEDIUM: pattern: The parse functions just return "struct pattern" without memory allocation
5446 - MINOR: pattern: Rename "pat_idx_elt" to "pattern_tree"
5447 - MINOR: sample: dont call the sample cast function "c_none"
5448 - MINOR: standard: Add function for converting cidr to network mask.
5449 - MEDIUM: sample: Remove types SMP_T_CSTR and SMP_T_CBIN, replace it by SMP_F_CONST flags
5450 - MEDIUM: sample/http_proto: Add new type called method
5451 - MINOR: dumpstats: Group map inline help
5452 - MEDIUM: pattern: The function pattern_exec_match() returns "struct pattern" if the patten match.
5453 - MINOR: dumpstats: change map inline sentences
5454 - MINOR: dumpstats: change the "get map" display management
5455 - MINOR: map/dumpstats: The cli cmd "get map ..." display the "int" format.
5456 - MEDIUM: pattern: The match function browse itself the list or the tree.
5457 - MEDIUM: pattern: Index IPv6 addresses in a tree.
5458 - MEDIUM: pattern: add delete functions
5459 - MEDIUM: pattern: add prune function
5460 - MEDIUM: pattern: add sample lookup function.
5461 - MEDIUM: pattern/dumpstats: The function pattern_lookup() is no longer used
5462 - MINOR: map/pattern: The sample parser is stored in the pattern
5463 - MAJOR: pattern/map: Extends the map edition system in the patterns
5464 - MEDIUM: pattern: merge same pattern
5465 - MEDIUM: pattern: The expected type is stored in the pattern head, and conversion is executed once.
5466 - MINOR: pattern: Each pattern is identified by unique id.
5467 - MINOR: pattern/acl: Each pattern of each acl can be load with specified id
5468 - MINOR: pattern: The function "pattern_register()" is no longer used.
5469 - MINOR: pattern: Merge function pattern_add() with pat_ref_push().
5470 - MINOR: pattern: store configuration reference for each acl or map pattern.
5471 - MINOR: pattern: Each pattern expression element store the reference struct.
5472 - MINOR: dumpstats: display the reference for th key/pattern and value.
5473 - MEDIUM: pattern: delete() function uses the pat_ref_elt to find the element to be removed
5474 - MEDIUM: pattern_find_smp: functions find_smp uses the pat_ref_elt to find the element to be removed
5475 - MEDIUM: dumpstats/pattern: display and use each pointer of each pattern dumped
5476 - MINOR: pattern/map/acl: Centralization of the file parsers
5477 - MINOR: pattern: Check if the file reference is not used with acl and map
5478 - MINOR: acl/pattern: Acl "-M" option force to load file as map file with two columns
5479 - MEDIUM: dumpstats: Display error message during add of values.
5480 - MINOR: pattern: The function pat_ref_set() have now atomic behavior
5481 - MINOR: regex: The pointer regstr in the struc regex is no longer used.
5482 - MINOR: cli: Block the usage of the command "acl add" in many cases.
5483 - MINOR: doc: Update the documentation about the map and acl
5484 - MINOR: pattern: index duplicates
5485 - MINOR: configuration: File and line propagation
5486 - MINOR: dumpstat/conf: display all the configuration lines that using pattern reference
5487 - MINOR: standard: Disable ip resolution during the runtime
5488 - MINOR: pattern: Remove the flag "PAT_F_FROM_FILE".
5489 - MINOR: pattern: forbid dns resolutions
5490 - DOC: document "get map" / "get acl" on the CLI
5491 - MEDIUM: acl: Change the acl register struct
5492 - BUG/MEDIUM: acl: boolean only matches were broken by recent changes
5493 - DOC: pattern: pattern organisation schematics
5494 - MINOR: pattern/cli: Update used terms in documentation and cli
5495 - MINOR: cli: remove information about acl or map owner.
5496 - MINOR: session: don't always assume there's a listener
5497 - MINOR: pattern: Add function to prune and reload pattern list.
5498 - MINOR: standard: Add ipv6 support in the function url2sa().
5499 - MEDIUM: config: Dynamic sections.
5500 - BUG/MEDIUM: stick-table: fix IPv4-to-IPv6 conversion in src_* fetches
5501 - MINOR: http: Add the "language" converter to for use with accept-language
5502 - BUG/MINOR: log: Don't dump empty unique-id
5503 - BUG/MAJOR: session: fix a possible crash with src_tracked
5504 - DOC: Update "language" documentation
5505 - MINOR: http: add the function "del-header" to the directives http-request and http-response
5506 - DOC: add some information on capture.(req|res).hdr
5507 - MINOR: http: capture.req.method and capture.req.uri
5508 - MINOR: http: optimize capture.req.method and capture.req.uri
5509 - MINOR: session: clean up the connection free code
5510 - BUG/MEDIUM: checks: immediately report a connection success
5511 - MEDIUM: connection: don't use real send() flags in snd_buf()
5512 - OPTIM: ssl: implement dynamic record size adjustment
5513 - MINOR: stats: report exact last session time in backend too
5514 - BUG/MEDIUM: stats: the "lastsess" field must appear last in the CSV.
5515 - BUG/MAJOR: check: fix memory leak in "tcp-check connect" over SSL
5516 - BUG/MINOR: channel: initialize xfer_small/xfer_large on new buffers
5517 - MINOR: channel: add the date of last read in the channel
5518 - MEDIUM: stream-int: automatically disable CF_STREAMER flags after idle
5519 - MINOR: ssl: add DEFAULT_SSL_MAX_RECORD to set the record size at build time
5520 - MINOR: config: make the stream interface idle timer user-configurable
5521 - MINOR: config: add global directives to set default SSL ciphers
5522 - MINOR: sample: add a rand() sample fetch to return a sample.
5523 - BUG/MEDIUM: config: immediately abort if peers section has no name
5524 - BUG/MINOR: ssl: fix syntax in config error message
5525 - BUG/MEDIUM: ssl: always send a full buffer after EAGAIN
5526 - BUG/MINOR: config: server on-marked-* statement is ignored in default-server
5527 - BUG/MEDIUM: backend: prefer-last-server breaks redispatch
5528 - BUG/MEDIUM: http: continue to emit 503 on keep-alive to different server
5529 - MEDIUM: acl: fix pattern type for payload / payload_lv
5530 - BUG/MINOR: config: fix a crash on startup when a disabled backend references a peer
5531 - BUG/MEDIUM: compression: fix the output type of the compressor name
5532 - BUG/MEDIUM: http: don't start to forward request data before the connect
5533 - MINOR: http: release compression context only in http_end_txn()
5534 - MINOR: protect ebimtree/ebistree against multiple inclusions
5535 - MEDIUM: proxy: create a tree to store proxies by name
5536 - MEDIUM: proxy: make findproxy() use trees to look up proxies
5537 - MEDIUM: proxy: make get_backend_server() use findproxy() to lookup proxies
5538 - MEDIUM: stick-table: lookup table names using trees.
5539 - MEDIUM: config: faster lookup for duplicated proxy name
5540 - CLEANUP: acl: remove obsolete test in parse_acl_expr()
5541 - MINOR: sample: move smp_to_type to sample.c
5542 - MEDIUM: compression: consider the "q=" attribute in Accept-Encoding
5543 - REORG: cfgparse: move server keyword parsing to server.c
5544 - BUILD: adjust makefile for AIX 5.1
5545 - BUG/MEDIUM: pattern: fix wrong definition of the pat_prune_fcts array
5546 - CLEANUP: pattern: move array definitions to proto/ and not types/
5547 - BUG/MAJOR: counters: check for null-deref when looking up an alternate table
5548 - BUILD: ssl: previous patch failed
5549 - BUILD/MEDIUM: standard: get rid of the last strcpy()
5550 - BUILD/MEDIUM: standard: get rid of sprintf()
5551 - BUILD/MEDIUM: cfgparse: get rid of sprintf()
5552 - BUILD/MEDIUM: checks: get rid of sprintf()
5553 - BUILD/MEDIUM: http: remove calls to sprintf()
5554 - BUG/MEDIUM: systemd-wrapper: fix locating of haproxy binary
5555 - BUILD/MINOR: ssl: remove one call to sprintf()
5556 - MEDIUM: http: don't reject anymore message bodies not containing the url param
5557 - MEDIUM: http: wait for the first chunk or message body length in http_process_body
5558 - CLEANUP: http: rename http_process_request_body()
5559 - CLEANUP: http: prepare dedicated processing for chunked encoded message bodies
5560 - MINOR: http: make msg->eol carry the last CRLF length
5561 - MAJOR: http: do not use msg->sol while processing messages or forwarding data
5562 - MEDIUM: http: http_parse_chunk_crlf() must not advance the buffer pointer
5563 - MAJOR: http: don't update msg->sov anymore while processing the body
5564 - MINOR: http: add a small helper to compute the amount of body bytes present
5565 - MEDIUM: http: add a small helper to compute how far to rewind to find headers
5566 - MINOR: http: add a small helper to compute how far to rewind to find URI
5567 - MEDIUM: http: small helpers to compute how far to rewind to find BODY and DATA
5568 - MAJOR: http: reset msg->sov after headers are forwarded
5569 - MEDIUM: http: forward headers again while waiting for connection to complete
5570 - BUG/MINOR: http: deinitialize compression after a parsing error
5571 - BUG/MINOR: http: deinitialize compression after a compression error
5572 - MEDIUM: http: headers must be forwarded even if data was already inspected
5573 - MAJOR: http: re-enable compression on chunked encoding
5574 - MAJOR: http/compression: fix chunked-encoded response processing
5575 - MEDIUM: http: cleanup: centralize a little bit HTTP compression end
5576 - MEDIUM: http: start to centralize the forwarding code
5577 - MINOR: http: further cleanups of response forwarding function
5578 - MEDIUM: http: only allocate the temporary compression buffer when needed
5579 - MAJOR: http: centralize data forwarding in the request path
5580 - CLEANUP: http: document the response forwarding states
5581 - CLEANUP: http: remove all calls to http_silent_debug()
5582 - DOC: internal: add some reminders about HTTP parsing and pointer states
5583 - BUG/MAJOR: http: fix bug in parse_qvalue() when selecting compression algo
5584 - BUG/MINOR: stats: last session was not always set
5585 - DOC: add pointer to the Cyril's HTML doc in the README
5586 - MEDIUM: config: relax use_backend check to make the condition optional
5587 - MEDIUM: config: report misplaced http-request rules
5588 - MEDIUM: config: report misplaced use-server rules
5589 - DOC: update roadmap with what was done.
5590
Willy Tarreau1a34d572014-02-03 00:41:29 +010055912014/02/03 : 1.5-dev22
5592 - MEDIUM: tcp-check new feature: connect
5593 - MEDIUM: ssl: Set verify 'required' as global default for servers side.
5594 - MINOR: ssl: handshake optim for long certificate chains.
5595 - BUG/MINOR: pattern: pattern comparison executed twice
5596 - BUG/MEDIUM: map: segmentation fault with the stats's socket command "set map ..."
5597 - BUG/MEDIUM: pattern: Segfault in binary parser
5598 - MINOR: pattern: move functions for grouping pat_match_* and pat_parse_* and add documentation.
5599 - MINOR: standard: The parse_binary() returns the length consumed and his documentation is updated
5600 - BUG/MINOR: payload: the patterns of the acl "req.ssl_ver" are no parsed with the good function.
5601 - BUG/MEDIUM: pattern: "pat_parse_dotted_ver()" set bad expect_type.
5602 - BUG/MINOR: sample: The c_str2int converter does not fail if the entry is not an integer
5603 - BUG/MEDIUM: http/auth: Sometimes the authentication credentials can be mix between two requests
5604 - MINOR: doc: Bad cli function name.
5605 - MINOR: http: smp_fetch_capture_header_* fetch captured headers
5606 - BUILD: last release inadvertently prepended a "+" in front of the date
5607 - BUG/MEDIUM: stream-int: fix the keep-alive idle connection handler
5608 - BUG/MEDIUM: backend: do not re-initialize the connection's context upon reuse
5609 - BUG: Revert "OPTIM/MEDIUM: epoll: fuse active events into polled ones during polling changes"
5610 - BUG/MINOR: checks: successful check completion must not re-enable MAINT servers
5611 - MINOR: http: try to stick to same server after status 401/407
5612 - BUG/MINOR: http: always disable compression on HTTP/1.0
5613 - OPTIM: poll: restore polling after a poll/stop/want sequence
5614 - OPTIM: http: don't stop polling for read on the client side after a request
5615 - BUG/MEDIUM: checks: unchecked servers could not be enabled anymore
5616 - BUG/MEDIUM: stats: the web interface must check the tracked servers before enabling
5617 - BUG/MINOR: channel: CHN_INFINITE_FORWARD must be unsigned
5618 - BUG/MINOR: stream-int: do not clear the owner upon unregister
5619 - MEDIUM: stats: add support for HTTP keep-alive on the stats page
5620 - BUG/MEDIUM: stats: fix HTTP/1.0 breakage introduced in previous patch
5621 - Revert "MEDIUM: stats: add support for HTTP keep-alive on the stats page"
5622 - MAJOR: channel: add a new flag CF_WAKE_WRITE to notify the task of writes
5623 - OPTIM: session: set the READ_DONTWAIT flag when connecting
5624 - BUG/MINOR: http: don't clear the SI_FL_DONT_WAKE flag between requests
5625 - MINOR: session: factor out the connect time measurement
5626 - MEDIUM: session: prepare to support earlier transitions to the established state
5627 - MEDIUM: stream-int: make si_connect() return an established state when possible
5628 - MINOR: checks: use an inline function for health_adjust()
5629 - OPTIM: session: put unlikely() around the freewheeling code
5630 - MEDIUM: config: report a warning when multiple servers have the same name
5631 - BUG: Revert "OPTIM: poll: restore polling after a poll/stop/want sequence"
5632 - BUILD/MINOR: listener: remove a glibc warning on accept4()
5633 - BUG/MAJOR: connection: fix mismatch between rcv_buf's API and usage
5634 - BUILD: listener: fix recent accept4() again
5635 - BUG/MAJOR: ssl: fix breakage caused by recent fix abf08d9
5636 - BUG/MEDIUM: polling: ensure we update FD status when there's no more activity
5637 - MEDIUM: listener: fix polling management in the accept loop
5638 - MINOR: protocol: improve the proto->drain() API
5639 - MINOR: connection: add a new conn_drain() function
5640 - MEDIUM: tcp: report in tcp_drain() that lingering is already disabled on close
5641 - MEDIUM: connection: update callers of ctrl->drain() to use conn_drain()
5642 - MINOR: connection: add more error codes to report connection errors
5643 - MEDIUM: tcp: report connection error at the connection level
5644 - MEDIUM: checks: make use of chk_report_conn_err() for connection errors
5645 - BUG/MEDIUM: unique_id: HTTP request counter is not stable
5646 - DOC: fix misleading information about SIGQUIT
5647 - BUG/MAJOR: fix freezes during compression
5648 - BUG/MEDIUM: stream-interface: don't wake the task up before end of transfer
5649 - BUILD: fix VERDATE exclusion regex
5650 - CLEANUP: polling: rename "spec_e" to "state"
5651 - DOC: add a diagram showing polling state transitions
5652 - REORG: polling: rename "spec_e" to "state" and "spec_p" to "cache"
5653 - REORG: polling: rename "fd_spec" to "fd_cache"
5654 - REORG: polling: rename the cache allocation functions
5655 - REORG: polling: rename "fd_process_spec_events()" to "fd_process_cached_events()"
5656 - MAJOR: polling: rework the whole polling system
5657 - MAJOR: connection: remove the CO_FL_WAIT_{RD,WR} flags
5658 - MEDIUM: connection: remove conn_{data,sock}_poll_{recv,send}
5659 - MEDIUM: connection: add check for readiness in I/O handlers
5660 - MEDIUM: stream-interface: the polling flags must always be updated in chk_snd_conn
5661 - MINOR: stream-interface: no need to call fd_stop_both() on error
5662 - MEDIUM: connection: no need to recheck FD state
5663 - CLEANUP: connection: use conn_ctrl_ready() instead of checking the flag
5664 - CLEANUP: connection: use conn_xprt_ready() instead of checking the flag
5665 - CLEANUP: connection: fix comments in connection.h to reflect new behaviour.
5666 - OPTIM: raw-sock: don't speculate after a short read if polling is enabled
5667 - MEDIUM: polling: centralize polled events processing
5668 - MINOR: polling: create function fd_compute_new_polled_status()
5669 - MINOR: cli: add more information to the "show info" output
5670 - MEDIUM: listener: add support for limiting the session rate in addition to the connection rate
5671 - MEDIUM: listener: apply a limit on the session rate submitted to SSL
5672 - REORG: stats: move the stats socket states to dumpstats.c
5673 - MINOR: cli: add the new "show pools" command
5674 - BUG/MEDIUM: counters: flush content counters after each request
5675 - BUG/MEDIUM: counters: fix stick-table entry leak when using track-sc2 in connection
5676 - MINOR: tools: add very basic support for composite pointers
5677 - MEDIUM: counters: stop relying on session flags at all
5678 - BUG/MINOR: cli: fix missing break in command line parser
5679 - BUG/MINOR: config: correctly report when log-format headers require HTTP mode
5680 - MAJOR: http: update connection mode configuration
5681 - MEDIUM: http: make keep-alive + httpclose be passive mode
5682 - MAJOR: http: switch to keep-alive mode by default
5683 - BUG/MEDIUM: http: fix regression caused by recent switch to keep-alive by default
5684 - BUG/MEDIUM: listener: improve detection of non-working accept4()
5685 - BUILD: listener: add fcntl.h and unistd.h
5686 - BUG/MINOR: raw_sock: correctly set the MSG_MORE flag
5687
Willy Tarreau6b07bf72013-12-17 00:45:49 +010056882013/12/17 : 1.5-dev21
5689 - MINOR: stats: don't use a monospace font to report numbers
5690 - MINOR: session: remove debugging code
5691 - BUG/MAJOR: patterns: fix double free caused by loading strings from files
5692 - MEDIUM: http: make option http_proxy automatically rewrite the URL
5693 - BUG/MEDIUM: http: cook_cnt() forgets to set its output type
5694 - BUG/MINOR: stats: correctly report throttle rate of low weight servers
5695 - BUG/MEDIUM: checks: servers must not start in slowstart mode
5696 - BUG/MINOR: acl: parser must also stop at comma on ACL-only keywords
5697 - MEDIUM: stream-int: implement a very simplistic idle connection manager
5698 - DOC: update the ROADMAP file
5699
Willy Tarreau11f64d62013-12-16 02:32:37 +010057002013/12/16 : 1.5-dev20
5701 - DOC: add missing options to the manpage
5702 - DOC: add manpage references to all system calls
5703 - DOC: update manpage reference to haproxy-en.txt
5704 - DOC: remove -s and -l options from the manpage
5705 - DOC: missing information for the "description" keyword
5706 - DOC: missing http-send-name-header keyword in keyword table
5707 - MINOR: tools: function my_memmem() to lookup binary contents
5708 - MEDIUM: checks: add send/expect tcp based check
5709 - MEDIUM: backend: Enhance hash-type directive with an algorithm options
5710 - MEDIUM: backend: Implement avalanche as a modifier of the hashing functions.
5711 - DOC: Documentation for hashing function, with test results.
5712 - BUG/MEDIUM: ssl: potential memory leak using verifyhost
5713 - BUILD: ssl: compilation issue with openssl v0.9.6.
5714 - BUG/MINOR: ssl: potential memory leaks using ssl_c_key_alg or ssl_c_sig_alg.
5715 - MINOR: ssl: optimization of verifyhost on wildcard certificates.
5716 - BUG/MINOR: ssl: verifyhost does not match empty strings on wildcard.
5717 - MINOR: ssl: Add statement 'verifyhost' to "server" statements
5718 - CLEANUP: session: remove event_accept() which was not used anymore
5719 - BUG/MINOR: deinit: free fdinfo while doing cleanup
5720 - DOC: minor typo fix in documentation
5721 - BUG/MEDIUM: server: set the macro for server's max weight SRV_UWGHT_MAX to SRV_UWGHT_RANGE
5722 - BUG/MINOR: use the same check condition for server as other algorithms
5723 - DOC: fix typo in comments
5724 - BUG/MINOR: deinit: free server map which is allocated in init_server_map()
5725 - CLEANUP: stream_interface: cleanup loop information in si_conn_send_loop()
5726 - MINOR: buffer: align the last output line of buffer_dump()
5727 - MINOR: buffer: align the last output line if there are less than 8 characters left
5728 - DOC: stick-table: modify the description
5729 - OPTIM: stream_interface: return directly if the connection flag CO_FL_ERROR has been set
5730 - CLEANUP: code style: use tabs to indent codes
5731 - DOC: checkcache: block responses with cacheable cookies
5732 - BUG/MINOR: check_config_validity: check the returned value of stktable_init()
5733 - MEDIUM: haproxy-systemd-wrapper: Use haproxy in same directory
5734 - MEDIUM: systemd-wrapper: Kill child processes when interrupted
5735 - LOW: systemd-wrapper: Write debug information to stdout
5736 - BUG/MINOR: http: fix "set-tos" not working in certain configurations
5737 - MEDIUM: http: add IPv6 support for "set-tos"
5738 - DOC: ssl: update build instructions to use new SSL_* variables
5739 - BUILD/MINOR: systemd: fix compiler warning about unused result
5740 - url32+src - like base32+src but whole url including parameters
5741 - BUG/MINOR: fix forcing fastinter in "on-error"
5742 - CLEANUP: Make parameters of srv_downtime and srv_getinter const
5743 - CLEANUP: Remove unused 'last_slowstart_change' field from struct peer
5744 - MEDIUM: Split up struct server's check element
5745 - MEDIUM: Move result element to struct check
5746 - MEDIUM: Paramatise functions over the check of a server
5747 - MEDIUM: cfgparse: Factor out check initialisation
5748 - MEDIUM: Add state to struct check
5749 - MEDIUM: Move health element to struct check
5750 - MEDIUM: Add helper for task creation for checks
5751 - MEDIUM: Add helper function for failed checks
5752 - MEDIUM: Log agent fail, stopped or down as info
5753 - MEDIUM: Remove option lb-agent-chk
5754 - MEDIUM: checks: Add supplementary agent checks
5755 - MEDIUM: Do not mark a server as down if the agent is unavailable
5756 - MEDIUM: Set rise and fall of agent checks to 1
5757 - MEDIUM: Add enable and disable agent unix socket commands
5758 - MEDIUM: Add DRAIN state and report it on the stats page
5759 - BUILD/MINOR: missing header file
5760 - CLEANUP: regex: Create regex_comp function that compiles regex using compilation options
5761 - CLEANUP: The function "regex_exec" needs the string length but in many case they expect null terminated char.
5762 - MINOR: http: some exported functions were not in the header file
5763 - MINOR: http: change url_decode to return the size of the decoded string.
5764 - BUILD/MINOR: missing header file
5765 - BUG/MEDIUM: sample: The function v4tov6 cannot support input and output overlap
5766 - BUG/MINOR: arg: fix error reporting for add-header/set-header sample fetch arguments
5767 - MINOR: sample: export the generic sample conversion parser
5768 - MINOR: sample: export sample_casts
5769 - MEDIUM: acl: use the fetch syntax 'fetch(args),conv(),conv()' into the ACL keyword
5770 - MINOR: stick-table: use smp_expr_output_type() to retrieve the output type of a "struct sample_expr"
5771 - MINOR: sample: provide the original sample_conv descriptor struct to the argument checker function.
5772 - MINOR: tools: Add a function to convert buffer to an ipv6 address
5773 - MINOR: acl: export acl arrays
5774 - MINOR: acl: Extract the pattern parsing and indexation from the "acl_read_patterns_from_file()" function
5775 - MINOR: acl: Extract the pattern matching function
5776 - MINOR: sample: Define new struct sample_storage
5777 - MEDIUM: acl: associate "struct sample_storage" to each "struct acl_pattern"
5778 - REORG: acl/pattern: extract pattern matching from the acl file and create pattern.c
5779 - MEDIUM: pattern: create pattern expression
5780 - MEDIUM: pattern: rename "acl" prefix to "pat"
5781 - MEDIUM: sample: let the cast functions set their output type
5782 - MINOR: sample: add a private field to the struct sample_conv
5783 - MINOR: map: Define map types
5784 - MEDIUM: sample: add the "map" converter
5785 - MEDIUM: http: The redirect strings follows the log format rules.
5786 - BUG/MINOR: acl: acl parser does not recognize empty converter list
5787 - BUG/MINOR: map: The map list was declared in the map.h file
5788 - MINOR: map: Cleanup the initialisation of map descriptors.
5789 - MEDIUM: map: merge identical maps
5790 - BUG/MEDIUM: pattern: Pattern node has type of "struct pat_idx_elt" in place of "struct eb_node"
5791 - BUG/MEDIUM: map: Bad map file parser
5792 - CLEANUP/MINOR: standard: use the system define INET6_ADDRSTRLEN in place of MAX_IP6_LEN
5793 - BUG/MEDIUM: sample: conversion from str to ipv6 may read data past end
5794 - MINOR: map: export map_get_reference() function
5795 - MINOR: pattern: Each pattern sets the expected input type
5796 - MEDIUM: acl: Last patch change the output type
5797 - MEDIUM: pattern: Extract the index process from the pat_parse_*() functions
5798 - MINOR: standard: The function parse_binary() can use preallocated buffer
5799 - MINOR: regex: Change the struct containing regex
5800 - MINOR: regex: Copy the original regex expression into string.
5801 - MINOR: pattern: add support for compiling patterns for lookups
5802 - MINOR: pattern: make the pattern matching function return a pointer to the matched element
5803 - MINOR: map: export parse output sample functions
5804 - MINOR: pattern: add function to lookup a specific entry in pattern list
5805 - MINOR: pattern/map: Each pattern must free the associated sample
5806 - MEDIUM: dumpstat: make the CLI parser understand the backslash as an escape char
5807 - MEDIUM: map: dynamic manipulation of maps
5808 - BUG/MEDIUM: unique_id: junk in log on empty unique_id
5809 - BUG/MINOR: log: junk at the end of syslog packet
5810 - MINOR: Makefile: provide cscope rule
5811 - DOC: compression: chunk are not compressed anymore
5812 - MEDIUM: session: disable lingering on the server when the client aborts
5813 - BUG/MEDIUM: prevent gcc from moving empty keywords lists into BSS
5814 - DOC: remove the comment saying that SSL certs are not checked on the server side
5815 - BUG: counters: third counter was not stored if others unset
5816 - BUG/MAJOR: http: don't emit the send-name-header when no server is available
5817 - BUG/MEDIUM: http: "option checkcache" fails with the no-cache header
5818 - BUG/MAJOR: http: sample prefetch code was not properly migrated
5819 - BUG/MEDIUM: splicing: fix abnormal CPU usage with splicing
5820 - BUG/MINOR: stream_interface: don't call chk_snd() on polled events
5821 - OPTIM: splicing: use splice() for the last block when relevant
5822 - MEDIUM: sample: handle comma-delimited converter list
5823 - MINOR: sample: fix sample_process handling of unstable data
5824 - CLEANUP: acl: move the 3 remaining sample fetches to samples.c
5825 - MINOR: sample: add a new "date" fetch to return the current date
5826 - MINOR: samples: add the http_date([<offset>]) sample converter.
5827 - DOC: minor improvements to the part on the stats socket.
5828 - MEDIUM: sample: systematically pass the keyword pointer to the keyword
5829 - MINOR: payload: split smp_fetch_rdp_cookie()
5830 - MINOR: counters: factor out smp_fetch_sc*_tracked
5831 - MINOR: counters: provide a generic function to retrieve a stkctr for sc* and src.
5832 - MEDIUM: counters: factor out smp_fetch_sc*_get_gpc0
5833 - MEDIUM: counters: factor out smp_fetch_sc*_gpc0_rate
5834 - MEDIUM: counters: factor out smp_fetch_sc*_inc_gpc0
5835 - MEDIUM: counters: factor out smp_fetch_sc*_clr_gpc0
5836 - MEDIUM: counters: factor out smp_fetch_sc*_conn_cnt
5837 - MEDIUM: counters: factor out smp_fetch_sc*_conn_rate
5838 - MEDIUM: counters: factor out smp_fetch_sc*_conn_cur
5839 - MEDIUM: counters: factor out smp_fetch_sc*_sess_cnt
5840 - MEDIUM: counters: factor out smp_fetch_sc*_sess_rate
5841 - MEDIUM: counters: factor out smp_fetch_sc*_http_req_cnt
5842 - MEDIUM: counters: factor out smp_fetch_sc*_http_req_rate
5843 - MEDIUM: counters: factor out smp_fetch_sc*_http_err_cnt
5844 - MEDIUM: counters: factor out smp_fetch_sc*_http_err_rate
5845 - MEDIUM: counters: factor out smp_fetch_sc*_kbytes_in
5846 - MEDIUM: counters: factor out smp_fetch_sc*_bytes_in_rate
5847 - MEDIUM: counters: factor out smp_fetch_sc*_kbytes_out
5848 - MEDIUM: counters: factor out smp_fetch_sc*_bytes_out_rate
5849 - MEDIUM: counters: factor out smp_fetch_sc*_trackers
5850 - MINOR: session: make the number of stick counter entries more configurable
5851 - MEDIUM: counters: support passing the counter number as a fetch argument
5852 - MEDIUM: counters: support looking up a key in an alternate table
5853 - MEDIUM: cli: adjust the method for feeding frequency counters in tables
5854 - MINOR: cli: make it possible to enter multiple values at once with "set table"
5855 - MINOR: payload: allow the payload sample fetches to retrieve arbitrary lengths
5856 - BUG/MINOR: cli: "clear table" must not kill entries that don't match condition
5857 - MINOR: ssl: use MAXPATHLEN instead of PATH_MAX
5858 - MINOR: config: warn when a server with no specific port uses rdp-cookie
5859 - BUG/MEDIUM: unique_id: HTTP request counter must be unique!
5860 - DOC: add a mention about the limited chunk size
5861 - BUG/MEDIUM: fix broken send_proxy on FreeBSD
5862 - MEDIUM: stick-tables: flush old entries upon soft-stop
5863 - MINOR: tcp: add new "close" action for tcp-response
5864 - MINOR: payload: provide the "res.len" fetch method
5865 - BUILD: add SSL_INC/SSL_LIB variables to force the path to openssl
5866 - MINOR: http: compute response time before processing headers
5867 - BUG/MINOR: acl: fix improper string size assignment in proxy argument
5868 - BUG/MEDIUM: http: accept full buffers on smp_prefetch_http
5869 - BUG/MINOR: acl: implicit arguments of ACL keywords were not properly resolved
5870 - BUG/MEDIUM: session: risk of crash on out of memory conditions
5871 - BUG/MINOR: peers: set the accept date in outgoing connections
5872 - BUG/MEDIUM: tcp: do not skip tracking rules on second pass
5873 - BUG/MEDIUM: acl: do not evaluate next terms after a miss
5874 - MINOR: acl: add a warning when an ACL keyword is used without any value
5875 - MINOR: tcp: don't use tick_add_ifset() when timeout is known to be set
5876 - BUG/MINOR: acl: remove patterns from the tree before freeing them
5877 - MEDIUM: backend: add support for the wt6 hash
5878 - OPTIM/MEDIUM: epoll: fuse active events into polled ones during polling changes
5879 - OPTIM/MINOR: mark the source address as already known on accept()
5880 - BUG/MINOR: stats: don't count tarpitted connections twice
5881 - CLEANUP: http: homogenize processing of denied req counter
5882 - CLEANUP: http: merge error handling for req* and http-request *
5883 - BUG/MEDIUM: http: fix possible parser crash when parsing erroneous "http-request redirect" rules
5884 - BUG/MINOR: http: fix build warning introduced with url32/url32_src
5885 - BUG/MEDIUM: checks: fix slow start regression after fix attempt
5886 - BUG/MAJOR: server: weight calculation fails for map-based algorithms
5887 - MINOR: stats: report correct throttling percentage for servers in slowstart
5888 - OPTIM: connection: fold the error handling with handshake handling
5889 - MINOR: peers: accept to learn strings of different lengths
5890 - BUG/MAJOR: fix haproxy crash when using server tracking instead of checks
5891 - BUG/MAJOR: check: fix haproxy crash during soft-stop/soft-start
5892 - BUG/MINOR: stats: do not report "via" on tracking servers in maintenance
5893 - BUG/MINOR: connection: fix typo in error message report
5894 - BUG/MINOR: backend: fix target address retrieval in transparent mode
5895 - BUG/MINOR: config: report the correct track-sc number in tcp-rules
5896 - BUG/MINOR: log: fix log-format parsing errors
5897 - DOC: add some information about how to apply converters to samples
5898 - MINOR: acl/pattern: use types different from int to clarify who does what.
5899 - MINOR: pattern: import acl_find_match_name() into pattern.h
5900 - MEDIUM: stick-tables: support automatic conversion from ipv4<->ipv6
5901 - MEDIUM: log-format: relax parsing of '%' followed by unsupported characters
5902 - BUG/MINOR: http: usual deinit stuff in last commit
5903 - BUILD: log: silent a warning about isblank() with latest patches
5904 - BUG/MEDIUM: checks: fix health check regression causing them to depend on declaration order
5905 - BUG/MEDIUM: checks: fix a long-standing issue with reporting connection errors
5906 - BUG/MINOR: checks: don't consider errno and use conn->err_code
5907 - BUG/MEDIUM: checks: also update the DRAIN state from the web interface
5908 - MINOR: stats: remove some confusion between the DRAIN state and NOLB
5909 - BUG/MINOR: tcp: check that no error is pending during a connect probe
5910 - BUG/MINOR: connection: check EINTR when sending a PROXY header
5911 - MEDIUM: connection: set the socket shutdown flags on socket errors
5912 - BUG/MEDIUM: acl: fix regression introduced by latest converters support
5913 - MINOR: connection: clear errno prior to checking for errors
5914 - BUG/MINOR: checks: do not trust errno in write event before any syscall
5915 - MEDIUM: checks: centralize error reporting
5916 - OPTIM: checks: don't poll on recv when using plain TCP connects
5917 - OPTIM: checks: avoid setting SO_LINGER twice
5918 - MINOR: tools: add a generic binary hex string parser
5919 - BUG/MEDIUM: checks: tcp-check: do not poll when there's nothing to send
5920 - BUG/MEDIUM: check: tcp-check might miss some outgoing data when socket buffers are full
5921 - BUG/MEDIUM: args: fix double free on error path in argument expression parser
5922 - BUG/MINOR: acl: fix sample expression error reporting
5923 - BUG/MINOR: checks: tcp-check actions are enums, not flags
5924 - MEDIUM: checks: make tcp-check perform multiple send() at once
5925 - BUG/MEDIUM: stick: completely remove the unused flag from the store entries
5926 - OPTIM: ebtree: pack the struct eb_node to avoid holes on 64-bit
5927 - BUG/MEDIUM: stick-tables: complete the latest fix about store-responses
5928 - CLEANUP: stream_interface: remove unused field err_loc
5929 - MEDIUM: stats: don't use conn->xprt_st anymore
5930 - MINOR: session: add a simple function to retrieve a session from a task
5931 - MEDIUM: stats: don't use conn->xprt_ctx anymore
5932 - MEDIUM: peers: don't rely on conn->xprt_ctx anymore
5933 - MINOR: http: prevent smp_fetch_url_{ip,port} from using si->conn
5934 - MINOR: connection: make it easier to emit proxy protocol for unknown addresses
5935 - MEDIUM: stats: prepare the HTTP stats I/O handler to support more states
5936 - MAJOR: stats: move the HTTP stats handling to its applet
5937 - MEDIUM: stats: move request argument processing to the final step
5938 - MEDIUM: session: detect applets from the session by using s->target
5939 - MAJOR: session: check for a connection to an applet in sess_prepare_conn_req()
5940 - MAJOR: session: pass applet return traffic through the response analysers
5941 - MEDIUM: stream-int: split the shutr/shutw functions between applet and conn
5942 - MINOR: stream-int: make the shutr/shutw functions void
5943 - MINOR: obj: provide a safe and an unsafe access to pointed objects
5944 - MINOR: connection: add a field to store an object type
5945 - MINOR: connection: always initialize conn->objt_type to OBJ_TYPE_CONN
5946 - MEDIUM: stream interface: move the peers' ptr into the applet context
5947 - MINOR: stream-interface: move the applet context to its own struct
5948 - MINOR: obj: introduce a new type appctx
5949 - MINOR: stream-int: rename ->applet to ->appctx
5950 - MINOR: stream-int: split si_prepare_embedded into si_prepare_none and si_prepare_applet
5951 - MINOR: stream-int: add a new pointer to the end point
5952 - MEDIUM: stream-interface: set the pointer to the applet into the applet context
5953 - MAJOR: stream interface: remove the ->release function pointer
5954 - MEDIUM: stream-int: make ->end point to the connection or the appctx
5955 - CLEANUP: stream-int: remove obsolete si_ctrl function
5956 - MAJOR: stream-int: stop using si->conn and use si->end instead
5957 - MEDIUM: stream-int: do not allocate a connection in parallel to applets
5958 - MEDIUM: session: attach incoming connection to target on embryonic sessions
5959 - MINOR: connection: add conn_init() to (re)initialize a connection
5960 - MINOR: checks: call conn_init() to properly initialize the connection.
5961 - MINOR: peers: make use of conn_init() to initialize the connection
5962 - MINOR: session: use conn_init() to initialize the connections
5963 - MINOR: http: use conn_init() to reinitialize the server connection
5964 - MEDIUM: connection: replace conn_prepare with conn_assign
5965 - MINOR: get rid of si_takeover_conn()
5966 - MINOR: connection: add conn_new() / conn_free()
5967 - MAJOR: connection: add two new flags to indicate readiness of control/transport
5968 - MINOR: stream-interface: introduce si_reset() and si_set_state()
5969 - MINOR: connection: reintroduce conn_prepare to set the protocol and transport
5970 - MINOR: connection: replace conn_assign with conn_attach
5971 - MEDIUM: stream-interface: introduce si_attach_conn to replace si_prepare_conn
5972 - MAJOR: stream interface: dynamically allocate the outgoing connection
5973 - MEDIUM: connection: move the send_proxy offset to the connection
5974 - MINOR: connection: check for send_proxy during the connect(), not the SI
5975 - MEDIUM: connection: merge the send_proxy and local_send_proxy calls
5976 - MEDIUM: stream-int: replace occurrences of si->appctx with si_appctx()
5977 - MEDIUM: stream-int: return the allocated appctx in stream_int_register_handler()
5978 - MAJOR: stream-interface: dynamically allocate the applet context
5979 - MEDIUM: session: automatically register the applet designated by the target
5980 - MEDIUM: stats: delay appctx initialization
5981 - CLEANUP: peers: use less confusing state/status code names
5982 - MEDIUM: peers: delay appctx initialization
5983 - MINOR: stats: provide some appctx information in "show sess all"
5984 - DIET/MINOR: obj: pack the obj_type enum to 8 bits
5985 - DIET/MINOR: connection: rearrange a few fields to save 8 bytes in the struct
5986 - DIET/MINOR: listener: rearrange a few fields in struct listener to save 16 bytes
5987 - DIET/MINOR: proxy: rearrange a few fields in struct proxy to save 16 bytes
5988 - DIET/MINOR: session: reduce the struct session size by 8 bytes
5989 - DIET/MINOR: stream-int: rearrange a few fields in struct stream_interface to save 8 bytes
5990 - DIET/MINOR: http: reduce the size of struct http_txn by 8 bytes
5991 - MINOR: http: switch the http state to an enum
5992 - MINOR: http: use an enum for the auth method in http_auth_data
5993 - DIET/MINOR: task: reduce struct task size by 8 bytes
5994 - MINOR: stream_interface: add reporting of ressouce allocation errors
5995 - MINOR: session: report lack of resources using the new stream-interface's error code
5996 - BUILD: simplify the date and version retrieval in the makefile
5997 - BUILD: prepare the makefile to skip format lines in SUBVERS and VERDATE
5998 - BUILD: use format tags in VERDATE and SUBVERS files
5999 - BUG/MEDIUM: channel: bo_getline() must wait for \n until buffer is full
6000 - CLEANUP: check: server port is unsigned
6001 - BUG/MEDIUM: checks: agent doesn't get the response if server does not closes
6002 - MINOR: tools: buf2ip6 must not modify output on failure
6003 - MINOR: pattern: do not assign SMP_TYPES by default to patterns
6004 - MINOR: sample: make sample_parse_expr() use memprintf() to report parse errors
6005 - MINOR: arg: improve wording on error reporting
6006 - BUG/MEDIUM: sample: simplify and fix the argument parsing
6007 - MEDIUM: acl: fix the argument parser to let the lower layer report detailed errors
6008 - MEDIUM: acl: fix the initialization order of the ACL expression
6009 - CLEANUP: acl: remove useless blind copy-paste from sample converters
6010 - TESTS: add regression tests for ACL and sample expression parsers
6011 - BUILD: time: adapt the type of TV_ETERNITY to the local system
6012 - MINOR: chunks: allocate the trash chunks before parsing the config
6013 - BUILD: definitely silence some stupid GCC warnings
6014 - MINOR: chunks: always initialize the output chunk in get_trash_chunk()
6015 - MINOR: checks: improve handling of the servers tracking chain
6016 - REORG: checks: retrieve the check-specific defines from server.h to checks.h
6017 - MINOR: checks: use an enum instead of flags to report a check result
6018 - MINOR: checks: rename the state flags
6019 - MINOR: checks: replace state DISABLED with CONFIGURED and ENABLED
6020 - MINOR: checks: use check->state instead of srv->state & SRV_CHECKED
6021 - MINOR: checks: fix agent check interval computation
6022 - MINOR: checks: add a PAUSED state for the checks
6023 - MINOR: checks: create the agent tasks even when no check is configured
6024 - MINOR: checks: add a flag to indicate what check is an agent
6025 - MEDIUM: checks: enable agent checks even if health checks are disabled
6026 - BUG/MEDIUM: checks: ensure we can enable a server after boot
6027 - BUG/MEDIUM: checks: tracking servers must not inherit the MAINT flag
6028 - BUG/MAJOR: session: repair tcp-request connection rules
6029 - BUILD: fix SUBVERS extraction in the Makefile
6030 - BUILD: pattern: silence a warning about uninitialized value
6031 - BUILD: log: fix build warning on Solaris
6032 - BUILD: dumpstats: fix build error on Solaris
6033 - DOC: move option pgsql-check to the correct place
6034 - DOC: move option tcp-check to the proper place
6035 - MINOR: connection: add simple functions to report connection readiness
6036 - MEDIUM: connection: centralize handling of nolinger in fd management
6037 - OPTIM: http: set CF_READ_DONTWAIT on response message
6038 - OPTIM: http: do not re-enable reading on client side while closing the server side
6039 - MINOR: config: add option http-keep-alive
6040 - MEDIUM: connection: inform si_alloc_conn() whether existing conn is OK or not
6041 - MAJOR: stream-int: handle the connection reuse in si_connect()
6042 - MAJOR: http: add the keep-alive transition on the server side
6043 - MAJOR: backend: enable connection reuse
6044 - MINOR: http: add option prefer-last-server
6045 - MEDIUM: http: do not report connection errors for second and further requests
6046
Willy Tarreaueab1dc62013-06-17 15:10:25 +020060472013/06/17 : 1.5-dev19
6048 - MINOR: stats: remove the autofocus on the scope input field
6049 - BUG/MEDIUM: Fix crt-list file parsing error: filtered name was ignored.
6050 - BUG/MEDIUM: ssl: EDH ciphers are not usable if no DH parameters present in pem file.
6051 - BUG/MEDIUM: shctx: makes the code independent on SSL runtime version.
6052 - MEDIUM: ssl: improve crt-list format to support negation
6053 - BUG: ssl: fix crt-list for clients not supporting SNI
6054 - MINOR: stats: show soft-stopped servers in different color
6055 - BUG/MINOR: config: "source" does not work in defaults section
6056 - BUG: regex: fix pcre compile error when using JIT
6057 - MINOR: ssl: add pattern fetch 'ssl_c_sha1'
6058 - BUG: ssl: send payload gets corrupted if tune.ssl.maxrecord is used
6059 - MINOR: show PCRE version and JIT status in -vv
6060 - BUG/MINOR: jit: don't rely on USE flag to detect support
6061 - DOC: readme: add suggestion to link against static openssl
6062 - DOC: examples: provide simplified ssl configuration
6063 - REORG: tproxy: prepare the transparent proxy defines for accepting other OSes
6064 - MINOR: tproxy: add support for FreeBSD
6065 - MINOR: tproxy: add support for OpenBSD
6066 - DOC: examples: provide an example of transparent proxy configuration for FreeBSD 8
6067 - CLEANUP: fix minor typo in error message.
6068 - CLEANUP: fix missing include <string.h> in proto/listener.h
6069 - CLEANUP: protect checks.h from multiple inclusions
6070 - MINOR: compression: acl "res.comp" and fetch "res.comp_algo"
6071 - BUG/MINOR: http: add-header/set-header did not accept the ACL condition
6072 - BUILD: mention in the Makefile that USE_PCRE_JIT is for libpcre >= 8.32
6073 - BUG/MEDIUM: splicing is broken since 1.5-dev12
6074 - BUG/MAJOR: acl: add implicit arguments to the resolve list
6075 - BUG/MINOR: tcp: fix error reporting for TCP rules
6076 - CLEANUP: peers: remove a bit of spaghetti to prepare for the next bugfix
6077 - MINOR: stick-table: allow to allocate an entry without filling it
6078 - BUG/MAJOR: peers: fix an overflow when syncing strings larger than 16 bytes
6079 - MINOR: session: only call http_send_name_header() when changing the server
6080 - MINOR: tcp: report the erroneous word in tcp-request track*
6081 - BUG/MAJOR: backend: consistent hash can loop forever in certain circumstances
6082 - BUG/MEDIUM: log: fix regression on log-format handling
6083 - MEDIUM: log: report file name, line number, and directive name with log-format errors
6084 - BUG/MINOR: cli: "clear table" did not work anymore without a key
6085 - BUG/MINOR: cli: "clear table xx data.xx" does not work anymore
6086 - BUG/MAJOR: http: compression still has defects on chunked responses
6087 - BUG/MINOR: stats: fix confirmation links on the stats interface
6088 - BUG/MINOR: stats: the status bar does not appear anymore after a change
6089 - BUG/MEDIUM: stats: allocate the stats frontend also on "stats bind-process"
6090 - BUG/MEDIUM: stats: fix a regression when dealing with POST requests
6091 - BUG/MINOR: fix unterminated ACL array in compression
6092 - BUILD: last fix broke non-linux platforms
6093 - MINOR: init: indicate the SSL runtime version on -vv.
6094 - BUG/MEDIUM: compression: the deflate algorithm must use global settings as well
6095 - BUILD: stdbool is not portable (again)
6096 - DOC: readme: add a small reminder about restrictions to respect in the code
6097 - MINOR: ebtree: add new eb_next_dup/eb_prev_dup() functions to visit duplicates
6098 - BUG/MINOR: acl: fix a double free during exit when using PCRE_JIT
6099 - DOC: fix wrong copy-paste in the rspdel example
6100 - MINOR: counters: make it easier to extend the amount of tracked counters
6101 - MEDIUM: counters: add support for tracking a third counter
6102 - MEDIUM: counters: add a new "gpc0_rate" counter in stick-tables
6103 - BUG/MAJOR: http: always ensure response buffer has some room for a response
6104 - MINOR: counters: add fetch/acl sc*_tracked to indicate whether a counter is tracked
6105 - MINOR: defaults: allow REQURI_LEN and CAPTURE_LEN to be redefined
6106 - MINOR: log: add a new flag 'L' for locally processed requests
6107 - MINOR: http: add full-length header fetch methods
6108 - MEDIUM: protocol: implement a "drain" function in protocol layers
6109 - MEDIUM: http: add a new "http-response" ruleset
6110 - MEDIUM: http: add the "set-nice" action to http-request and http-response
6111 - MEDIUM: log: add a log level override value in struct session
6112 - MEDIUM: http: add support for action "set-log-level" in http-request/http-response
6113 - MEDIUM: http: add support for "set-tos" in http-request/http-response
6114 - MEDIUM: http: add the "set-mark" action on http-request/http-response rules
6115 - MEDIUM: tcp: add "tcp-request connection expect-proxy layer4"
6116 - MEDIUM: acl: automatically detect the type of certain fetches
6117 - MEDIUM: acl: remove a lot of useless ACLs that are equivalent to their fetches
6118 - MEDIUM: acl: remove 15 additional useless ACLs that are equivalent to their fetches
6119 - DOC: major reorg of ACL + sample fetch
6120 - CLEANUP: http: remove the bogus urlp_ip ACL match
6121 - MINOR: acl: add the new "env()" fetch method to retrieve an environment variable
6122 - BUG/MINOR: acl: correctly consider boolean fetches when doing casts
6123 - BUG/CRITICAL: fix a possible crash when using negative header occurrences
6124 - DOC: update ROADMAP file
6125 - MEDIUM: counters: use sc0/sc1/sc2 instead of sc1/sc2/sc3
6126 - MEDIUM: stats: add proxy name filtering on the statistic page
6127
Willy Tarreau289dd922013-04-03 02:26:31 +020061282013/04/03 : 1.5-dev18
6129 - DOCS: Add explanation of intermediate certs to crt paramater
6130 - DOC: typo and minor fixes in compression paragraph
6131 - MINOR: config: http-request configuration error message misses new keywords
6132 - DOC: minor typo fix in documentation
6133 - BUG/MEDIUM: ssl: ECDHE ciphers not usable without named curve configured.
6134 - MEDIUM: ssl: add bind-option "strict-sni"
6135 - MEDIUM: ssl: add mapping from SNI to cert file using "crt-list"
6136 - MEDIUM: regex: Use PCRE JIT in acl
6137 - DOC: simplify bind option "interface" explanation
6138 - DOC: tfo: bump required kernel to linux-3.7
6139 - BUILD: add explicit support for TFO with USE_TFO
6140 - MEDIUM: New cli option -Ds for systemd compatibility
6141 - MEDIUM: add haproxy-systemd-wrapper
6142 - MEDIUM: add systemd service
6143 - BUG/MEDIUM: systemd-wrapper: don't leak zombie processes
6144 - BUG/MEDIUM: remove supplementary groups when changing gid
6145 - BUG/MEDIUM: config: fix parser crash with bad bind or server address
6146 - BUG/MINOR: Correct logic in cut_crlf()
6147 - CLEANUP: checks: Make desc argument to set_server_check_status const
6148 - CLEANUP: dumpstats: Make cli_release_handler() static
6149 - MEDIUM: server: Break out set weight processing code
6150 - MEDIUM: server: Allow relative weights greater than 100%
6151 - MEDIUM: server: Tighten up parsing of weight string
6152 - MEDIUM: checks: Add agent health check
6153 - BUG/MEDIUM: ssl: openssl 0.9.8 doesn't open /dev/random before chroot
6154 - BUG/MINOR: time: frequency counters are not totally accurate
6155 - BUG/MINOR: http: don't process abortonclose when request was sent
6156 - BUG/MEDIUM: stream_interface: don't close outgoing connections on shutw()
6157 - BUG/MEDIUM: checks: ignore late resets after valid responses
6158 - DOC: fix bogus recommendation on usage of gpc0 counter
6159 - BUG/MINOR: http-compression: lookup Cache-Control in the response, not the request
6160 - MINOR: signal: don't block SIGPROF by default
6161 - OPTIM: epoll: make use of EPOLLRDHUP
6162 - OPTIM: splice: detect shutdowns and avoid splice() == 0
6163 - OPTIM: splice: assume by default that splice is working correctly
6164 - BUG/MINOR: log: temporary fix for lost SSL info in some situations
6165 - BUG/MEDIUM: peers: only the last peers section was used by tables
6166 - BUG/MEDIUM: config: verbosely reject peers sections with multiple local peers
6167 - BUG/MINOR: epoll: use a fix maxevents argument in epoll_wait()
6168 - BUG/MINOR: config: fix improper check for failed memory alloc in ACL parser
6169 - BUG/MINOR: config: free peer's address when exiting upon parsing error
6170 - BUG/MINOR: config: check the proper variable when parsing log minlvl
6171 - BUG/MEDIUM: checks: ensure the health_status is always within bounds
6172 - BUG/MINOR: cli: show sess should always validate s->listener
6173 - BUG/MINOR: log: improper NULL return check on utoa_pad()
6174 - CLEANUP: http: remove a useless null check
6175 - CLEANUP: tcp/unix: remove useless NULL check in {tcp,unix}_bind_listener()
6176 - BUG/MEDIUM: signal: signal handler does not properly check for signal bounds
6177 - BUG/MEDIUM: tools: off-by-one in quote_arg()
6178 - BUG/MEDIUM: uri_auth: missing NULL check and memory leak on memory shortage
6179 - BUG/MINOR: unix: remove the 'level' field from the ux struct
6180 - CLEANUP: http: don't try to deinitialize http compression if it fails before init
6181 - CLEANUP: config: slowstart is never negative
6182 - CLEANUP: config: maxcompcpuusage is never negative
6183 - BUG/MEDIUM: log: emit '-' for empty fields again
6184 - BUG/MEDIUM: checks: fix a race condition between checks and observe layer7
6185 - BUILD: fix a warning emitted by isblank() on non-c99 compilers
6186 - BUILD: improve the makefile's support for libpcre
6187 - MEDIUM: halog: add support for counting per source address (-ic)
6188 - MEDIUM: tools: make str2sa_range support all address syntaxes
6189 - MEDIUM: config: make use of str2sa_range() instead of str2sa()
6190 - MEDIUM: config: use str2sa_range() to parse server addresses
6191 - MEDIUM: config: use str2sa_range() to parse peers addresses
6192 - MINOR: tests: add a config file to ease address parsing tests.
6193 - MINOR: ssl: add a global tunable for the max SSL/TLS record size
6194 - BUG/MINOR: syscall: fix NR_accept4 system call on sparc/linux
6195 - BUILD/MINOR: syscall: add definition of NR_accept4 for ARM
6196 - MINOR: config: report missing peers section name
6197 - BUG/MEDIUM: tools: fix bad character handling in str2sa_range()
6198 - BUG/MEDIUM: stats: never apply "unix-bind prefix" to the global stats socket
6199 - MINOR: tools: prepare str2sa_range() to return an error message
6200 - BUG/MEDIUM: checks: don't call connect() on unsupported address families
6201 - MINOR: tools: prepare str2sa_range() to accept a prefix
6202 - MEDIUM: tools: make str2sa_range() parse unix addresses too
6203 - MEDIUM: config: make str2listener() use str2sa_range() to parse unix addresses
6204 - MEDIUM: config: use a single str2sa_range() call to parse bind addresses
6205 - MEDIUM: config: use str2sa_range() to parse log addresses
6206 - CLEANUP: tools: remove str2sun() which is not used anymore.
6207 - MEDIUM: config: add complete support for str2sa_range() in dispatch
6208 - MEDIUM: config: add complete support for str2sa_range() in server addr
6209 - MEDIUM: config: add complete support for str2sa_range() in 'server'
6210 - MEDIUM: config: add complete support for str2sa_range() in 'peer'
6211 - MEDIUM: config: add complete support for str2sa_range() in 'source' and 'usesrc'
6212 - CLEANUP: minor cleanup in str2sa_range() and str2ip()
6213 - CLEANUP: config: do not use multiple errmsg at once
6214 - MEDIUM: tools: support specifying explicit address families in str2sa_range()
6215 - MAJOR: listener: support inheriting a listening fd from the parent
6216 - MAJOR: tools: support environment variables in addresses
6217 - BUG/MEDIUM: http: add-header should not emit "-" for empty fields
6218 - BUG/MEDIUM: config: ACL compatibility check on "redirect" was wrong
6219 - BUG/MEDIUM: http: fix another issue caused by http-send-name-header
6220 - DOC: mention the new HTTP 307 and 308 redirect statues
6221 - MEDIUM: poll: do not use FD_* macros anymore
6222 - BUG/MAJOR: ev_select: disable the select() poller if maxsock > FD_SETSIZE
6223 - BUG/MINOR: acl: ssl_fc_{alg,use}_keysize must parse integers, not strings
6224 - BUG/MINOR: acl: ssl_c_used, ssl_fc{,_has_crt,_has_sni} take no pattern
6225 - BUILD: fix usual isdigit() warning on solaris
6226 - BUG/MEDIUM: tools: vsnprintf() is not always reliable on Solaris
6227 - OPTIM: buffer: remove one jump in buffer_count()
6228 - OPTIM: http: improve branching in chunk size parser
6229 - OPTIM: http: optimize the response forward state machine
6230 - BUILD: enable poll() by default in the makefile
6231 - BUILD: add explicit support for Mac OS/X
6232 - BUG/MAJOR: http: use a static storage for sample fetch context
6233 - BUG/MEDIUM: ssl: improve error processing and reporting in ssl_sock_load_cert_list_file()
6234 - BUG/MAJOR: http: fix regression introduced by commit a890d072
6235 - BUG/MAJOR: http: fix regression introduced by commit d655ffe
6236 - BUG/CRITICAL: using HTTP information in tcp-request content may crash the process
6237 - MEDIUM: acl: remove flag ACL_MAY_LOOKUP which is improperly used
6238 - MEDIUM: samples: use new flags to describe compatibility between fetches and their usages
6239 - MINOR: log: indicate it when some unreliable sample fetches are logged
6240 - MEDIUM: samples: move payload-based fetches and ACLs to their own file
6241 - MINOR: backend: rename sample fetch functions and declare the sample keywords
6242 - MINOR: frontend: rename sample fetch functions and declare the sample keywords
6243 - MINOR: listener: rename sample fetch functions and declare the sample keywords
6244 - MEDIUM: http: unify acl and sample fetch functions
6245 - MINOR: session: rename sample fetch functions and declare the sample keywords
6246 - MAJOR: acl: make all ACLs reference the fetch function via a sample.
6247 - MAJOR: acl: remove the arg_mask from the ACL definition and use the sample fetch's
6248 - MAJOR: acl: remove fetch argument validation from the ACL struct
6249 - MINOR: http: add new direction-explicit sample fetches for headers and cookies
6250 - MINOR: payload: add new direction-explicit sample fetches
6251 - CLEANUP: acl: remove ACL hooks which were never used
6252 - MEDIUM: proxy: remove acl_requires and just keep a flag "http_needed"
6253 - MINOR: sample: provide a function to report the name of a sample check point
6254 - MAJOR: acl: convert all ACL requires to SMP use+val instead of ->requires
6255 - CLEANUP: acl: remove unused references to ACL_USE_*
6256 - MINOR: http: replace acl_parse_ver with acl_parse_str
6257 - MEDIUM: acl: move the ->parse, ->match and ->smp fields to acl_expr
6258 - MAJOR: acl: add option -m to change the pattern matching method
6259 - MINOR: acl: remove the use_count in acl keywords
6260 - MEDIUM: acl: have a pointer to the keyword name in acl_expr
6261 - MEDIUM: acl: support using sample fetches directly in ACLs
6262 - MEDIUM: http: remove val_usr() to validate user_lists
6263 - MAJOR: sample: maintain a per-proxy list of the fetch args to resolve
6264 - MINOR: ssl: add support for the "alpn" bind keyword
6265 - MINOR: http: status code 303 is HTTP/1.1 only
6266 - MEDIUM: http: implement redirect 307 and 308
6267 - MINOR: http: status 301 should not be marked non-cacheable
6268
Willy Tarreaua3ecbd92012-12-28 15:04:05 +010062692012/12/28 : 1.5-dev17
6270 - MINOR: ssl: Setting global tune.ssl.cachesize value to 0 disables SSL session cache.
6271 - BUG/MEDIUM: stats: fix stats page regression introduced by commit 20b0de5
6272 - BUG/MINOR: stats: last fix was still wrong
6273 - BUG/MINOR: stats: http-request rules still don't cope with stats
6274 - BUG/MINOR: http: http-request add-header emits a corrupted header
6275 - BUG/MEDIUM: stats: disable request analyser when processing POST or HEAD
6276 - BUG/MINOR: log: make log-format, unique-id-format and add-header more independant
6277 - BUILD: log: unused variable svid
6278 - CLEANUP: http: rename the misleading http_check_access_rule
6279 - MINOR: http: move redirect rule processing to its own function
6280 - REORG: config: move the http redirect rule parser to proto_http.c
6281 - MEDIUM: http: add support for "http-request redirect" rules
6282 - MEDIUM: http: add support for "http-request tarpit" rule
6283
Willy Tarreau69eda352012-12-24 16:48:14 +010062842012/12/24 : 1.5-dev16
6285 - BUG/MEDIUM: ssl: Prevent ssl error from affecting other connections.
6286 - BUG/MINOR: ssl: error is not reported if it occurs simultaneously with peer close detection.
6287 - MINOR: ssl: add fetch and acl "ssl_c_used" to check if current SSL session uses a client certificate.
6288 - MINOR: contrib: make the iprange tool grep for addresses
6289 - CLEANUP: polling: gcc doesn't always optimize constants away
6290 - OPTIM: poll: optimize fd management functions for low register count CPUs
6291 - CLEANUP: poll: remove a useless double-check on fdtab[fd].owner
6292 - OPTIM: epoll: use a temp variable for intermediary flag computations
6293 - OPTIM: epoll: current fd does not count as a new one
6294 - BUG/MINOR: poll: the I/O handler was called twice for polled I/Os
6295 - MINOR: http: make resp_ver and status ACLs check for the presence of a response
6296 - BUG/MEDIUM: stream-interface: fix possible stalls during transfers
6297 - BUG/MINOR: stream_interface: don't return when the fd is already set
6298 - BUG/MEDIUM: connection: always update connection flags prior to computing polling
6299 - CLEANUP: buffer: use buffer_empty() instead of buffer_len()==0
6300 - BUG/MAJOR: stream_interface: fix occasional data transfer freezes
6301 - BUG/MEDIUM: stream_interface: fix another case where the reader might not be woken up
6302 - BUG/MINOR: http: don't abort client connection on premature responses
6303 - BUILD: no need to clean up when making git-tar
6304 - MINOR: log: add a tag for amount of bytes uploaded from client to server
6305 - BUG/MEDIUM: log: fix possible segfault during config parsing
6306 - MEDIUM: log: change a few log tokens to make them easier to remember
6307 - BUG/MINOR: log: add_to_logformat_list() used the wrong constants
6308 - MEDIUM: log-format: make the format parser more robust and more extensible
6309 - MINOR: sample: support cast from bool to string
6310 - MINOR: samples: add a function to fetch and convert any sample to a string
6311 - MINOR: log: add lf_text_len
6312 - MEDIUM: log: add the ability to include samples in logs
6313 - REORG: stats: massive code reorg and cleanup
6314 - REORG: stats: move the HTTP header injection to proto_http
6315 - REORG: stats: functions are now HTTP/CLI agnostic
6316 - BUG/MINOR: log: fix regression introduced by commit 8a3f52
6317 - MINOR: chunks: centralize the trash chunk allocation
6318 - MEDIUM: stats: use hover boxes instead of title to report details
6319 - MEDIUM: stats: use multi-line tips to display detailed counters
6320 - MINOR: tools: simplify the use of the int to ascii macros
6321 - MINOR: stats: replace STAT_FMT_CSV with STAT_FMT_HTML
6322 - MINOR: http: prepare to support more http-request actions
6323 - MINOR: log: make parse_logformat_string() take a const char *
6324 - MEDIUM: http: add http-request 'add-header' and 'set-header' to build headers
6325
Willy Tarreau0cae4b32012-12-12 00:39:52 +010063262012/12/12 : 1.5-dev15
6327 - DOC: add a few precisions on compression
6328 - BUG/MEDIUM: ssl: Fix handshake failure on session resumption with client cert.
6329 - BUG/MINOR: ssl: One free session in cache remains unused.
6330 - BUG/MEDIUM: ssl: first outgoing connection would fail with {ca,crt}-ignore-err
6331 - MEDIUM: ssl: manage shared cache by blocks for huge sessions.
6332 - MINOR: acl: add fetch for server session rate
6333 - BUG/MINOR: compression: Content-Type is case insensitive
6334 - MINOR: compression: disable on multipart or status != 200
6335 - BUG/MINOR: http: don't report client aborts as server errors
6336 - MINOR: stats: compute the ratio of compressed response based on 2xx responses
6337 - MINOR: http: factor out the content-type checks
6338 - BUG/MAJOR: stats: correctly check for a possible divide error when showing compression ratios
6339 - BUILD: ssl: OpenSSL 0.9.6 has no renegociation
6340 - BUG/MINOR: http: disable compression when message has no body
6341 - MINOR: compression: make the stats a bit more robust
6342 - BUG/MEDIUM: comp: DEFAULT_MAXZLIBMEM was expressed in bytes and not megabytes
6343 - MINOR: connection: don't remove failed handshake flags
6344 - MEDIUM: connection: add an error code in connections
6345 - MEDIUM: connection: add minimal error reporting in logs for incomplete connections
6346 - MEDIUM: connection: add error reporting for the PROXY protocol header
6347 - MEDIUM: connection: add error reporting for the SSL
6348 - DOC: document the connection error format in logs
6349 - BUG/MINOR: http: don't log a 503 on client errors while waiting for requests
6350 - BUILD: stdbool is not portable
6351 - BUILD: ssl: NAME_MAX is not portable, use MAXPATHLEN instead
6352 - BUG/MAJOR: raw_sock: must check error code on hangup
6353 - BUG/MAJOR: polling: do not set speculative events on ERR nor HUP
6354 - BUG/MEDIUM: session: fix FD leak when transport layer logging is enabled
6355 - MINOR: stats: add a few more information on session dump
6356 - BUG/MINOR: tcp: set the ADDR_TO_SET flag on outgoing connections
6357 - CLEANUP: connection: remove unused server/proxy/task/si_applet declarations
6358 - BUG/MEDIUM: tcp: process could theorically crash on lack of source ports
6359 - MINOR: cfgparse: mention "interface" in the list of allowed "source" options
6360 - MEDIUM: connection: introduce "struct conn_src" for servers and proxies
6361 - CLEANUP: proto_tcp: use the same code to bind servers and backends
6362 - CLEANUP: backend: use the same tproxy address selection code for servers and backends
6363 - BUG/MEDIUM: stick-tables: conversions to strings were broken in dev13
6364 - MEDIUM: proto_tcp: add support for tracking L7 information
6365 - MEDIUM: counters: add sc1_trackers/sc2_trackers
6366 - MINOR: http: add the "base32" pattern fetch function
6367 - MINOR: http: add the "base32+src" fetch method.
6368 - CLEANUP: session: use an array for the stick counters
6369 - BUG/MINOR: proto_tcp: fix parsing of "table" in track-sc1/2
6370 - BUG/MINOR: proto_tcp: bidirectional fetches not supported anymore in track-sc1/2
6371 - BUG/MAJOR: connection: always recompute polling status upon I/O
6372 - BUG/MINOR: connection: remove a few synchronous calls to polling updates
6373 - MINOR: config: improve error checking on TCP stick-table tracking
6374 - DOC: add some clarifications to the readme
6375
Willy Tarreaufee48ce2012-11-26 03:11:05 +010063762012/11/26 : 1.5-dev14
6377 - DOC: fix minor typos
6378 - BUG/MEDIUM: compression: does not forward trailers
6379 - MINOR: buffer_dump with ASCII
6380 - BUG/MEDIUM: checks: mark the check as stopped after a connect error
6381 - BUG/MEDIUM: checks: ensure we completely disable polling upon success
6382 - BUG/MINOR: checks: don't mark the FD as closed before transport close
6383 - MEDIUM: checks: avoid accumulating TIME_WAITs during checks
6384 - MINOR: cli: report the msg state in full text in "show sess $PTR"
6385 - CLEANUP: checks: rename some server check flags
6386 - MAJOR: checks: rework completely bogus state machine
6387 - BUG/MINOR: checks: slightly clean the state machine up
6388 - MEDIUM: checks: avoid waking the application up for pure TCP checks
6389 - MEDIUM: checks: close the socket as soon as we have a response
6390 - BUG/MAJOR: checks: close FD on all timeouts
6391 - MINOR: checks: fix recv polling after connect()
6392 - MEDIUM: connection: provide a common conn_full_close() function
6393 - BUG/MEDIUM: checks: prevent TIME_WAITs from appearing also on timeouts
6394 - BUG/MAJOR: peers: the listener's maxaccept was not set and caused loops
6395 - MINOR: listeners: make the accept loop more robust when maxaccept==0
6396 - BUG/MEDIUM: acl: correctly resolve all args, not just the first one
6397 - BUG/MEDIUM: acl: make prue_acl_expr() correctly free ACL expressions upon exit
6398 - BUG/MINOR: stats: fix inversion of the report of a check in progress
6399 - MEDIUM: tcp: add explicit support for delayed ACK in connect()
6400 - BUG/MEDIUM: connection: always disable polling upon error
6401 - MINOR: connection: abort earlier when errors are detected
6402 - BUG/MEDIUM: checks: report handshake failures
6403 - BUG/MEDIUM: connection: local_send_proxy must wait for connection to establish
6404 - MINOR: tcp: add support for the "v6only" bind option
6405 - MINOR: stats: also report the computed compression savings in html stats
6406 - MINOR: stats: report the total number of compressed responses per front/back
6407 - MINOR: tcp: add support for the "v4v6" bind option
6408 - DOC: stats: document the comp_rsp stats column
6409 - BUILD: buffer: fix another isprint() warning on solaris
6410 - MINOR: cli: add support for the "show sess all" command
6411 - BUG/MAJOR: cli: show sess <id> may randomly corrupt the back-ref list
6412 - MINOR: cli: improve output format for show sess $ptr
6413
Willy Tarreauad15d122012-11-22 01:11:33 +010064142012/11/22 : 1.5-dev13
6415 - BUILD: fix build issue without USE_OPENSSL
6416 - BUILD: fix compilation error with DEBUG_FULL
6417 - DOC: ssl: remove prefer-server-ciphers documentation
6418 - DOC: ssl: surround keywords with quotes
6419 - DOC: fix minor typo on http-send-name-header
6420 - BUG/MEDIUM: acls using IPv6 subnets patterns incorrectly match IPs
6421 - BUG/MAJOR: fix a segfault on option http_proxy and url_ip acl
6422 - MEDIUM: http: accept IPv6 values with (s)hdr_ip acl
6423 - BUILD: report zlib support in haproxy -vv
6424 - DOC: compression: add some details and clean up the formatting
6425 - DOC: Change is_ssl acl to ssl_fc acl in example
6426 - DOC: make it clear what the HTTP request size is
6427 - MINOR: ssl: try to load Diffie-Hellman parameters from cert file
6428 - DOC: ssl: update 'crt' statement on 'bind' about Diffie-Hellman parameters loading
6429 - MINOR: ssl: add elliptic curve Diffie-Hellman support for ssl key generation
6430 - DOC: ssl: add 'ecdhe' statement on 'bind'
6431 - MEDIUM: ssl: add client certificate authentication support
6432 - DOC: ssl: add 'verify', 'cafile' and 'crlfile' statements on 'bind'
6433 - MINOR: ssl: add fetch and ACL 'client_crt' to test a client cert is present
6434 - DOC: ssl: add fetch and ACL 'client_cert'
6435 - MINOR: ssl: add ignore verify errors options
6436 - DOC: ssl: add 'ca-ignore-err' and 'crt-ignore-err' statements on 'bind'
6437 - MINOR: ssl: add fetch and ACL 'ssl_verify_result'
6438 - DOC: ssl: add fetch and ACL 'ssl_verify_result'
6439 - MINOR: ssl: add fetches and ACLs to return verify errors
6440 - DOC: ssl: add fetches and ACLs 'ssl_verify_crterr', 'ssl_verify_caerr', and 'ssl_verify_crterr_depth'
6441 - MINOR: ssl: disable shared memory and locks on session cache if nbproc == 1
6442 - MINOR: ssl: add build param USE_PRIVATE_CACHE to build cache without shared memory
6443 - MINOR: ssl : add statements 'notlsv11' and 'notlsv12' and rename 'notlsv1' to 'notlsv10'.
6444 - DOC: ssl : add statements 'notlsv11' and 'notlsv12' and rename 'notlsv1' to 'notlsv10'.
6445 - MEDIUM: config: authorize frontend and listen without bind.
6446 - MINOR: ssl: add statement 'no-tls-tickets' on bind to disable stateless session resumption
6447 - DOC: ssl: add 'no-tls-tickets' statement documentation.
6448 - BUG/MINOR: ssl: Fix CRL check was not enabled when crlfile was specified.
6449 - BUG/MINOR: build: Fix compilation issue on openssl 0.9.6 due to missing CRL feature.
6450 - BUG/MINOR: conf: Fix 'maxsslconn' statement error if built without OPENSSL.
6451 - BUG/MINOR: build: Fix failure with USE_OPENSSL=1 and USE_FUTEX=1 on archs i486 and i686.
6452 - MINOR: ssl: remove prefer-server-ciphers statement and set it as the default on ssl listeners.
6453 - BUG/MEDIUM: ssl: subsequent handshakes fail after server configuration changes
6454 - MINOR: ssl: add 'crt-base' and 'ca-base' global statements.
6455 - MEDIUM: conf: rename 'nosslv3' and 'notlsvXX' statements 'no-sslv3' and 'no-tlsvXX'.
6456 - MEDIUM: conf: rename 'cafile' and 'crlfile' statements 'ca-file' and 'crl-file'
6457 - MINOR: ssl: use bit fields to store ssl options instead of one int each
6458 - MINOR: ssl: add 'force-sslv3' and 'force-tlsvXX' statements on bind.
6459 - MINOR: ssl: add 'force-sslv3' and 'force-tlsvXX' statements on server
6460 - MINOR: ssl: add defines LISTEN_DEFAULT_CIPHERS and CONNECT_DEFAULT_CIPHERS.
6461 - BUG/MINOR: ssl: Fix issue on server statements 'no-tls*' and 'no-sslv3'
6462 - MINOR: ssl: move ssl context init for servers from cfgparse.c to ssl_sock.c
6463 - MEDIUM: ssl: reject ssl server keywords in default-server statement
6464 - MINOR: ssl: add statement 'no-tls-tickets' on server side.
6465 - MINOR: ssl: add statements 'verify', 'ca-file' and 'crl-file' on servers.
6466 - DOC: Fix rename of options cafile and crlfile to ca-file and crl-file.
6467 - MINOR: sample: manage binary to string type convertion in stick-table and samples.
6468 - MINOR: acl: add parse and match primitives to use binary type on ACLs
6469 - MINOR: sample: export 'sample_get_trash_chunk(void)'
6470 - MINOR: conf: rename all ssl modules fetches using prefix 'ssl_fc' and 'ssl_c'
6471 - MINOR: ssl: add pattern and ACLs fetches 'ssl_fc_protocol', 'ssl_fc_cipher', 'ssl_fc_use_keysize' and 'ssl_fc_alg_keysize'
6472 - MINOR: ssl: add pattern fetch 'ssl_fc_session_id'
6473 - MINOR: ssl: add pattern and ACLs fetches 'ssl_c_version' and 'ssl_f_version'
6474 - MINOR: ssl: add pattern and ACLs fetches 'ssl_c_s_dn', 'ssl_c_i_dn', 'ssl_f_s_dn' and 'ssl_c_i_dn'
6475 - MINOR: ssl: add pattern and ACLs 'ssl_c_sig_alg' and 'ssl_f_sig_alg'
6476 - MINOR: ssl: add pattern and ACLs fetches 'ssl_c_key_alg' and 'ssl_f_key_alg'
6477 - MINOR: ssl: add pattern and ACLs fetches 'ssl_c_notbefore', 'ssl_c_notafter', 'ssl_f_notbefore' and 'ssl_f_notafter'
6478 - MINOR: ssl: add 'crt' statement on server.
6479 - MINOR: ssl: checks the consistency of a private key with the corresponding certificate
6480 - BUG/MEDIUM: ssl: review polling on reneg.
6481 - BUG/MEDIUM: ssl: Fix some reneg cases not correctly handled.
6482 - BUG/MEDIUM: ssl: Fix sometimes reneg fails if requested by server.
6483 - MINOR: build: allow packagers to specify the ssl cache size
6484 - MINOR: conf: add warning if ssl is not enabled and a certificate is present on bind.
6485 - MINOR: ssl: Add tune.ssl.lifetime statement in global.
6486 - MINOR: compression: Enable compression for IE6 w/SP2, IE7 and IE8
6487 - BUG: http: revert broken optimisation from 82fe75c1a79dac933391501b9d293bce34513755
6488 - DOC: duplicate ssl_sni section
6489 - MEDIUM: HTTP compression (zlib library support)
6490 - CLEANUP: use struct comp_ctx instead of union
6491 - BUILD: remove dependency to zlib.h
6492 - MINOR: compression: memlevel and windowsize
6493 - MEDIUM: use pool for zlib
6494 - MINOR: compression: try init in cfgparse.c
6495 - MINOR: compression: init before deleting headers
6496 - MEDIUM: compression: limit RAM usage
6497 - MINOR: compression: tune.comp.maxlevel
6498 - MINOR: compression: maximum compression rate limit
6499 - MINOR: log-format: check number of arguments in cfgparse.c
6500 - BUG/MEDIUM: compression: no Content-Type header but type in configuration
6501 - BUG/MINOR: compression: deinit zlib only when required
6502 - MEDIUM: compression: don't compress when no data
6503 - MEDIUM: compression: use pool for comp_ctx
6504 - MINOR: compression: rate limit in 'show info'
6505 - MINOR: compression: report zlib memory usage
6506 - BUG/MINOR: compression: dynamic level increase
6507 - DOC: compression: unsupported cases.
6508 - MINOR: compression: CPU usage limit
6509 - MEDIUM: http: add "redirect scheme" to ease HTTP to HTTPS redirection
6510 - BUG/MAJOR: ssl: missing tests in ACL fetch functions
6511 - MINOR: config: add a function to indent error messages
6512 - REORG: split "protocols" files into protocol and listener
6513 - MEDIUM: config: replace ssl_conf by bind_conf
6514 - CLEANUP: listener: remove unused conf->file and conf->line
6515 - MEDIUM: listener: add a minimal framework to register "bind" keyword options
6516 - MEDIUM: config: move the "bind" TCP parameters to proto_tcp
6517 - MEDIUM: move bind SSL parsing to ssl_sock
6518 - MINOR: config: improve error reporting for "bind" lines
6519 - MEDIUM: config: move the common "bind" settings to listener.c
6520 - MEDIUM: config: move all unix-specific bind keywords to proto_uxst.c
6521 - MEDIUM: config: enumerate full list of registered "bind" keywords upon error
6522 - MINOR: listener: add a scope field in the bind keyword lists
6523 - MINOR: config: pass the file and line to config keyword parsers
6524 - MINOR: stats: fill the file and line numbers in the stats frontend
6525 - MINOR: config: set the bind_conf entry on listeners created from a "listen" line.
6526 - MAJOR: listeners: use dual-linked lists to chain listeners with frontends
6527 - REORG: listener: move unix perms from the listener to the bind_conf
6528 - BUG: backend: balance hdr was broken since 1.5-dev11
6529 - MINOR: standard: make memprintf() support a NULL destination
6530 - MINOR: config: make str2listener() use memprintf() to report errors.
6531 - MEDIUM: stats: remove the stats_sock struct from the global struct
6532 - MINOR: ssl: set the listeners' data layer to ssl during parsing
6533 - MEDIUM: stats: make use of the standard "bind" parsers to parse global socket
6534 - DOC: move bind options to their own section
6535 - DOC: stats: refer to "bind" section for "stats socket" settings
6536 - DOC: fix index to reference bind and server options
6537 - BUG: http: do not print garbage on invalid requests in debug mode
6538 - BUG/MINOR: config: check the proper pointer to report unknown protocol
6539 - CLEANUP: connection: offer conn_prepare() to set up a connection
6540 - CLEANUP: config: fix typo inteface => interface
6541 - BUG: stats: fix regression introduced by commit 4348fad1
6542 - MINOR: cli: allow to set frontend maxconn to zero
6543 - BUG/MAJOR: http: chunk parser was broken with buffer changes
6544 - MEDIUM: monitor: simplify handling of monitor-net and mode health
6545 - MINOR: connection: add a pointer to the connection owner
6546 - MEDIUM: connection: make use of the owner instead of container_of
6547 - BUG/MINOR: ssl: report the L4 connection as established when possible
6548 - BUG/MEDIUM: proxy: must not try to stop disabled proxies upon reload
6549 - BUG/MINOR: config: use a copy of the file name in proxy configurations
6550 - BUG/MEDIUM: listener: don't pause protocols that do not support it
6551 - MEDIUM: proxy: add the global frontend to the list of normal proxies
6552 - BUG/MINOR: epoll: correctly disable FD polling in fd_rem()
6553 - MINOR: signal: really ignore signals configured with no handler
6554 - MINOR: buffers: add a few functions to write chars, strings and blocks
6555 - MINOR: raw_sock: always report asynchronous connection errors
6556 - MEDIUM: raw_sock: improve connection error reporting
6557 - REORG: connection: rename the data layer the "transport layer"
6558 - REORG: connection: rename app_cb "data"
6559 - MINOR: connection: provide a generic data layer wakeup callback
6560 - MINOR: connection: split conn_prepare() in two functions
6561 - MINOR: connection: add an init callback to the data_cb struct
6562 - MEDIUM: session: use a specific data_cb for embryonic sessions
6563 - MEDIUM: connection: use a generic data-layer init() callback
6564 - MEDIUM: connection: reorganize connection flags
6565 - MEDIUM: connection: only call the data->wake callback on activity
6566 - MEDIUM: connection: make it possible for data->wake to return an error
6567 - MEDIUM: session: register a data->wake callback to process errors
6568 - MEDIUM: connection: don't call the data->init callback upon error
6569 - MEDIUM: connection: it's not the data layer's role to validate the connection
6570 - MEDIUM: connection: automatically disable polling on error
6571 - REORG: connection: move the PROXY protocol management to connection.c
6572 - MEDIUM: connection: add a new local send-proxy transport callback
6573 - MAJOR: checks: make use of the connection layer to send checks
6574 - REORG: server: move the check-specific parts into a check subsection
6575 - MEDIUM: checks: use real buffers to store requests and responses
6576 - MEDIUM: check: add the ctrl and transport layers in the server check structure
6577 - MAJOR: checks: completely use the connection transport layer
6578 - MEDIUM: checks: add the "check-ssl" server option
6579 - MEDIUM: checks: enable the PROXY protocol with health checks
6580 - CLEANUP: checks: remove minor warnings for assigned but not used variables
6581 - MEDIUM: tcp: enable TCP Fast Open on systems which support it
6582 - BUG: connection: fix regression from commit 9e272bf9
6583 - CLEANUP: cttproxy: remove a warning on undeclared close()
6584 - BUG/MAJOR: ensure that hdr_idx is always reserved when L7 fetches are used
6585 - MEDIUM: listener: add support for linux's accept4() syscall
6586 - MINOR: halog: sort output by cookie code
6587 - BUG/MINOR: halog: -ad/-ac report the correct number of output lines
6588 - BUG/MINOR: halog: fix help message for -ut/-uto
6589 - MINOR: halog: add a parameter to limit output line count
6590 - BUILD: accept4: move the socketcall declaration outside of accept4()
6591 - MINOR: server: add minimal infrastructure to parse keywords
6592 - MINOR: standard: make indent_msg() support empty messages
6593 - MEDIUM: server: check for registered keywords when parsing unknown keywords
6594 - MEDIUM: server: move parsing of keyword "id" to server.c
6595 - BUG/MEDIUM: config: check-send-proxy was ignored if SSL was not builtin
6596 - MEDIUM: ssl: move "server" keyword SSL options parsing to ssl_sock.c
6597 - MEDIUM: log: suffix the frontend's name with '~' when using SSL
6598 - MEDIUM: connection: always unset the transport layer upon close
6599 - BUG/MINOR: session: fix some leftover from debug code
6600 - BUG/MEDIUM: session: enable the conn_session_update() callback
6601 - MEDIUM: connection: add a flag to hold the transport layer
6602 - MEDIUM: log: add a new LW_XPRT flag to pin the transport layer
6603 - MINOR: log: make lf_text use a const char *
6604 - MEDIUM: log: report SSL ciphers and version in logs using logformat %sslc/%sslv
6605 - REORG: http: rename msg->buf to msg->chn since it's a channel
6606 - CLEANUP: http: use 'chn' to name channel variables, not 'buf'
6607 - CLEANUP: channel: use 'chn' instead of 'buf' as local variable names
6608 - CLEANUP: tcp: use 'chn' instead of 'buf' or 'b' for channel pointer names
6609 - CLEANUP: stream_interface: use 'chn' instead of 'b' to name channel pointers
6610 - CLEANUP: acl: use 'chn' instead of 'b' to name channel pointers
6611 - MAJOR: channel: replace the struct buffer with a pointer to a buffer
6612 - OPTIM: channel: reorganize struct members to improve cache efficiency
6613 - CLEANUP: session: remove term_trace which is not used anymore
6614 - OPTIM: session: reorder struct session fields
6615 - OPTIM: connection: pack the struct target
6616 - DOC: document relations between internal entities
6617 - MINOR: ssl: add 'ssl_npn' sample/acl to extract TLS/NPN information
6618 - BUILD: ssl: fix shctx build on older compilers
6619 - MEDIUM: ssl: add support for the "npn" bind keyword
6620 - BUG: ssl: fix ssl_sni ACLs to correctly process regular expressions
6621 - MINOR: chunk: provide string compare functions
6622 - MINOR: sample: accept fetch keywords without parenthesis
6623 - MEDIUM: sample: pass an empty list instead of a null for fetch args
6624 - MINOR: ssl: improve socket behaviour upon handshake abort.
6625 - BUG/MEDIUM: http: set DONTWAIT on data when switching to tunnel mode
6626 - MEDIUM: listener: provide a fallback for accept4() when not supported
6627 - BUG/MAJOR: connection: risk of crash on certain tricky close scenario
6628 - MEDIUM: cli: allow the stats socket to be bound to a specific set of processes
6629 - OPTIM: channel: inline channel_forward's fast path
6630 - OPTIM: http: inline http_parse_chunk_size() and http_skip_chunk_crlf()
6631 - OPTIM: tools: inline hex2i()
6632 - CLEANUP: http: rename HTTP_MSG_DATA_CRLF state
6633 - MINOR: compression: automatically disable compression for older browsers
6634 - MINOR: compression: optimize memLevel to improve byte rate
6635 - BUG/MINOR: http: compression should consider all Accept-Encoding header values
6636 - BUILD: fix coexistence of openssl and zlib
6637 - MINOR: ssl: add pattern and ACLs fetches 'ssl_c_serial' and 'ssl_f_serial'
6638 - BUG/MEDIUM: command-line option -D must have precedence over "debug"
6639 - MINOR: tools: add a clear_addr() function to unset an address
6640 - BUG/MEDIUM: tcp: transparent bind to the source only when address is set
6641 - CLEANUP: remove trashlen
6642 - MAJOR: session: detach the connections from the stream interfaces
6643 - DOC: update document describing relations between internal entities
6644 - BUILD: make it possible to specify ZLIB path
6645 - MINOR: compression: add an offload option to remove the Accept-Encoding header
6646 - BUG: compression: disable auto-close and enable MSG_MORE during transfer
6647 - CLEANUP: completely remove trashlen
6648 - MINOR: chunk: add a function to reset a chunk
6649 - CLEANUP: replace chunk_printf() with chunk_appendf()
6650 - MEDIUM: make the trash be a chunk instead of a char *
6651 - MEDIUM: remove remains of BUFSIZE in HTTP auth and sample conversions
6652 - MEDIUM: stick-table: allocate the table key of size buffer size
6653 - BUG/MINOR: stream_interface: don't loop over ->snd_buf()
6654 - BUG/MINOR: session: ensure that we don't retry connection if some data were sent
6655 - OPTIM: session: don't process the whole session when only timers need a refresh
6656 - BUG/MINOR: session: mark the handshake as complete earlier
6657 - MAJOR: connection: remove the CO_FL_CURR_*_POL flag
6658 - BUG/MAJOR: always clear the CO_FL_WAIT_* flags after updating polling flags
6659 - MAJOR: sepoll: make the poller totally event-driven
6660 - OPTIM: stream_interface: disable reading when CF_READ_DONTWAIT is set
6661 - BUILD: compression: remove a build warning
6662 - MEDIUM: fd: don't unset fdtab[].updated upon delete
6663 - REORG: fd: move the speculative I/O management from ev_sepoll
6664 - REORG: fd: move the fd state management from ev_sepoll
6665 - REORG: fd: centralize the processing of speculative events
6666 - BUG: raw_sock: also consider ENOTCONN in addition to EAGAIN
6667 - BUILD: stream_interface: remove si_fd() and its references
6668 - BUILD: compression: enable build in BSD and OSX Makefiles
6669 - MAJOR: ev_select: make the poller support speculative events
6670 - MAJOR: ev_poll: make the poller support speculative events
6671 - MAJOR: ev_kqueue: make the poller support speculative events
6672 - MAJOR: polling: replace epoll with sepoll and remove sepoll
6673 - MAJOR: polling: remove unused callbacks from the poller struct
6674 - MEDIUM: http: refrain from sending "Connection: close" when Upgrade is present
6675 - CLEANUP: channel: remove any reference of the hijackers
6676 - CLEANUP: stream_interface: remove the external task type target
6677 - MAJOR: connection: replace struct target with a pointer to an enum
6678 - BUG: connection: fix typo in previous commit
6679 - BUG: polling: don't skip polled events in the spec list
6680 - MINOR: splice: disable it when the system returns EBADF
6681 - MINOR: build: allow packagers to specify the default maxzlibmem
6682 - BUG: halog: fix broken output limitation
6683 - BUG: proxy: fix server name lookup in get_backend_server()
6684 - BUG: compression: do not always increment the round counter on allocation failure
6685 - BUG/MEDIUM: compression: release the zlib pools between keep-alive requests
6686 - MINOR: global: don't prevent nbproc from being redefined
6687 - MINOR: config: support process ranges for "bind-process"
6688 - MEDIUM: global: add support for CPU binding on Linux ("cpu-map")
6689 - MINOR: ssl: rename and document the tune.ssl.cachesize option
6690 - DOC: update the PROXY protocol spec to support v2
6691 - MINOR: standard: add a simple popcount function
6692 - MEDIUM: adjust the maxaccept per listener depending on the number of processes
6693 - BUG: compression: properly disable compression when content-type does not match
6694 - MINOR: cli: report connection status in "show sess xxx"
6695 - BUG/MAJOR: stream_interface: certain workloads could cause get stuck
6696 - BUILD: cli: fix build when SSL is enabled
6697 - MINOR: cli: report the fd state in "show sess xxx"
6698 - MINOR: cli: report an error message on missing argument to compression rate
6699 - MINOR: http: add some debugging functions to pretty-print msg state names
6700 - BUG/MAJOR: stream_interface: read0 not always handled since dev12
6701 - DOC: documentation on http header capture is wrong
6702 - MINOR: http: allow the cookie capture size to be changed
6703 - DOC: http header capture has not been limited in size for a long time
6704 - DOC: update readme with build methods for BSD
6705 - BUILD: silence a warning on Solaris about usage of isdigit()
6706 - MINOR: stats: report HTTP compression stats per frontend and per backend
6707 - MINOR: log: add '%Tl' to log-format
6708 - MINOR: samples: update the url_param fetch to match parameters in the path
6709
Willy Tarreau16216822012-09-10 09:46:55 +020067102012/09/10 : 1.5-dev12
6711 - CONTRIB: halog: sort URLs by avg bytes_read or total bytes_read
6712 - MEDIUM: ssl: add support for prefer-server-ciphers option
6713 - MINOR: IPv6 support for transparent proxy
6714 - MINOR: protocol: add SSL context to listeners if USE_OPENSSL is defined
6715 - MINOR: server: add SSL context to servers if USE_OPENSSL is defined
6716 - MEDIUM: connection: add a new handshake flag for SSL (CO_FL_SSL_WAIT_HS).
6717 - MEDIUM: ssl: add new files ssl_sock.[ch] to provide the SSL data layer
6718 - MEDIUM: config: add the 'ssl' keyword on 'bind' lines
6719 - MEDIUM: config: add support for the 'ssl' option on 'server' lines
6720 - MEDIUM: ssl: protect against client-initiated renegociation
6721 - BUILD: add optional support for SSL via the USE_OPENSSL flag
6722 - MEDIUM: ssl: add shared memory session cache implementation.
6723 - MEDIUM: ssl: replace OpenSSL's session cache with the shared cache
6724 - MINOR: ssl add global setting tune.sslcachesize to set SSL session cache size.
6725 - MEDIUM: ssl: add support for SNI and wildcard certificates
6726 - DOC: Typos cleanup
6727 - DOC: fix name for "option independant-streams"
6728 - DOC: specify the default value for maxconn in the context of a proxy
6729 - BUG/MINOR: to_log erased with unique-id-format
6730 - LICENSE: add licence exception for OpenSSL
6731 - BUG/MAJOR: cookie prefix doesn't support cookie-less servers
6732 - BUILD: add an AIX 5.2 (and later) target.
6733 - MEDIUM: fd/si: move peeraddr from struct fdinfo to struct connection
6734 - MINOR: halog: use the more recent dual-mode fgets2 implementation
6735 - BUG/MEDIUM: ebtree: ebmb_insert() must not call cmp_bits on full-length matches
6736 - CLEANUP: halog: make clean should also remove .o files
6737 - OPTIM: halog: make use of memchr() on platforms which provide a fast one
6738 - OPTIM: halog: improve cold-cache behaviour when loading a file
6739 - BUG/MINOR: ACL implicit arguments must be created with unresolved flag
6740 - MINOR: replace acl_fetch_{path,url}* with smp_fetch_*
6741 - MEDIUM: pattern: add the "base" sample fetch method
6742 - OPTIM: i386: make use of kernel-mode-linux when available
6743 - BUG/MINOR: tarpit: fix condition to return the HTTP 500 message
6744 - BUG/MINOR: polling: some events were not set in various pollers
6745 - MINOR: http: add the urlp_val ACL match
6746 - BUG: stktable: tcp_src_to_stktable_key() must return NULL on invalid families
6747 - MINOR: stats/cli: add plans to support more stick-table actions
6748 - MEDIUM: stats/cli: add support for "set table key" to enter values
6749 - REORG/MEDIUM: fd: remove FD_STCLOSE from struct fdtab
6750 - REORG/MEDIUM: fd: remove checks for FD_STERROR in ev_sepoll
6751 - REORG/MEDIUM: fd: get rid of FD_STLISTEN
6752 - REORG/MINOR: connection: move declaration to its own include file
6753 - REORG/MINOR: checks: put a struct connection into the server
6754 - MINOR: connection: add flags to the connection struct
6755 - MAJOR: get rid of fdtab[].state and use connection->flags instead
6756 - MINOR: fd: add a new I/O handler to fdtab
6757 - MEDIUM: polling: prepare to call the iocb() function when defined.
6758 - MEDIUM: checks: make use of fdtab->iocb instead of cb[]
6759 - MEDIUM: protocols: use the generic I/O callback for accept callbacks
6760 - MINOR: connection: add a handler for fd-based connections
6761 - MAJOR: connection: replace direct I/O callbacks with the connection callback
6762 - MINOR: fd: make fdtab->owner a connection and not a stream_interface anymore
6763 - MEDIUM: connection: remove the FD_POLL_* flags only once
6764 - MEDIUM: connection: extract the send_proxy callback from proto_tcp
6765 - MAJOR: tcp: remove the specific I/O callbacks for TCP connection probes
6766 - CLEANUP: remove the now unused fdtab direct I/O callbacks
6767 - MAJOR: remove the stream interface and task management code from sock_*
6768 - MEDIUM: stream_interface: pass connection instead of fd in sock_ops
6769 - MEDIUM: stream_interface: centralize the SI_FL_ERR management
6770 - MAJOR: connection: add a new CO_FL_CONNECTED flag
6771 - MINOR: rearrange tcp_connect_probe() and fix wrong return codes
6772 - MAJOR: connection: call data layer handshakes from the handler
6773 - MEDIUM: fd: remove the EV_FD_COND_* primitives
6774 - MINOR: sock_raw: move calls to si_data_close upper
6775 - REORG: connection: replace si_data_close() with conn_data_close()
6776 - MEDIUM: sock_raw: introduce a read0 callback that is different from shutr
6777 - MAJOR: stream_int: use a common stream_int_shut*() functions regardless of the data layer
6778 - MAJOR: fd: replace all EV_FD_* macros with new fd_*_* inline calls
6779 - MEDIUM: fd: add fd_poll_{recv,send} for use when explicit polling is required
6780 - MEDIUM: connection: add definitions for dual polling mechanisms
6781 - MEDIUM: connection: make use of the new polling functions
6782 - MAJOR: make use of conn_{data|sock}_{poll|stop|want}* in connection handlers
6783 - MEDIUM: checks: don't use FD_WAIT_* anymore
6784 - MINOR: fd: get rid of FD_WAIT_*
6785 - MEDIUM: stream_interface: offer a generic function for connection updates
6786 - MEDIUM: stream-interface: offer a generic chk_rcv function for connections
6787 - MEDIUM: stream-interface: add a snd_buf() callback to sock_ops
6788 - MEDIUM: stream-interface: provide a generic stream_int_chk_snd_conn() function
6789 - MEDIUM: stream-interface: provide a generic si_conn_send_cb callback
6790 - MEDIUM: stream-interface: provide a generic stream_sock_read0() function
6791 - REORG/MAJOR: use "struct channel" instead of "struct buffer"
6792 - REORG/MAJOR: extract "struct buffer" from "struct channel"
6793 - MINOR: connection: provide conn_{data|sock}_{read0|shutw} functions
6794 - REORG: sock_raw: rename the files raw_sock*
6795 - MAJOR: raw_sock: extract raw_sock_to_buf() from raw_sock_read()
6796 - MAJOR: raw_sock: temporarily disable splicing
6797 - MINOR: stream-interface: add an rcv_buf callback to sock_ops
6798 - REORG: stream-interface: move sock_raw_read() to si_conn_recv_cb()
6799 - MAJOR: connection: split the send call into connection and stream interface
6800 - MAJOR: stream-interface: restore splicing mechanism
6801 - MAJOR: stream-interface: make conn_notify_si() more robust
6802 - MEDIUM: proxy-proto: don't use buffer flags in conn_si_send_proxy()
6803 - MAJOR: stream-interface: don't commit polling changes in every callback
6804 - MAJOR: stream-interface: fix splice not to call chk_snd by itself
6805 - MEDIUM: stream-interface: don't remove WAIT_DATA when a handshake is in progress
6806 - CLEANUP: connection: split sock_ops into data_ops, app_cp and si_ops
6807 - REORG: buffers: split buffers into chunk,buffer,channel
6808 - MAJOR: channel: remove the BF_OUT_EMPTY flag
6809 - REORG: buffer: move buffer_flush, b_adv and b_rew to buffer.h
6810 - MINOR: channel: rename bi_full to channel_full as it checks the whole channel
6811 - MINOR: buffer: provide a new buffer_full() function
6812 - MAJOR: channel: stop relying on BF_FULL to take action
6813 - MAJOR: channel: remove the BF_FULL flag
6814 - REORG: channel: move buffer_{replace,insert_line}* to buffer.{c,h}
6815 - CLEANUP: channel: usr CF_/CHN_ prefixes instead of BF_/BUF_
6816 - CLEANUP: channel: use "channel" instead of "buffer" in function names
6817 - REORG: connection: move the target pointer from si to connection
6818 - MAJOR: connection: move the addr field from the stream_interface
6819 - MEDIUM: stream_interface: remove CAP_SPLTCP/CAP_SPLICE flags
6820 - MEDIUM: proto_tcp: remove any dependence on stream_interface
6821 - MINOR: tcp: replace tcp_src_to_stktable_key with addr_to_stktable_key
6822 - MEDIUM: connection: add an ->init function to data layer
6823 - MAJOR: session: introduce embryonic sessions
6824 - MAJOR: connection: make the PROXY decoder a handshake handler
6825 - CLEANUP: frontend: remove the old proxy protocol decoder
6826 - MAJOR: connection: rearrange the polling flags.
6827 - MEDIUM: connection: only call tcp_connect_probe when nothing was attempted yet
6828 - MEDIUM: connection: complete the polling cleanups
6829 - MEDIUM: connection: avoid calling handshakes when polling is required
6830 - MAJOR: stream_interface: continue to update data polling flags during handshakes
6831 - CLEANUP: fd: remove fdtab->flags
6832 - CLEANUP: fdtab: flatten the struct and merge the spec struct with the rest
6833 - CLEANUP: includes: fix includes for a number of users of fd.h
6834 - MINOR: ssl: disable TCP quick-ack by default on SSL listeners
6835 - MEDIUM: config: add a "ciphers" keyword to set SSL cipher suites
6836 - MEDIUM: config: add "nosslv3" and "notlsv1" on bind and server lines
6837 - BUG: ssl: mark the connection as waiting for an SSL connection during the handshake
6838 - BUILD: http: rename error_message http_error_message to fix conflicts on RHEL
6839 - BUILD: ssl: fix shctx build on RHEL with futex
6840 - BUILD: include sys/socket.h to fix build failure on FreeBSD
6841 - BUILD: fix build error without SSL (ssl_cert)
6842 - BUILD: ssl: use MAP_ANON instead of MAP_ANONYMOUS
6843 - BUG/MEDIUM: workaround an eglibc bug which truncates the pidfiles when nbproc > 1
6844 - MEDIUM: config: support per-listener backlog and maxconn
6845 - MINOR: session: do not send an HTTP/500 error on SSL sockets
6846 - MEDIUM: config: implement maxsslconn in the global section
6847 - BUG: tcp: close socket fd upon connect error
6848 - MEDIUM: connection: improve error handling around the data layer
6849 - MINOR: config: make the tasks "nice" value configurable on "bind" lines.
6850 - BUILD: shut a gcc warning introduced by commit 269ab31
6851 - MEDIUM: config: centralize handling of SSL config per bind line
6852 - BUILD: makefile: report USE_OPENSSL status in build options
6853 - BUILD: report openssl build settings in haproxy -vv
6854 - MEDIUM: ssl: add sample fetches for is_ssl, ssl_has_sni, ssl_sni_*
6855 - DOC: add a special acknowledgement for the stud project
6856 - DOC: add missing SSL options for servers and listeners
6857 - BUILD: automatically add -lcrypto for SSL
6858 - DOC: add some info about openssl build in the README
6859
Willy Tarreau02c7c142012-06-04 00:43:45 +020068602012/06/04 : 1.5-dev11
6861 - BUG/MEDIUM: option forwardfor if-none doesn't work with some configurations
6862 - BUG/MAJOR: trash must always be the size of a buffer
6863 - DOC: fix minor regex example issue and improve doc on stats
6864 - MINOR: stream_interface: add a pointer to the listener for TARG_TYPE_CLIENT
6865 - MEDIUM: protocol: add a pointer to struct sock_ops to the listener struct
6866 - MINOR: checks: add on-marked-up option
6867 - MINOR: balance uri: added 'whole' parameter to include query string in hash calculation
6868 - MEDIUM: stream_interface: remove the si->init
6869 - MINOR: buffers: add a rewind function
6870 - BUG/MAJOR: fix regression on content-based hashing and http-send-name-header
6871 - MAJOR: http: stop using msg->sol outside the parsers
6872 - CLEANUP: http: make it more obvious that msg->som is always null outside of chunks
6873 - MEDIUM: http: get rid of msg->som which is not used anymore
6874 - MEDIUM: http: msg->sov and msg->sol will never wrap
6875 - BUG/MAJOR: checks: don't call set_server_status_* when no LB algo is set
6876 - BUG/MINOR: stop connect timeout when connect succeeds
6877 - REORG: move the send-proxy code to tcp_connect_write()
6878 - REORG/MINOR: session: detect the TCP monitor checks at the protocol accept
6879 - MINOR: stream_interface: introduce a new "struct connection" type
6880 - REORG/MINOR: stream_interface: move si->fd to struct connection
6881 - REORG/MEDIUM: stream_interface: move applet->state and private to connection
6882 - MINOR: stream_interface: add a data channel close function
6883 - MEDIUM: stream_interface: call si_data_close() before releasing the si
6884 - MINOR: peers: use the socket layer operations from the peer instead of sock_raw
6885 - BUG/MINOR: checks: expire on timeout.check if smaller than timeout.connect
6886 - MINOR: add a new function call tracer for debugging purposes
6887 - BUG/MINOR: perform_http_redirect also needs to rewind the buffer
6888 - BUG/MAJOR: b_rew() must pass a signed offset to b_ptr()
6889 - BUG/MEDIUM: register peer sync handler in the proper order
6890 - BUG/MEDIUM: buffers: fix bi_putchr() to correctly advance the pointer
6891 - BUG/MINOR: fix option httplog validation with TCP frontends
6892 - BUG/MINOR: log: don't report logformat errors in backends
6893 - REORG/MINOR: use dedicated proxy flags for the cookie handling
6894 - BUG/MINOR: config: do not report twice the incompatibility between cookie and non-http
6895 - MINOR: http: add support for "httponly" and "secure" cookie attributes
6896 - BUG/MEDIUM: ensure that unresolved arguments are freed exactly once
6897 - BUG/MINOR: commit 196729ef used wrong condition resulting in freeing constants
6898 - MEDIUM: stats: add support for soft stop/soft start in the admin interface
6899 - MEDIUM: stats: add the ability to kill sessions from the admin interface
6900 - BUILD: add support for linux kernels >= 2.6.28
6901
Willy Tarreauffb89472012-05-14 07:26:56 +020069022012/05/14 : 1.5-dev10
6903 - BUG/MINOR: stats admin: "Unexpected result" was displayed unconditionally
6904 - BUG/MAJOR: acl: http_auth_group() must not accept any user from the userlist
6905 - CLEANUP: auth: make the code build again with DEBUG_AUTH
6906 - BUG/MEDIUM: config: don't crash at config load time on invalid userlist names
6907 - REORG: use the name sock_raw instead of stream_sock
6908 - MINOR: stream_interface: add a client target : TARG_TYPE_CLIENT
6909 - BUG/MEDIUM: stream_interface: restore get_src/get_dst
6910 - CLEANUP: sock_raw: remove last references to stream_sock
6911 - CLEANUP: stream_interface: stop exporting socket layer functions
6912 - MINOR: stream_interface: add an init callback to sock_ops
6913 - MEDIUM: stream_interface: derive the socket operations from the target
6914 - MAJOR: fd: remove the need for the socket layer to recheck the connection
6915 - MINOR: session: call the socket layer init function when a session establishes
6916 - MEDIUM: session: add support for tunnel timeouts
6917 - MINOR: standard: add a new debug macro : fddebug()
6918 - CLEANUP: fd: remove unused cb->b pointers in the struct fdtab
6919 - OPTIM: proto_http: don't enable quick-ack on empty buffers
6920 - OPTIM/MAJOR: ev_sepoll: process spec events after polled events
6921 - OPTIM/MEDIUM: stream_interface: add a new SI_FL_NOHALF flag
6922
Willy Tarreaua0564f32012-05-08 21:56:27 +020069232012/05/08 : 1.5-dev9
6924 - MINOR: Add release callback to si_applet
6925 - CLEANUP: Fix some minor typos
6926 - MINOR: Add TO/FROM_SET flags to struct stream_interface
6927 - CLEANUP: Fix some minor whitespace issues
6928 - MINOR: stats admin: allow unordered parameters in POST requests
6929 - CLEANUP: fix typo in findserver() log message
6930 - MINOR: stats admin: use the backend id instead of its name in the form
6931 - MINOR: stats admin: reduce memcmp()/strcmp() calls on status codes
6932 - DOC: cleanup indentation, alignment, columns and chapters
6933 - DOC: fix some keywords arguments documentation
6934 - MINOR: cli: display the 4 IP addresses and ports on "show sess XXX"
6935 - BUG/MAJOR: log: possible segfault with logformat
6936 - MEDIUM: log: split of log_format generation
6937 - MEDIUM: log: New format-log flags: %Fi %Fp %Si %Sp %Ts %rt %H %pid
6938 - MEDIUM: log: Unique ID
6939 - MINOR: log: log-format: usable without httplog and tcplog
6940 - BUG/MEDIUM: balance source did not properly hash IPv6 addresses
6941 - MINOR: contrib/iprange: add a network IP range to mask converter
6942 - MEDIUM: session: implement the "use-server" directive
6943 - MEDIUM: log: add a new cookie flag 'U' to report situations where cookie is not used
6944 - MEDIUM: http: make extract_cookie_value() iterate over cookie values
6945 - MEDIUM: http: add cookie and scookie ACLs
6946 - CLEANUP: lb_first: add reference to a paper describing the original idea
6947 - MEDIUM: stream_sock: add a get_src and get_dst callback and remove SN_FRT_ADDR_SET
6948 - BUG/MINOR: acl: req_ssl_sni would randomly fail if a session ID is present
6949 - BUILD: http: make extract_cookie_value() return an int not size_t
6950 - BUILD: http: stop gcc-4.1.2 from complaining about possibly uninitialized values
6951 - CLEANUP: http: message parser must ignore HTTP_MSG_ERROR
6952 - MINOR: standard: add a memprintf() function to build formatted error messages
6953 - CLEANUP: remove a few warning about unchecked return values in debug code
6954 - MEDIUM: move message-related flags from transaction to message
6955 - DOC: add a diagram to explain how circular buffers work
6956 - MAJOR: buffer rework: replace ->send_max with ->o
6957 - MAJOR: buffer: replace buf->l with buf->{o+i}
6958 - MINOR: buffers: provide simple pointer normalization functions
6959 - MINOR: buffers: remove unused function buffer_contig_data()
6960 - MAJOR: buffers: replace buf->w with buf->p - buf->o
6961 - MAJOR: buffers: replace buf->r with buf->p + buf->i
6962 - MAJOR: http: move buffer->lr to http_msg->next
6963 - MAJOR: http: change msg->{som,col,sov,eoh} to be relative to buffer origin
6964 - CLEANUP: http: remove unused http_msg->col
6965 - MAJOR: http: turn http_msg->eol to a buffer-relative offset
6966 - MEDIUM: http: add a pointer to the buffer in http_msg
6967 - MAJOR: http: make http_msg->sol relative to buffer's origin
6968 - MEDIUM: http: http_send_name_header: remove references to msg and buffer
6969 - MEDIUM: http: remove buffer arg in a few header manipulation functions
6970 - MEDIUM: http: remove buffer arg in http_capture_bad_message
6971 - MEDIUM: http: remove buffer arg in http_msg_analyzer
6972 - MEDIUM: http: remove buffer arg in http_upgrade_v09_to_v10
6973 - MEDIUM: http: remove buffer arg in http_buffer_heavy_realign
6974 - MEDIUM: http: remove buffer arg in chunk parsing functions
6975 - MINOR: http: remove useless wrapping checks in http_msg_analyzer
6976 - MEDIUM: buffers: fix unsafe use of buffer_ignore at some places
6977 - MEDIUM: buffers: add new pointer wrappers and get rid of almost all buffer_wrap_add calls
6978 - MEDIUM: buffers: implement b_adv() to advance a buffer's pointer
6979 - MEDIUM: buffers: rename a number of buffer management functions
6980 - MEDIUM: http: add a prefetch function for ACL pattern fetch
6981 - MEDIUM: http: make all ACL fetch function use acl_prefetch_http()
6982 - BUG/MINOR: http_auth: ACLs are volatile, not permanent
6983 - MEDIUM: http/acl: merge all request and response ACL fetches of headers and cookies
6984 - MEDIUM: http/acl: make acl_fetch_hdr_{ip,val} rely on acl_fetch_hdr()
6985 - MEDIUM: add a new typed argument list parsing framework
6986 - MAJOR: acl: make use of the new argument parsing framework
6987 - MAJOR: acl: store the ACL argument types in the ACL keyword declaration
6988 - MEDIUM: acl: acl_find_target() now resolves arguments based on their types
6989 - MAJOR: acl: make acl_find_targets also resolve proxy names at config time
6990 - MAJOR: acl: ensure that implicit table and proxies are valid
6991 - MEDIUM: acl: remove unused tests for missing args when args are mandatory
6992 - MEDIUM: pattern: replace type pattern_arg with type arg
6993 - MEDIUM: pattern: get rid of arg_i in all functions making use of arguments
6994 - MEDIUM: pattern: use the standard arg parser
6995 - MEDIUM: pattern: add an argument validation callback to pattern descriptors
6996 - MEDIUM: pattern: report the precise argument parsing error when known.
6997 - MEDIUM: acl: remove the ACL_TEST_F_NULL_MATCH flag
6998 - MINOR: pattern: add a new 'sample' type to store fetched data
6999 - MEDIUM: pattern: add new sample types to replace pattern types
7000 - MAJOR: acl: make use of the new sample struct and get rid of acl_test
7001 - MEDIUM: pattern/acl: get rid of temp_pattern in ACLs
7002 - MEDIUM: acl: get rid of the SET_RES flags
7003 - MEDIUM: get rid of SMP_F_READ_ONLY and SMP_F_MUST_FREE
7004 - MINOR: pattern: replace struct pattern with struct sample
7005 - MEDIUM: pattern: integrate pattern_data into sample and use sample everywhere
7006 - MEDIUM: pattern: retrieve the sample type in the sample, not in the keyword description
7007 - MEDIUM: acl/pattern: switch rdp_cookie functions stack up-down
7008 - MEDIUM: acl: replace acl_expr with args in acl fetch_* functions
7009 - MINOR: tcp: replace acl_fetch_rdp_cookie with smp_fetch_rdp_cookie
7010 - MEDIUM: acl/pattern: use the same direction scheme
7011 - MEDIUM: acl/pattern: start merging common sample fetch functions
7012 - MEDIUM: pattern: ensure that sample types always cast into other types.
7013 - MEDIUM: acl/pattern: factor out the src/dst address fetches
7014 - MEDIUM: acl: implement payload and payload_lv
7015 - CLEANUP: pattern: ensure that payload and payload_lv always stay in the buffer
7016 - MINOR: stick_table: centralize the handling of empty keys
7017 - MINOR: pattern: centralize handling of unstable data in pattern_process()
7018 - MEDIUM: pattern: use smp_fetch_rdp_cookie instead of the pattern specific version
7019 - MINOR: acl: set SMP_OPT_ITERATE on fetch functions
7020 - MINOR: acl: add a val_args field to keywords
7021 - MINOR: proto_tcp: validate arguments of payload and payload_lv ACLs
7022 - MEDIUM: http: merge acl and pattern header fetch functions
7023 - MEDIUM: http: merge ACL and pattern cookie fetches into a single one
7024 - MEDIUM: acl: report parsing errors to the caller
7025 - MINOR: arg: improve error reporting on invalid arguments
7026 - MINOR: acl: report errors encountered when loading patterns from files
7027 - MEDIUM: acl: extend the pattern parsers to report meaningful errors
7028 - REORG: use the name "sample" instead of "pattern" to designate extracted data
7029 - REORG: rename "pattern" files
7030 - MINOR: acl: add types to ACL patterns
7031 - MINOR: standard: add an IPv6 parsing function (str62net)
7032 - MEDIUM: acl: support IPv6 address matching
7033 - REORG: stream_interface: create a struct sock_ops to hold socket operations
7034 - REORG/MEDIUM: move protocol->{read,write} to sock_ops
7035 - REORG/MEDIUM: stream_interface: initialize socket ops from descriptors
7036 - REORG/MEDIUM: replace stream interface protocol functions by a proto pointer
7037 - REORG/MEDIUM: move the default accept function from sockstream to protocols.c
7038 - MEDIUM: proto_tcp: remove src6 and dst6 pattern fetch methods
7039 - BUG/MINOR: http: error snapshots are wrong if buffer wraps
7040 - BUG/MINOR: http: ensure that msg->err_pos is always relative to buf->p
7041 - MEDIUM: http: improve error capture reports
7042 - MINOR: acl: add the cook_val() match to match a cookie against an integer
7043 - BUG/MEDIUM: send_proxy: fix initialisation of send_proxy_ofs
7044 - MEDIUM: memory: add the ability to poison memory at run time
7045 - BUG/MEDIUM: log: ensure that unique_id is properly initialized
7046 - MINOR: cfgparse: use a common errmsg pointer for all parsers
7047 - MEDIUM: cfgparse: make backend_parse_balance() use memprintf to report errors
7048 - MEDIUM: cfgparse: use the new error reporting framework for remaining cfg_keywords
7049 - MINOR: http: replace http_message_realign() with buffer_slow_realign()
7050
Willy Tarreau9eeb57b2012-03-26 06:15:29 +020070512012/03/26 : 1.5-dev8
7052 - MINOR: patch for minor typo (ressources/resources)
7053 - MEDIUM: http: add support for sending the server's name in the outgoing request
7054 - DOC: mention that default checks are TCP connections
7055 - BUG/MINOR: fix options forwardfor if-none when an alternative header name is specified
7056 - CLEANUP: Make check_statuses, analyze_statuses and process_chk static
7057 - CLEANUP: Fix HCHK spelling errors
7058 - BUG/MINOR: fix typo in processing of http-send-name-header
7059 - MEDIUM: log: Use linked lists for loggers
7060 - BUILD: fix declaration inside a scope block
7061 - REORG: log: split send_log function
7062 - MINOR: config: Parse the string of the log-format config keyword
7063 - MINOR: add ultoa, ulltoa, ltoa, lltoa implementations
7064 - MINOR: Date and time fonctions that don't use snprintf
7065 - MEDIUM: log: make http_sess_log use log_format
7066 - DOC: log-format documentation
7067 - MEDIUM: log: use log_format for mode tcplog
7068 - MEDIUM: log-format: backend source address %Bi %Bp
7069 - BUG/MINOR: log-format: fix %o flag
7070 - BUG/MEDIUM: bad length in log_format and __send_log
7071 - MINOR: logformat %st is signed
7072 - BUILD/MINOR: fix the source URL in the spec file
7073 - DOC: acl is http_first_req, not http_req_first
7074 - BUG/MEDIUM: don't trim last spaces from headers consisting only of spaces
7075 - MINOR: acl: add new matches for header/path/url length
7076 - BUILD: halog: make halog build on solaris
7077 - BUG/MINOR: don't use a wrong port when connecting to a server with mapped ports
7078 - MINOR: remove the client/server side distinction in SI addresses
7079 - MINOR: halog: add support for matching queued requests
7080 - DOC: indicate that cookie "prefix" and "indirect" should not be mixed
7081 - OPTIM/MINOR: move struct sockaddr_storage to the tail of structs
7082 - OPTIM/MINOR: make it possible to change pipe size (tune.pipesize)
7083 - BUILD/MINOR: silent a build warning in src/pipe.c (fcntl)
7084 - OPTIM/MINOR: move the hdr_idx pools out of the proxy struct
7085 - MEDIUM: tune.http.maxhdr makes it possible to configure the maximum number of HTTP headers
7086 - BUG/MINOR: fix a segfault when parsing a config with undeclared peers
7087 - CLEANUP: rename possibly confusing struct field "tracked"
7088 - BUG/MEDIUM: checks: fix slowstart behaviour when server tracking is in use
7089 - MINOR: config: tolerate server "cookie" setting in non-HTTP mode
7090 - MEDIUM: buffers: add some new primitives and rework existing ones
7091 - BUG: buffers: don't return a negative value on buffer_total_space_res()
7092 - MINOR: buffers: make buffer_pointer() support negative pointers too
7093 - CLEANUP: kill buffer_replace() and use an inline instead
7094 - BUG: tcp: option nolinger does not work on backends
7095 - CLEANUP: ebtree: remove a few annoying signedness warnings
7096 - CLEANUP: ebtree: clarify licence and update to 6.0.6
7097 - CLEANUP: ebtree: remove 4-year old harmless typo in duplicates insertion code
7098 - CLEANUP: ebtree: remove another typo, a wrong initialization in insertion code
7099 - BUG: ebtree: ebst_lookup() could return the wrong entry
7100 - OPTIM: stream_sock: reduce the amount of in-flight spliced data
7101 - OPTIM: stream_sock: save a failed recv syscall when splice returns EAGAIN
7102 - MINOR: acl: add support for TLS server name matching using SNI
7103 - BUG: http: re-enable TCP quick-ack upon incomplete HTTP requests
7104 - BUG: proto_tcp: don't try to bind to a foreign address if sin_family is unknown
7105 - MINOR: pattern: export the global temporary pattern
7106 - CLEANUP: patterns: get rid of pattern_data_setstring()
7107 - MEDIUM: acl: use temp_pattern to store fetched information in the "method" match
7108 - MINOR: acl: include pattern.h to make pattern migration more transparent
7109 - MEDIUM: pattern: change the pattern data integer from unsigned to signed
7110 - MEDIUM: acl: use temp_pattern to store any integer-type information
7111 - MEDIUM: acl: use temp_pattern to store any address-type information
7112 - CLEANUP: acl: integer part of acl_test is not used anymore
7113 - MEDIUM: acl: use temp_pattern to store any string-type information
7114 - CLEANUP: acl: remove last data fields from the acl_test struct
7115 - MEDIUM: http: replace get_ip_from_hdr2() with http_get_hdr()
7116 - MEDIUM: patterns: the hdr() pattern is now of type string
7117 - DOC: add minimal documentation on how ACLs work internally
7118 - DOC: add a coding-style file
7119 - OPTIM: halog: keep a fast path for the lines-count only
7120 - CLEANUP: silence a warning when building on sparc
7121 - BUG: http: tighten the list of allowed characters in a URI
7122 - MEDIUM: http: block non-ASCII characters in URIs by default
7123 - DOC: add some documentation from RFC3986 about URI format
7124 - BUG/MINOR: cli: correctly remove the whole table on "clear table"
7125 - BUG/MEDIUM: correctly disable servers tracking another disabled servers.
7126 - BUG/MEDIUM: zero-weight servers must not dequeue requests from the backend
7127 - MINOR: halog: add some help on the command line
7128 - BUILD: fix build error on FreeBSD
7129 - BUG: fix double free in peers config error path
7130 - MEDIUM: improve config check return codes
7131 - BUILD: make it possible to look for pcre in the default system paths
7132 - MINOR: config: emit a warning when 'default_backend' masks servers
7133 - MINOR: backend: rework the LC definition to support other connection-based algos
7134 - MEDIUM: backend: add the 'first' balancing algorithm
7135 - BUG: fix httplog trailing LF
7136 - MEDIUM: increase chunk-size limit to 2GB-1
7137 - BUG: queue: fix dequeueing sequence on HTTP keep-alive sessions
7138 - BUG: http: disable TCP delayed ACKs when forwarding content-length data
7139 - BUG: checks: fix server maintenance exit sequence
7140 - BUG/MINOR: stream_sock: don't remove BF_EXPECT_MORE and BF_SEND_DONTWAIT on partial writes
7141 - DOC: enumerate valid status codes for "observe layer7"
7142 - MINOR: buffer: switch a number of buffer args to const
7143 - CLEANUP: silence signedness warning in acl.c
7144 - BUG: stream_sock: si->release was not called upon shutw()
7145 - MINOR: log: use "%ts" to log term status only and "%tsc" to log with cookie
7146 - BUG/CRITICAL: log: fix risk of crash in development snapshot
7147 - BUG/MAJOR: possible crash when using capture headers on TCP frontends
7148 - MINOR: config: disable header captures in TCP mode and complain
7149
Willy Tarreau60612eb2011-09-10 23:43:11 +020071502011/09/10 : 1.5-dev7
7151 - [BUG] fix binary stick-tables
7152 - [MINOR] http: *_dom matching header functions now also split on ":"
7153 - [BUG] checks: fix support of Mysqld >= 5.5 for mysql-check
7154 - [MINOR] acl: add srv_conn acl to count connections on a specific backend server
7155 - [MINOR] check: add redis check support
7156 - [DOC] small fixes to clearly distinguish between keyword and variables
7157 - [MINOR] halog: add support for termination code matching (-tcn/-TCN)
7158 - [DOC] Minor spelling fixes and grammatical enhancements
7159 - [CLEANUP] dumpstats: make symbols static where possible
7160 - [MINOR] Break out dumping table
7161 - [MINOR] Break out processing of clear table
7162 - [MINOR] Allow listing of stick table by key
7163 - [MINOR] Break out all stick table socat command parsing
7164 - [MINOR] More flexible clearing of stick table
7165 - [MINOR] Allow showing and clearing by key of ipv6 stick tables
7166 - [MINOR] Allow showing and clearing by key of integer stick tables
7167 - [MINOR] Allow showing and clearing by key of string stick tables
7168 - [CLEANUP] Remove assigned but unused variables
7169 - [CLEANUP] peers.h: fix declarations
7170 - [CLEANUP] session.c: Make functions static where possible
7171 - [MINOR] Add active connection list to server
7172 - [MINOR] Allow shutdown of sessions when a server becomes unavailable
7173 - [MINOR] Add down termination condition
7174 - [MINOR] Make appsess{,ion}_refresh static
7175 - [MINOR] Add rdp_cookie pattern fetch function
7176 - [CLEANUP] Remove unnecessary casts
7177 - [MINOR] Add non-stick server option
7178 - [MINOR] Consistently use error in tcp_parse_tcp_req()
7179 - [MINOR] Consistently free expr on error in cfg_parse_listen()
7180 - [MINOR] Free rdp_cookie_name on denint()
7181 - [MINOR] Free tcp rules on denint()
7182 - [MINOR] Free stick table pool on denint()
7183 - [MINOR] Free stick rules on denint()
7184 - [MEDIUM] Fix stick-table replication on soft-restart
7185 - [MEDIUM] Correct ipmask() logic
7186 - [MINOR] Correct type in table dump examples
7187 - [MINOR] Fix build error in stream_int_register_handler()
7188 - [MINOR] Use DPRINTF in assign_server()
7189 - [BUG] checks: http-check expect could fail a check on multi-packet responses
7190 - [DOC] fix minor typo in the "dispatch" doc
7191 - [BUG] proto_tcp: fix address binding on remote source
7192 - [MINOR] http: don't report the "haproxy" word on the monitoring response
7193 - [REORG] http: move HTTP error codes back to proto_http.h
7194 - [MINOR] http: make the "HTTP 200" status code configurable.
7195 - [MINOR] http: partially revert the chunking optimization for now
7196 - [MINOR] stream_sock: always clear BF_EXPECT_MORE upon complete transfer
7197 - [CLEANUP] stream_sock: remove unneeded FL_TCP and factor out test
7198 - [MEDIUM] http: add support for "http-no-delay"
7199 - [OPTIM] http: optimize chunking again in non-interactive mode
7200 - [OPTIM] stream_sock: avoid fast-forwarding of partial data
7201 - [OPTIM] stream_sock: don't use splice on too small payloads
7202 - [MINOR] config: make it possible to specify a cookie even without a server
7203 - [BUG] stats: support url-encoded forms
7204 - [MINOR] config: automatically compute a default fullconn value
7205 - [CLEANUP] config: remove some left-over printf debugging code from previous patch
7206 - [DOC] add missing entry or stick store-response
7207 - [MEDIUM] http: add support for 'cookie' and 'set-cookie' patterns
7208 - [BUG] halog: correctly handle truncated last line
7209 - [MINOR] halog: make SKIP_CHAR stop on field delimiters
7210 - [MINOR] halog: add support for HTTP log matching (-H)
7211 - [MINOR] halog: gain back performance before SKIP_CHAR fix
7212 - [OPTIM] halog: cache some common fields positions
7213 - [OPTIM] halog: check once for correct line format and reuse the pointer
7214 - [OPTIM] halog: remove many 'if' by using a function pointer for the filters
7215 - [OPTIM] halog: remove support for tab delimiters in input data
7216 - [BUG] session: risk of crash on out of memory (1.5-dev regression)
7217 - [MINOR] session: try to emit a 500 response on memory allocation errors
7218 - [OPTIM] stream_sock: reduce the default number of accepted connections at once
7219 - [BUG] stream_sock: disable listener when system resources are exhausted
7220 - [MEDIUM] proxy: add a PAUSED state to listeners and move socket tricks out of proxy.c
7221 - [BUG] stream_sock: ensure orphan listeners don't accept too many connections
7222 - [MINOR] listeners: add listen_full() to mark a listener full
7223 - [MINOR] listeners: add support for queueing resource limited listeners
7224 - [MEDIUM] listeners: put listeners in queue upon resource shortage
7225 - [MEDIUM] listeners: queue proxy-bound listeners at the proxy's
7226 - [MEDIUM] listeners: don't stop proxies when global maxconn is reached
7227 - [MEDIUM] listeners: don't change listeners states anymore in maintain_proxies
7228 - [CLEANUP] proxy: rename a few proxy states (PR_STIDLE and PR_STRUN)
7229 - [MINOR] stats: report a "WAITING" state for sockets waiting for resource
7230 - [MINOR] proxy: make session rate-limit more accurate
7231 - [MINOR] sessions: only wake waiting listeners up if rate limit is OK
7232 - [BUG] proxy: peers must only be stopped once, not upon every call to maintain_proxies
7233 - [CLEANUP] proxy: merge maintain_proxies() operation inside a single loop
7234 - [MINOR] task: new function task_schedule() to schedule a wake up
7235 - [MAJOR] proxy: finally get rid of maintain_proxies()
7236 - [BUG] proxy: stats frontend and peers were missing many initializers
7237 - [MEDIUM] listeners: add a global listener management task
7238 - [MINOR] proxy: make findproxy() return proxies from numeric IDs too
7239 - [DOC] fix typos, "#" is a sharp, not a dash
7240 - [MEDIUM] stats: add support for changing frontend's maxconn at runtime
7241 - [MEDIUM] checks: group health checks methods by values and save option bits
7242 - [MINOR] session-counters: add the ability to clear the counters
7243 - [BUG] check: http-check expect + regex would crash in defaults section
7244 - [MEDIUM] http: make x-forwarded-for addition conditional
7245 - [REORG] build: move syscall redefinition to specific places
7246 - [CLEANUP] update the year in the copyright banner
7247 - [BUG] possible crash in 'show table' on stats socket
7248 - [BUG] checks: use the correct destination port for sending checks
7249 - [BUG] backend: risk of picking a wrong port when mapping is used with crossed families
7250 - [MINOR] make use of set_host_port() and get_host_port() to get rid of family mismatches
7251 - [DOC] fixed a few "sensible" -> "sensitive" errors
7252 - [MINOR] make use of addr_to_str() and get_host_port() to replace many inet_ntop()
7253 - [BUG] http: trailing white spaces must also be trimmed after headers
7254 - [MINOR] stats: display "<NONE>" instead of the frontend name when unknown
7255 - [MINOR] http: take a capture of too large requests and responses
7256 - [MINOR] http: take a capture of truncated responses
7257 - [MINOR] http: take a capture of bad content-lengths.
7258 - [DOC] add a few old and uncommitted docs
7259 - [CLEANUP] cfgparse: fix reported options for the "bind" keyword
7260 - [MINOR] halog: add -hs/-HS to filter by HTTP status code range
7261 - [MINOR] halog: support backslash-escaped quotes
7262 - [CLEANUP] remove dirty left-over of a debugging message
7263 - [MEDIUM] stats: disable complex socket reservation for stats socket
7264 - [CLEANUP] remove a useless test in manage_global_listener_queue()
7265 - [MEDIUM] stats: add the "set maxconn" setting to the command line interface
7266 - [MEDIUM] add support for global.maxconnrate to limit the per-process conn rate.
7267 - [MINOR] stats: report the current and max global connection rates
7268 - [MEDIUM] stats: add the ability to adjust the global maxconnrate
7269 - [BUG] peers: don't pre-allocate 65000 connections to each peer
7270 - [MEDIUM] don't limit peers nor stats socket to maxconn nor maxconnrate
7271 - [BUG] peers: the peer frontend must not emit any log
7272 - [CLEANUP] proxy: make pause_proxy() perform the required controls and emit the logs
7273 - [BUG] peers: don't keep a peers section which has a NULL frontend
7274 - [BUG] peers: ensure the peers are resumed if they were paused
7275 - [MEDIUM] stats: add the ability to enable/disable/shutdown a frontend at runtime
7276 - [MEDIUM] session: make session_shutdown() an independant function
7277 - [MEDIUM] stats: offer the possibility to kill a session from the CLI
7278 - [CLEANUP] stats: centralize tests for backend/server inputs on the CLI
7279 - [MEDIUM] stats: offer the possibility to kill sessions by server
7280 - [MINOR] halog: do not consider byte 0x8A as end of line
7281 - [MINOR] frontend: ensure debug message length is always initialized
7282 - [OPTIM] halog: make fgets parse more bytes by blocks
7283 - [OPTIM] halog: add assembly version of the field lookup code
7284 - [MEDIUM] poll: add a measurement of idle vs work time
7285 - [CLEANUP] startup: report only the basename in the usage message
7286 - [MINOR] startup: add an option to change to a new directory
7287 - [OPTIM] task: don't scan the run queue if we know it's empty
7288 - [BUILD] stats: stdint is not present on solaris
7289 - [DOC] update the README file to reflect new naming rules for patches
7290 - [MINOR] stats: report the number of requests intercepted by the frontend
7291 - [DOC] update ROADMAP file
7292
Willy Tarreau04df1122011-04-08 00:56:41 +020072932011/04/08 : 1.5-dev6
7294 - [BUG] stream_sock: use get_addr_len() instead of sizeof() on sockaddr_storage
7295 - [BUG] TCP source tracking was broken with IPv6 changes
7296 - [BUG] stick-tables did not work when converting IPv6 to IPv4
7297 - [CRITICAL] fix risk of crash when dealing with space in response cookies
7298
Willy Tarreaub06ed2c2011-03-29 01:10:33 +020072992011/03/29 : 1.5-dev5
7300 - [BUG] standard: is_addr return value for IPv4 was inverted
7301 - [MINOR] update comment about IPv6 support for server
7302 - [MEDIUM] use getaddrinfo to resolve names if gethostbyname fail
7303 - [DOC] update IPv6 support for bind
7304 - [DOC] document IPv6 support for server
7305 - [DOC] fix a minor typo
7306 - [MEDIUM] IPv6 support for syslog
7307 - [DOC] document IPv6 support for syslog
7308 - [MEDIUM] IPv6 support for stick-tables
7309 - [DOC] document IPv6 support for stick-tables
7310 - [DOC] update ROADMAP file
7311 - [BUG] session: src_conn_cur was returning src_conn_cnt instead
7312 - [MINOR] frontend: add a make_proxy_line function
7313 - [MEDIUM] stream_sock: add support for sending the proxy protocol header line
7314 - [MEDIUM] server: add support for the "send-proxy" option
7315 - [DOC] update the spec on the proxy protocol
7316 - [BUILD] proto_tcp: fix build issue with CTTPROXY
7317 - [DOC] update ROADMAP file
7318 - [MEDIUM] config: rework the IPv4/IPv6 address parser to support host-only addresses
7319 - [MINOR] cfgparse: better report wrong listening addresses and make use of str2sa_range
7320 - [BUILD] add the USE_GETADDRINFO build option
7321 - [TESTS] provide a test case for various address formats
7322 - [BUG] session: conn_retries was not always initialized
7323 - [BUG] log: retrieve the target from the session, not the SI
7324 - [BUG] http: fix possible incorrect forwarded wrapping chunk size (take 2)
7325 - [MINOR] tools: add two macros MID_RANGE and MAX_RANGE
7326 - [BUG] http: fix content-length handling on 32-bit platforms
7327 - [OPTIM] buffers: uninline buffer_forward()
7328 - [BUG] stream_sock: fix handling for server side PROXY protocol
7329 - [MINOR] acl: add support for table_cnt and table_avl matches
7330 - [DOC] update ROADMAP file
7331
Willy Tarreaue0052cc2011-03-13 22:15:02 +010073322011/03/13 : 1.5-dev4
7333 - [MINOR] cfgparse: Check whether the path given for the stats socket actually fits into the sockaddr_un structure to avoid truncation.
7334 - [MINOR] unix sockets : inherits the backlog size from the listener
7335 - [CLEANUP] unix sockets : move create_uxst_socket() in uxst_bind_listener()
7336 - [DOC] fix a minor typo
7337 - [DOC] fix ignore-persist documentation
7338 - [MINOR] add warnings on features not compatible with multi-process mode
7339 - [BUG] http: fix http-pretend-keepalive and httpclose/tunnel mode
7340 - [MINOR] stats: add support for several packets in stats admin
7341 - [BUG] stats: admin commands must check the proxy state
7342 - [BUG] stats: admin web interface must check the proxy state
7343 - [MINOR] http: add pattern extraction method to stick on query string parameter
7344 - [MEDIUM] add internal support for IPv6 server addresses
7345 - [MINOR] acl: add be_id/srv_id to match backend's and server's id
7346 - [MINOR] log: add support for passing the forwarded hostname
7347 - [MINOR] log: ability to override the syslog tag
7348 - [MINOR] checks: add PostgreSQL health check
7349 - [DOC] update ROADMAP file
7350 - [BUILD] pattern: use 'int' instead of 'int32_t'
7351 - [OPTIM] linux: add support for bypassing libc to force using vsyscalls
7352 - [BUG] debug: report the correct poller list in verbose mode
7353 - [BUG] capture: do not capture a cookie if there is no memory left
7354 - [BUG] appsession: fix possible double free in case of out of memory
7355 - [CRITICAL] cookies: mixing cookies in indirect mode and appsession can crash the process
7356 - [BUG] http: correctly update the header list when removing two consecutive headers
7357 - [BUILD] add the CPU=native and ARCH=32/64 build options
7358 - [BUILD] add -fno-strict-aliasing to fix warnings with gcc >= 4.4
7359 - [CLEANUP] hash: move the avalanche hash code globally available
7360 - [MEDIUM] hash: add support for an 'avalanche' hash-type
7361 - [DOC] update roadmap file
7362 - [BUG] http: do not re-enable the PROXY analyser on keep-alive
7363 - [OPTIM] http: don't send each chunk in a separate packet
7364 - [DOC] fix minor typos reported recently in the peers section
7365 - [DOC] fix another typo in the doc
7366 - [MINOR] stats: report HTTP message state and buffer flags in error dumps
7367 - [BUG] http chunking: don't report a parsing error on connection errors
7368 - [BUG] stream_interface: truncate buffers when sending error messages
7369 - [MINOR] http: support wrapping messages in error captures
7370 - [MINOR] http: capture incorrectly chunked message bodies
7371 - [MINOR] stats: add global event ID and count
7372 - [BUG] http: analyser optimizations broke pipelining
7373 - [CLEANUP] frontend: only apply TCP-specific settings to TCP/TCP6 sockets
7374 - [BUG] http: fix incorrect error reporting during data transfers
7375 - [CRITICAL] session: correctly leave turn-around and queue states on abort
7376 - [BUG] session: release slot before processing pending connections
7377 - [MINOR] tcp: add support for dynamic MSS setting
7378 - [BUG] stick-table: correctly terminate string keys during lookups
7379 - [BUG] acl: fix handling of empty lines in pattern files
7380 - [BUG] stick-table: use the private buffer when padding strings
7381 - [BUG] ebtree: fix ebmb_lookup() with len smaller than the tree's keys
7382 - [OPTIM] ebtree: ebmb_lookup: reduce stack usage by moving the return code out of the loop
7383 - [OPTIM] ebtree: inline ebst_lookup_len and ebis_lookup_len
7384 - [REVERT] undo the stick-table string key lookup fixes
7385 - [MINOR] http: improve url_param pattern extraction to ignore empty values
7386 - [BUILD] frontend: shut a warning with TCP_MAXSEG
7387 - [BUG] http: update the header list's tail when removing the last header
7388 - [DOC] fix minor typo in the proxy protocol doc
7389 - [DOC] fix typos (http-request instead of http-check)
7390 - [BUG] http: use correct ACL pointer when evaluating authentication
7391 - [BUG] cfgparse: correctly count one socket per port in ranges
7392 - [BUG] startup: set the rlimits before binding ports, not after.
7393 - [BUG] acl: srv_id must return no match when the server is NULL
7394 - [MINOR] acl: add ability to check for internal response-only parameters
7395 - [MINOR] acl: srv_id is only valid in responses
7396 - [MINOR] config: warn if response-only conditions are used in "redirect" rules
7397 - [BUG] acl: fd leak when reading patterns from file
7398 - [DOC] fix minor typo in "usesrc"
7399 - [BUG] http: fix possible incorrect forwarded wrapping chunk size
7400 - [BUG] http: fix computation of message body length after forwarding has started
7401 - [BUG] http: balance url_param did not work with first parameters on POST
7402 - [TESTS] update the url_param regression test to test check_post too
7403 - [DOC] update ROADMAP
7404 - [DOC] internal: reflect the fact that SI_ST_ASS is transient
7405 - [BUG] config: don't crash on empty pattern files.
7406 - [MINOR] stream_interface: make use of an applet descriptor for IO handlers
7407 - [REORG] stream_interface: move the st0, st1 and private members to the applet
7408 - [REORG] stream_interface: split the struct members in 3 parts
7409 - [REORG] session: move client and server address to the stream interface
7410 - [REORG] tcp: make tcpv4_connect_server() take the target address from the SI
7411 - [MEDIUM] stream_interface: store the target pointer and type
7412 - [CLEANUP] stream_interface: remove the applet.handler pointer
7413 - [MEDIUM] log: take the logged server name from the stream interface
7414 - [CLEANUP] session: remove data_source from struct session
7415 - [CLEANUP] stats: make all dump functions only rely on the stream interface
7416 - [REORG] session: move the data_ctx struct to the stream interface's applet
7417 - [MINOR] proxy: add PR_O2_DISPATCH to detect dispatch mode
7418 - [MINOR] cfgparse: only keep one of dispatch, transparent, http_proxy
7419 - [MINOR] session: add a pointer to the new target into the session
7420 - [MEDIUM] session: remove s->prev_srv which is not needed anymore
7421 - [CLEANUP] stream_interface: use inline functions to manipulate targets
7422 - [MAJOR] session: remove the ->srv pointer from struct session
7423 - [MEDIUM] stats: split frontend and backend stats
7424 - [MEDIUM] http: always evaluate http-request rules before stats http-request
7425 - [REORG] http: move the http-request rules to proto_http
7426 - [BUG] http: stats were not incremented on http-request deny
7427 - [MINOR] checks: report it if checks fail due to socket creation error
7428
Willy Tarreau442e8342010-11-11 23:29:35 +010074292010/11/11 : 1.5-dev3
7430 - [DOC] fix http-request documentation
7431 - [MEDIUM] enable/disable servers from the stats web interface
7432 - [MEDIUM] stats: add an admin level
7433 - [DOC] stats: document the "stats admin" statement
7434 - [MINOR] startup: print the proxy socket which caused an error
7435 - [CLEANUP] Remove unneeded chars allocation
7436 - [MINOR] config: detect options not supported due to compilation options
7437 - [MINOR] Add pattern's fetchs payload and payload_lv
7438 - [MINOR] frontend: improve accept-proxy header parsing
7439 - [MINOR] frontend: add tcpv6 support on accept-proxy bind
7440 - [MEDIUM] Enhance message errors management on binds
7441 - [MINOR] Manage unix socket source field on logs
7442 - [MINOR] Manage unix socket source field on session dump on sock stats
7443 - [MINOR] Support of unix listener sockets for debug and log event messages on frontend.c
7444 - [MINOR] Add some tests on sockets family for port remapping and mode transparent.
7445 - [MINOR] Manage socket type unix for some logs
7446 - [MINOR] Enhance controls of socket's family on acls and pattern fetch
7447 - [MINOR] Support listener's sockets unix on http logs.
7448 - [MEDIUM] Add supports of bind on unix sockets.
7449 - [BUG] stick table purge failure if size less than 255
7450 - [BUG] stick table entries expire on counters updates/read or show table, even if there is no "expire" parameter
7451 - [MEDIUM] Implement tcp inspect response rules
7452 - [DOC] tcp-response content and inspect
7453 - [MINOR] new acls fetch req_ssl_hello_type and rep_ssl_hello_type
7454 - [DOC] acls rep_ssl_hello and req_ssl_hello
7455 - [MEDIUM] Create new protected pattern types CONSTSTRING and CONSTDATA to force memcpy if data from protected areas need to be manipulated.
7456 - [DOC] new type binary in stick-table
7457 - [DOC] stick store-response and new patterns payload and payload_lv
7458 - [MINOR] Manage all types (ip, integer, string, binary) on cli "show table" command
7459 - [MEDIUM] Create updates tree on stick table to manage sync.
7460 - [MAJOR] Add new files src/peer.c, include/proto/peers.h and include/types/peers.h for sync stick table management
7461 - [MEDIUM] Manage peers section parsing and stick table registration on peers.
7462 - [MEDIUM] Manage soft stop on peers proxy
7463 - [DOC] add documentation for peers section
7464 - [MINOR] checks: add support for LDAPv3 health checks
7465 - [MINOR] add better support to "mysql-check"
7466 - [BUG] Restore info about available active/backup servers
7467 - [CONTRIB] Update haproxy.pl
7468 - [CONTRIB] Update Cacti Tempates
7469 - [CONTRIB] add templates for Cacti.
7470 - [BUG] http: don't consider commas as a header delimitor within quotes
7471 - [MINOR] support a global jobs counter
7472 - [DOC] add a summary about cookie incompatibilities between specs and browsers
7473 - [DOC] fix description of cookie "insert" and "indirect" modes
7474 - [MEDIUM] http: fix space handling in the request cookie parser
7475 - [MEDIUM] http: fix space handling in the response cookie parser
7476 - [DOC] fix typo in the queue() definition (backend, not frontend)
7477 - [BUG] deinit: unbind listeners before freeing them
7478 - [BUG] stream_interface: only call si->release when both dirs are closed
7479 - [MEDIUM] buffers: rework the functions to exchange between SI and buffers
7480 - [DOC] fix typo in the avg_queue() and be_conn() definition (backend, not frontend)
7481 - [MINOR] halog: add '-tc' to sort by termination codes
7482 - [MINOR] halog: skip non-traffic logs for -st and -tc
7483 - [BUG] stream_sock: cleanly disable the listener in case of resource shortage
7484 - [BUILD] stream_sock: previous fix lacked the #include, causing a warning.
7485 - [DOC] bind option is "defer-accept", not "defer_accept"
7486 - [DOC] missing index entry for http-check send-state
7487 - [DOC] tcp-request inspect-delay is for backends too
7488 - [BUG] ebtree: string_equal_bits() could return garbage on identical strings
7489 - [BUG] stream_sock: try to flush any extra pending request data after a POST
7490 - [BUILD] proto_http: eliminate some build warnings with gcc-2.95
7491 - [MEDIUM] make it possible to combine http-pretend-keepalived with httpclose
7492 - [MEDIUM] tcp-request : don't wait for inspect-delay to expire when the buffer is full
7493 - [MEDIUM] checks: add support for HTTP contents lookup
7494 - [TESTS] add test-check-expect to test various http-check methods
7495 - [MINOR] global: add "tune.chksize" to change the default check buffer size
7496 - [MINOR] cookie: add options "maxidle" and "maxlife"
7497 - [MEDIUM] cookie: support client cookies with some contents appended to their value
7498 - [MINOR] http: make some room in the transaction flags to extend cookies
7499 - [MINOR] cookie: add the expired (E) and old (O) flags for request cookies
7500 - [MEDIUM] cookie: reassign set-cookie status flags to store more states
7501 - [MINOR] add encode/decode function for 30-bit integers from/to base64
7502 - [MEDIUM] cookie: check for maxidle and maxlife for incoming dated cookies
7503 - [MEDIUM] cookie: set the date in the cookie if needed
7504 - [DOC] document the cookie maxidle and maxlife parameters
7505 - [BUG] checks: don't log backend down for all zero-weight servers
7506 - [MEDIUM] checks: set server state to one state from failure when leaving maintenance
7507 - [BUG] config: report correct keywords for "observe"
7508 - [MINOR] checks: ensure that we can inherit binary checks from the defaults section
7509 - [MINOR] acl: add the http_req_first match
7510 - [DOC] fix typos about bind-process syntax
7511 - [BUG] cookie: correctly unset default cookie parameters
7512 - [MINOR] cookie: add support for the "preserve" option
7513 - [BUG] ebtree: fix duplicate strings insertion
7514 - [CONTRIB] halog: report per-url counts, errors and times
7515 - [CONTRIB] halog: minor speed improvement in timer parser
7516 - [MINOR] buffers: add a new request analyser flag for PROXY mode
7517 - [MINOR] listener: add the "accept-proxy" option to the "bind" keyword
7518 - [MINOR] standard: add read_uint() to parse a delimited unsigned integer
7519 - [MINOR] standard: change arg type from const char* to char*
7520 - [MINOR] frontend: add a new analyser to parse a proxied connection
7521 - [MEDIUM] session: call the frontend_decode_proxy analyser on proxied connections
7522 - [DOC] add the proxy protocol's specifications
7523 - [DOC] document the 'accept-proxy' bind option
7524 - [MINOR] cfgparse: report support of <path> for the 'bind' statements
7525 - [DOC] add references to unix socket handling
7526 - [MINOR] move MAXPATHLEN definition to compat.h
7527 - [MEDIUM] unix sockets: cleanup the error reporting path
7528 - [BUG] session: don't stop forwarding of data upon last packet
7529 - [CLEANUP] accept: replace some inappropriate Alert() calls with send_log()
7530 - [BUILD] peers: shut a printf format warning (key_size is a size_t)
7531 - [BUG] accept: don't close twice upon error
7532 - [OPTIM] session: don't recheck analysers when buffer flags have not changed
7533 - [OPTIM] stream_sock: don't clear FDs that are already cleared
7534 - [BUG] proto_tcp: potential bug on pattern fetch dst and dport
7535
Willy Tarreau37242fa2010-08-28 19:21:00 +020075362010/08/28 : 1.5-dev2
7537 - [MINOR] startup: release unused structs after forking
7538 - [MINOR] startup: don't wait for nothing when no old pid remains
7539 - [CLEANUP] reference product branch 1.5
7540 - [MEDIUM] signals: add support for registering functions and tasks
7541 - [MEDIUM] signals: support redistribution of signal zero when stopping
7542 - [BUG] http: don't set auto_close if more data are expected
7543
Willy Tarreaufc815fd2010-08-25 10:56:53 +020075442010/08/25 : 1.5-dev1
7545 - [BUG] stats: session rate limit gets garbaged in the stats
7546 - [DOC] mention 'option http-server-close' effect in Tq section
7547 - [DOC] summarize and highlight persistent connections behaviour
7548 - [DOC] add configuration samples
7549 - [BUG] http: dispatch and http_proxy modes were broken for a long time
7550 - [BUG] http: the transaction must be initialized even in TCP mode
7551 - [BUG] tcp: dropped connections must be counted as "denied" not "failed"
7552 - [BUG] consistent hash: balance on all servers, not only 2 !
7553 - [CONTRIB] halog: report per-server status codes, errors and response times
7554 - [BUG] http: the transaction must be initialized even in TCP mode (part 2)
7555 - [BUG] client: always ensure to zero rep->analysers
7556 - [BUG] session: clear BF_READ_ATTACHED before next I/O
7557 - [BUG] http: automatically close response if req is aborted
7558 - [BUG] proxy: connection rate limiting was eating lots of CPU
7559 - [BUG] http: report correct flags in case of client aborts during body
7560 - [TESTS] refine non-regression tests and add 4 new tests
7561 - [BUG] debug: wrong pointer was used to report a status line
7562 - [BUG] debug: correctly report truncated messages
7563 - [DOC] document the "dispatch" keyword
7564 - [BUG] stick_table: fix possible memory leak in case of connection error
7565 - [CLEANUP] acl: use 'L6' instead of 'L4' in ACL flags relying on contents
7566 - [MINOR] accept: count the incoming connection earlier
7567 - [CLEANUP] tcp: move some non tcp-specific layer6 processing out of proto_tcp
7568 - [CLEANUP] client: move some ACLs away to their respective locations
7569 - [CLEANUP] rename client -> frontend
7570 - [MEDIUM] separate protocol-level accept() from the frontend's
7571 - [MINOR] proxy: add a list to hold future layer 4 rules
7572 - [MEDIUM] config: parse tcp layer4 rules (tcp-request accept/reject)
7573 - [MEDIUM] tcp: check for pure layer4 rules immediately after accept()
7574 - [OPTIM] frontend: tell the compiler that errors are unlikely to occur
7575 - [MEDIUM] frontend: check for LI_O_TCP_RULES in the listener
7576 - [MINOR] frontend: only check for monitor-net rules if LI_O_CHK_MONNET is set
7577 - [CLEANUP] buffer->cto is not used anymore
7578 - [MEDIUM] session: finish session establishment sequence in with I/O handlers
7579 - [MEDIUM] session: initialize server-side timeouts after connect()
7580 - [MEDIUM] backend: initialize the server stream_interface upon connect()
7581 - [MAJOR] frontend: don't initialize the server-side stream_int anymore
7582 - [MEDIUM] session: move the conn_retries attribute to the stream interface
7583 - [MEDIUM] session: don't assign conn_retries upon accept() anymore
7584 - [MINOR] frontend: rely on the frontend and not the backend for INDEPSTR
7585 - [MAJOR] frontend: reorder the session initialization upon accept
7586 - [MINOR] proxy: add an accept() callback for the application layer
7587 - [MAJOR] frontend: split accept() into frontend_accept() and session_accept()
7588 - [MEDIUM] stats: rely on the standard session_accept() function
7589 - [MINOR] buffer: refine the flags that may wake an analyser up.
7590 - [MINOR] stream_sock: don't dereference a non-existing frontend
7591 - [MINOR] session: differenciate between accepted connections and received connections
7592 - [MEDIUM] frontend: count the incoming connection earlier
7593 - [MINOR] frontend: count denied TCP requests separately
7594 - [CLEANUP] stick_table: add/clarify some comments
7595 - [BUILD] memory: add a few missing parenthesis to the pool management macros
7596 - [MINOR] stick_table: add support for variable-sized data
7597 - [CLEANUP] stick_table: rename some stksess struct members to avoid confusion
7598 - [CLEANUP] stick_table: move pattern to key functions to stick_table.c
7599 - [MEDIUM] stick_table: add room for extra data types
7600 - [MINOR] stick_table: add support for "conn_cum" data type.
7601 - [MEDIUM] stick_table: don't overwrite data when storing an entry
7602 - [MINOR] config: initialize stick tables after all the parsing
7603 - [MINOR] stick_table: provide functions to return stksess data from a type
7604 - [MEDIUM] stick_table: move the server ID to a generic data type
7605 - [MINOR] stick_table: enable it for frontends too
7606 - [MINOR] stick_table: export the stick_table_key
7607 - [MINOR] tcp: add per-source connection rate limiting
7608 - [MEDIUM] stick_table: separate storage and update of session entries
7609 - [MEDIUM] stick-tables: add a reference counter to each entry
7610 - [MINOR] session: add a pointer to the tracked counters for the source
7611 - [CLEANUP] proto_tcp: make the config parser a little bit more flexible
7612 - [BUG] config: report the correct proxy type in tcp-request errors
7613 - [MINOR] config: provide a function to quote args in a more friendly way
7614 - [BUG] stick_table: the fix for the memory leak caused a regression
7615 - [MEDIUM] backend: support servers on 0.0.0.0
7616 - [BUG] stick-table: correctly refresh expiration timers
7617 - [MEDIUM] stream-interface: add a ->release callback
7618 - [MINOR] proxy: add a "parent" member to the structure
7619 - [MEDIUM] session: make it possible to call an I/O handler on both SI
7620 - [MINOR] tools: add a fast div64_32 function
7621 - [MINOR] freq_ctr: add new types and functions for periods different from 1s
7622 - [MINOR] errors: provide new status codes for config parsing functions
7623 - [BUG] http: denied requests must not be counted as denied resps in listeners
7624 - [MINOR] tools: add a get_std_op() function to parse operators
7625 - [MEDIUM] acl: make use of get_std_op() to parse intger ranges
7626 - [MAJOR] stream_sock: better wakeup conditions on read()
7627 - [BUG] session: analysers must be checked when SI state changes
7628 - [MINOR] http: reset analysers to listener's, not frontend's
7629 - [MEDIUM] session: support "tcp-request content" rules in backends
7630 - [BUILD] always match official tags when doing git-tar
7631 - [MAJOR] stream_interface: fix the wakeup conditions for embedded iohandlers
7632 - [MEDIUM] buffer: make buffer_feed* support writing non-contiguous chunks
7633 - [MINOR] tcp: src_count acl does not have a permanent result
7634 - [MAJOR] session: add track-counters to track counters related to the session
7635 - [MINOR] stick-table: provide a table lookup function
7636 - [MINOR] stick-table: use suffix "_cnt" for cumulated counts
7637 - [MEDIUM] session: move counter ACL fetches from proto_tcp
7638 - [MEDIUM] session: add concurrent connections counter
7639 - [MEDIUM] session: add data in and out volume counters
7640 - [MINOR] session: add the trk_conn_cnt ACL keyword to track connection counts
7641 - [MEDIUM] session-counters: automatically update tracked connection count
7642 - [MINOR] session: add the trk_conn_cur ACL keyword to track concurrent connection
7643 - [MINOR] session: add trk_kbytes_* ACL keywords to track data size
7644 - [MEDIUM] session: add a counter on the cumulated number of sessions
7645 - [MINOR] config: support a comma-separated list of store data types in stick-table
7646 - [MEDIUM] stick-tables: add support for arguments to data_types
7647 - [MEDIUM] stick-tables: add stored data argument type checking
7648 - [MEDIUM] session counters: add conn_rate and sess_rate counters
7649 - [MEDIUM] session counters: add bytes_in_rate and bytes_out_rate counters
7650 - [MINOR] stktable: add a stktable_update_key() function
7651 - [MINOR] session-counters: add a general purpose counter (gpc0)
7652 - [MEDIUM] session-counters: add HTTP req/err tracking
7653 - [MEDIUM] stats: add "show table [<name>]" to dump a stick-table
7654 - [MEDIUM] stats: add "clear table <name> key <value>" to clear table entries
7655 - [CLEANUP] stick-table: declare stktable_data_types as extern
7656 - [MEDIUM] stick-table: make use of generic types for stored data
7657 - [MINOR] stats: correctly report errors on "show table" and "clear table"
7658 - [MEDIUM] stats: add the ability to dump table entries matching criteria
7659 - [DOC] configuration: document all the new tracked counters
7660 - [DOC] stats: document "show table" and "clear table"
7661 - [MAJOR] session-counters: split FE and BE track counters
7662 - [MEDIUM] tcp: accept the "track-counters" in "tcp-request content" rules
7663 - [MEDIUM] session counters: automatically remove expired entries.
7664 - [MEDIUM] config: replace 'tcp-request <action>' with "tcp-request connection"
7665 - [MEDIUM] session-counters: make it possible to count connections from frontend
7666 - [MINOR] session-counters: use "track-sc{1,2}" instead of "track-{fe,be}-counters"
7667 - [MEDIUM] session-counters: correctly unbind the counters tracked by the backend
7668 - [CLEANUP] stats: use stksess_kill() to remove table entries
7669 - [DOC] update the references to session counters and to tcp-request connection
7670 - [DOC] cleanup: split a few long lines
7671 - [MEDIUM] http: forward client's close when abortonclose is set
7672 - [BUG] queue: don't dequeue proxy-global requests on disabled servers
7673 - [BUG] stats: global stats timeout may be specified before stats socket.
7674 - [BUG] conf: add tcp-request content rules to the correct list
7675
Willy Tarreau21475e32010-05-23 08:46:08 +020076762010/05/23 : 1.5-dev0
7677 - exact copy of 1.4.6
7678
Willy Tarreau5fdd77d2010-05-16 22:34:28 +020076792010/05/16 : 1.4.6
7680 - [BUILD] ebtree: update to v6.0.1 to remove references to dprintf()
7681 - [CLEANUP] acl: make use of eb_is_empty() instead of open coding the tree's emptiness test
7682 - [MINOR] acl: add srv_is_up() to check that a specific server is up or not
7683 - [DOC] add a few precisions about the use of RDP cookies
7684
Willy Tarreau9d4d9e32010-05-13 22:17:08 +020076852010/05/13 : 1.4.5
7686 - [DOC] report minimum kernel version for tproxy in the Makefile
7687 - [MINOR] add the "ignore-persist" option to conditionally ignore persistence
7688 - [DOC] add the "ignore-persist" option to conditionally ignore persistence
7689 - [DOC] fix ignore-persist/force-persist documentation
7690 - [BUG] cttproxy: socket fd leakage in check_cttproxy_version
7691 - [DOC] doc/configuration.txt: fix typos
7692 - [MINOR] option http-pretend-keepalive is both for FEs and BEs
7693 - [MINOR] fix possible crash in debug mode with invalid responses
7694 - [MINOR] halog: add support for statisticts on status codes
7695 - [OPTIM] halog: use a faster zero test in fgets()
7696 - [OPTIM] halog: minor speedup by using unlikely()
7697 - [OPTIM] halog: speed up fgets2-64 by about 10%
7698 - [DOC] refresh the README file and merge the CONTRIB file into it
7699 - [MINOR] acl: support loading values from files
7700 - [MEDIUM] ebtree: upgrade to version 6.0
7701 - [MINOR] acl trees: add flags and union members to store values in trees
7702 - [MEDIUM] acl: add ability to insert patterns in trees
7703 - [MEDIUM] acl: add tree-based lookups of exact strings
7704 - [MEDIUM] acl: add tree-based lookups of networks
7705 - [MINOR] acl: ignore empty lines and comments in pattern files
7706 - [MINOR] stick-tables: add support for "stick on hdr"
7707
Willy Tarreau9508c1c2010-04-07 23:12:24 +020077082010/04/07 : 1.4.4
7709 - [BUG] appsession should match the whole cookie name
7710 - [CLEANUP] proxy: move PR_O_SSL3_CHK to options2 to release one flag
7711 - [MEDIUM] backend: move the transparent proxy address selection to backend
7712 - [MINOR] add very fast IP parsing functions
7713 - [MINOR] add new tproxy flags for dynamic source address binding
7714 - [MEDIUM] add ability to connect to a server from an IP found in a header
7715 - [BUILD] config: last patch breaks build without CONFIG_HAP_LINUX_TPROXY
7716 - [MINOR] http: make it possible to pretend keep-alive when doing close
7717 - [MINOR] config: report "default-server" instead of "(null)" in error messages
7718
Willy Tarreau75934a12010-03-30 09:50:08 +020077192010/03/30 : 1.4.3
7720 - [CLEANUP] stats: remove printf format warning in stats_dump_full_sess_to_buffer()
7721 - [MEDIUM] session: better fix for connection to servers with closed input
7722 - [DOC] indicate in the doc how to bind to port ranges
7723 - [BUG] backend: L7 hashing must not be performed on incomplete requests
7724 - [TESTS] add a simple program to test connection resets
7725 - [MINOR] cli: "show errors" should display "backend <NONE>" when backend was not used
7726 - [MINOR] config: emit warnings when HTTP-only options are used in TCP mode
7727 - [MINOR] config: allow "slowstart 0s"
7728 - [BUILD] 'make tags' did not consider files ending in '.c'
7729 - [MINOR] checks: add the ability to disable a server in the config
7730
Willy Tarreauda618cb2010-03-17 23:41:57 +010077312010/03/17 : 1.4.2
7732 - [CLEANUP] product branch update
7733 - [DOC] Some more documentation cleanups
7734 - [BUG] clf logs segfault when capturing a non existant header
7735 - [OPTIM] config: only allocate check buffer when checks are enabled
7736 - [MEDIUM] checks: support multi-packet health check responses
7737 - [CLEANUP] session: remove duplicate test
7738 - [BUG] http: don't wait for response data to leave buffer is client has left
7739 - [MINOR] proto_uxst: set accept_date upon accept() to the wall clock time
7740 - [MINOR] stats: don't send empty lines in "show errors"
7741 - [MINOR] stats: make the data dump function reusable for other purposes
7742 - [MINOR] stats socket: add show sess <id> to dump details about a session
7743 - [BUG] stats: connection reset counters must be plain ascii, not HTML
7744 - [BUG] url_param hash may return a down server
7745 - [MINOR] force null-termination of hostname
7746 - [MEDIUM] connect to servers even when the input has already been closed
7747 - [BUG] don't merge anonymous ACLs !
7748 - [BUG] config: fix endless loop when parsing "on-error"
7749 - [MINOR] http: don't mark a server as failed when it returns 501/505
7750 - [OPTIM] checks: try to detect the end of response without polling again
7751 - [BUG] checks: don't report an error when recv() returns an error after data
7752 - [BUG] checks: don't abort when second poll returns an error
7753 - [MINOR] checks: make shutdown() silently fail
7754 - [BUG] http: fix truncated responses on chunk encoding when size divides buffer size
7755 - [BUG] init: unconditionally catch SIGPIPE
7756 - [BUG] checks: don't wait for a close to start parsing the response
7757
Willy Tarreauc5e60c32010-03-04 23:39:19 +010077582010/03/04 : 1.4.1
7759 - [BUG] Clear-cookie path issue
7760 - [DOC] fix typo on stickiness rules
7761 - [BUILD] fix BSD and OSX makefiles for missing files
7762 - [BUILD] includes order breaks OpenBSD build
7763 - [BUILD] fix some build warnings on Solaris with is* macros
7764 - [BUG] logs: don't report "last data" when we have just closed after an error
7765 - [BUG] logs: don't report "proxy request" when server closes early
7766 - [BUILD] fix platform-dependant build issues related to crypt()
7767 - [STATS] count transfer aborts caused by client and by server
7768 - [STATS] frontend requests were not accounted for failed requests
7769 - [MINOR] report total number of processed connections when stopping a proxy
7770 - [DOC] be more clear about the limitation to one single monitor-net entry
7771
Willy Tarreaue18fdfd2010-02-26 14:55:22 +010077722010/02/26 : 1.4.0
7773 - [MINOR] stats: report maint state for tracking servers too
7774 - [DOC] fix summary to add pattern extraction
7775 - [DOC] Documentation cleanups
7776 - [BUG] cfgparse memory leak and missing free calls in deinit()
7777 - [BUG] pxid/puid/luid: don't shift IDs when some of them are forced
7778 - [EXAMPLES] add auth.cfg
7779 - [BUG] uri_auth: ST_SHLGNDS should be 0x00000008 not 0x0000008
7780 - [BUG] uri_auth: do not attemp to convert uri_auth -> http-request more than once
7781 - [BUILD] auth: don't use unnamed unions
7782 - [BUG] config: report unresolvable host names as errors
7783 - [BUILD] fix build breakage with DEBUG_FULL
7784 - [DOC] fix a typo about timeout check and clarify the explanation.
7785 - [MEDIUM] http: don't use trash to realign large buffers
7786 - [STATS] report HTTP requests (total and rate) in frontends
7787 - [STATS] separate frontend and backend HTTP stats
7788 - [MEDIUM] http: revert to use a swap buffer for realignment
7789 - [MINOR] stats: report the request rate in frontends as cell titles
7790 - [MINOR] stats: mark areas with an underline when tooltips are available
7791 - [DOC] reorder some entries to maintain the alphabetical order
7792 - [DOC] cleanup of the keyword matrix
7793
Willy Tarreaub05613d2010-02-02 10:18:28 +010077942010/02/02 : 1.4-rc1
7795 - [MEDIUM] add a maintenance mode to servers
7796 - [MINOR] http-auth: last fix was wrong
7797 - [CONTRIB] add base64rev-gen.c that was used to generate the base64rev table.
7798 - [MINOR] Base64 decode
7799 - [MINOR] generic auth support with groups and encrypted passwords
7800 - [MINOR] add ACL_TEST_F_NULL_MATCH
7801 - [MINOR] http-request: allow/deny/auth support for frontend/backend/listen
7802 - [MINOR] acl: add http_auth and http_auth_group
7803 - [MAJOR] use the new auth framework for http stats
7804 - [DOC] add info about userlists, http-request and http_auth/http_auth_group acls
7805 - [STATS] make it possible to change a CLI connection timeout
7806 - [BUG] patterns: copy-paste typo in type conversion arguments
7807 - [MINOR] pattern: make the converter more flexible by supporting void* and int args
7808 - [MINOR] standard: str2mask: string to netmask converter
7809 - [MINOR] pattern: add support for argument parsers for converters
7810 - [MINOR] pattern: add the "ipmask()" converting function
7811 - [MINOR] config: off-by-one in "stick-table" after list of converters
7812 - [CLEANUP] acl, patterns: make use of my_strndup() instead of malloc+memcpy
7813 - [BUG] restore accidentely removed line in last patch !
7814 - [MINOR] checks: make the HTTP check code add the CRLF itself
7815 - [MINOR] checks: add the server's status in the checks
7816 - [BUILD] halog: make without arch-specific optimizations
7817 - [BUG] halog: fix segfault in case of empty log in PCT mode (cherry picked from commit fe362fe4762151d209b9656639ee1651bc2b329d)
7818 - [MINOR] http: disable keep-alive when process is going down
7819 - [MINOR] acl: add build_acl_cond() to make it easier to add ACLs in config
7820 - [CLEANUP] config: use build_acl_cond() instead of parse_acl_cond()
7821 - [CLEANUP] config: use warnif_cond_requires_resp() to check for bad ACLs
7822 - [MINOR] prepare req_*/rsp_* to receive a condition
7823 - [CLEANUP] config: specify correct const char types to warnif_* functions
7824 - [MEDIUM] config: factor out the parsing of 20 req*/rsp* keywords
7825 - [MEDIUM] http: make the request filter loop check for optional conditions
7826 - [MEDIUM] http: add support for conditional request filter execution
7827 - [DOC] add some build info about the AIX platform (cherry picked from commit e41914c77edbc40aebf827b37542d37d758e371e)
7828 - [MEDIUM] http: add support for conditional request header addition
7829 - [MEDIUM] http: add support for conditional response header rewriting
7830 - [DOC] add some missing ACLs about response header matching
7831 - [MEDIUM] http: add support for proxy authentication
7832 - [MINOR] http-auth: make the 'unless' keyword work as expected
7833 - [CLEANUP] config: use build_acl_cond() to simplify http-request ACL parsing
7834 - [MEDIUM] add support for anonymous ACLs
7835 - [MEDIUM] http: switch to tunnel mode after status 101 responses
7836 - [MEDIUM] http: stricter processing of the CONNECT method
7837 - [BUG] config: reset check request to avoid double free when switching to ssl/sql
7838 - [MINOR] config: fix too large ssl-hello-check message.
7839 - [BUG] fix error response in case of server error
7840
Willy Tarreau2eba6aa2010-01-25 23:28:05 +010078412010/01/25 : 1.4-dev8
7842 - [CLEANUP] Keep in sync "defaults" support between documentation and code
7843 - [MEDIUM] http: add support for Proxy-Connection header
7844 - [CRITICAL] buffers: buffer_insert_line2 must not change the ->w entry
7845 - [MINOR] http: remove a copy-paste typo in transaction cleaning
7846 - [BUG] http: trim any excess buffer data when recycling a connection
7847
Willy Tarreau6939b552010-01-25 01:54:37 +010078482010/01/25 : 1.4-dev7
7849 - [BUG] appsession: possible memory leak in case of out of memory condition
7850 - [MINOR] config: don't accept 'appsession' in defaults section
7851 - [MINOR] Add function to parse a size in configuration
7852 - [MEDIUM] Add stick table (persistence) management functions and types
7853 - [MEDIUM] Add pattern fetch management types and functions
7854 - [MEDIUM] Add src dst and dport pattern fetches.
7855 - [MEDIUM] Add stick table configuration and init.
7856 - [MEDIUM] Add stick and store rules analysers.
7857 - [MINOR] add option "mysql-check" to use MySQL health checks
7858 - [BUG] health checks: fix requeued message
7859 - [OPTIM] remove SSP_O_VIA and SSP_O_STATUS
7860 - [BUG] checks: fix newline termination
7861 - [MINOR] acl: add fe_id/so_id to match frontend's and socket's id
7862 - [BUG] appsession's sessid must be reset at end of transaction
7863 - [BUILD] appsession did not build anymore under gcc-2.95
7864 - [BUG] server redirection used an uninitialized string.
7865 - [MEDIUM] http: fix handling of message pointers
7866 - [MINOR] http: fix double slash prefix with server redirect
7867 - [MINOR] http redirect: add the ability to append a '/' to the URL
7868 - [BUG] stream_interface: fix retnclose and remove cond_close
7869 - [MINOR] http redirect: don't explicitly state keep-alive on 1.1
7870 - [MINOR] http: move appsession 'sessid' from session to http_txn
7871 - [OPTIM] reorder http_txn to optimize cache lines placement
7872 - [MINOR] http: differentiate waiting for new request and waiting for a complete requst
7873 - [MINOR] http: add a separate "http-keep-alive" timeout
7874 - [MINOR] config: remove undocumented and buggy 'timeout appsession'
7875 - [DOC] fix various too large lines
7876 - [DOC] remove several trailing spaces
7877 - [DOC] add the doc about stickiness
7878 - [BUILD] remove a warning in standard.h on AIX
7879 - [BUG] checks: chars are unsigned on AIX, check was always true
7880 - [CLEANUP] stream_sock: MSG_NOSIGNAL is only for send(), not recv()
7881 - [BUG] check: we must not check for error before reading a response
7882 - [BUG] buffers: remove remains of wrong obsolete length check
7883 - [OPTIM] stream_sock: don't shutdown(write) when the socket is in error
7884 - [BUG] http: don't count req errors on client resets or t/o during keep-alive
7885 - [MEDIUM] http: don't switch to tunnel mode upon close
7886 - [DOC] add documentation about connection header processing
7887 - [MINOR] http: add http_remove_header2() to remove a header value.
7888 - [MINOR] tools: add a "word_match()" function to match words and ignore spaces
7889 - [MAJOR] http: rework request Connection header handling
7890 - [MAJOR] http: rework response Connection header handling
7891 - [MINOR] add the ability to force kernel socket buffer size.
7892 - [BUG] http_server_error() must not purge a previous pending response
7893 - [OPTIM] http: don't delay response if next request is incomplete
7894 - [MINOR] add the "force-persist" statement to force persistence on down servers
7895 - [MINOR] http: logs must report persistent connections to down servers
7896 - [BUG] buffer_replace2 must never change the ->w entry
7897
Willy Tarreau11f8f542010-01-08 07:49:44 +010078982010/01/08 : 1.4-dev6
7899 - [BUILD] warning in stream_interface.h
7900 - [BUILD] warning ultoa_r returns char *
7901 - [MINOR] hana: only report stats if it is enabled
7902 - [MINOR] stats: add "a link" & "a href" for sockets
7903 - [MINOR]: stats: add show-legends to report additional informations
7904 - [MEDIUM] default-server support
7905 - [BUG]: add 'observer', 'on-error', 'error-limit' to supported options list
7906 - [MINOR] stats: add href to tracked server
7907 - [BUG] stats: show UP/DOWN status also in tracking servers
7908 - [DOC] Restore ability to search a keyword at the beginning of a line
7909 - [BUG] stats: cookie should be reported under backend not under proxy
7910 - [BUG] cfgparser/stats: fix error message
7911 - [BUG] http: disable auto-closing during chunk analysis
7912 - [BUG] http: fix hopefully last closing issue on data forwarding
7913 - [DEBUG] add an http_silent_debug function to debug HTTP states
7914 - [MAJOR] http: fix again the forward analysers
7915 - [BUG] http_process_res_common() must not skip the forward analyser
7916 - [BUG] http: some possible missed close remain in the forward chain
7917 - [BUG] http: redirect needed to be updated after recent changes
7918 - [BUG] http: don't set no-linger on response in case of forced close
7919 - [MEDIUM] http: restore the original behaviour of option httpclose
7920 - [TESTS] add a file to test various connection modes
7921 - [BUG] http: check options before the connection header
7922 - [MAJOR] session: fix the order by which the analysers are run
7923 - [MEDIUM] session: also consider request analysers added during response
7924 - [MEDIUM] http: make safer use of the DONT_READ and AUTO_CLOSE flags
7925 - [BUG] http: memory leak with captures when using keep-alive
7926 - [BUG] http: fix for capture memory leak was incorrect
7927 - [MINOR] http redirect: use proper call to return last response
7928 - [MEDIUM] http: wait for some flush of the response buffer before a new request
7929 - [MEDIUM] session: limit the number of analyser loops
7930
Willy Tarreau1f445892010-01-03 23:23:36 +010079312010/01/03 : 1.4-dev5
7932 - [MINOR] server tracking: don't care about the tracked server's mode
7933 - [MEDIUM] appsession: add "len", "prefix" and "mode" options
7934 - [MEDIUM] appsession: add the "request-learn" option
7935 - [BUG] Configuration parser bug when escaping characters
7936 - [MINOR] CSS & HTML fun
7937 - [MINOR] Collect & provide http response codes received from servers
7938 - [BUG] Fix silly typo: hspr_other -> hrsp_other
7939 - [MINOR] Add "a name" to stats page
7940 - [MINOR] add additional "a href"s to stats page
7941 - [MINOR] Collect & provide http response codes for frontends, fix backends
7942 - [DOC] some small spell fixes and unifications
7943 - [MEDIUM] Decrease server health based on http responses / events, version 3
7944 - [BUG] format '%d' expects type 'int', but argument 5 has type 'long int'
7945 - [BUG] config: fix erroneous check on cookie domain names, again
7946 - [BUG] Healthchecks: get a proper error code if connection cannot be completed immediately
7947 - [DOC] trivial fix for man page
7948 - [MINOR] config: report all supported options for the "bind" keyword
7949 - [MINOR] tcp: add support for the defer_accept bind option
7950 - [MINOR] unix socket: report the socket path in case of bind error
7951 - [CONTRIB] halog: support searching by response time
7952 - [DOC] add a reminder about obsolete documents
7953 - [DOC] point to 1.4 doc, not 1.3
7954 - [DOC] option tcp-smart-connect was missing from index
7955 - [MINOR] http: detect connection: close earlier
7956 - [CLEANUP] sepoll: clean up the fd_clr/fd_set functions
7957 - [OPTIM] move some rarely used fields out of fdtab
7958 - [MEDIUM] fd: merge fd_list into fdtab
7959 - [MAJOR] buffer: flag BF_DONT_READ to disable reads when not required
7960 - [MINOR] http: add new transaction flags for keep-alive and content-length
7961 - [MEDIUM] http request: parse connection, content-length and transfer-encoding
7962 - [MINOR] http request: update the TX_SRV_CONN_KA flag on rewrite
7963 - [MINOR] http request: simplify the test of no-data
7964 - [MEDIUM] http request: simplify POST length detection
7965 - [MEDIUM] http request: make use of pre-parsed transfer-encoding header
7966 - [MAJOR] http: create the analyser which waits for a response
7967 - [MINOR] http: pre-set the persistent flags in the transaction
7968 - [MEDIUM] http response: check body length and set transaction flags
7969 - [MINOR] http response: update the TX_CLI_CONN_KA flag on rewrite
7970 - [MINOR] http: remove the last call to stream_int_return
7971 - [IMPORT] import ebtree v5.0 into directory ebtree/
7972 - [MEDIUM] build: switch ebtree users to use new ebtree version
7973 - [CLEANUP] ebtree: remove old unused files
7974 - [BUG] definitely fix regparm issues between haproxy core and ebtree
7975 - [CLEANUP] ebtree: cast to char * to get rid of gcc warning
7976 - [BUILD] missing #ifndef in ebmbtree.h
7977 - [BUILD] missing #ifndef in ebsttree.h
7978 - [MINOR] tools: add hex2i() function to convert hex char to int
7979 - [MINOR] http: create new MSG_BODY sub-states
7980 - [BUG] stream_sock: BUF_INFINITE_FORWARD broke splice on 64-bit platforms
7981 - [DOC] option is "defer-accept", not "defer_accept"
7982 - [MINOR] http: keep pointer to beginning of data
7983 - [BUG] x-original-to: name was not set in default instance
7984 - [MINOR] http: detect tunnel mode and set it in the session
7985 - [BUG] config: fix error message when config file is not found
7986 - [BUG] config: fix wrong handling of too large argument count
7987 - [BUG] config: disable 'option httplog' on TCP proxies
7988 - [BUG] config: fix erroneous check on cookie domain names
7989 - [BUG] config: cookie domain was ignored in defaults sections
7990 - [MINOR] config: support passing multiple "domain" statements to cookies
7991 - [MINOR] ebtree: add functions to lookup non-null terminated strings
7992 - [MINOR] config: don't report error on all subsequent files on failure
7993 - [BUG] second fix for the printf format warning
7994 - [BUG] check_post: limit analysis to the buffer length
7995 - [MEDIUM] http: process request body in a specific analyser
7996 - [MEDIUM] backend: remove HTTP POST parsing from get_server_ph_post()
7997 - [MAJOR] http: completely process the "connection" header
7998 - [MINOR] http: only consider chunk encoding with HTTP/1.1
7999 - [MAJOR] buffers: automatically compute the maximum buffer length
8000 - [MINOR] http: move the http transaction init/cleanup code to proto_http
8001 - [MINOR] http: move 1xx handling earlier to eliminate a lot of ifs
8002 - [MINOR] http: introduce a new synchronisation state : HTTP_MSG_DONE
8003 - [MEDIUM] http: rework chunk-size parser
8004 - [MEDIUM] http: add a new transaction flags indicating if we know the transfer length
8005 - [MINOR] buffers: add buffer_ignore() to skip some bytes
8006 - [BUG] http: offsets are relative to the buffer, not to ->som
8007 - [MEDIUM] http: automatically re-aling request buffer
8008 - [BUG] http: body parsing must consider the start of message
8009 - [MINOR] new function stream_int_cond_close()
8010 - [MAJOR] http: implement body parser
8011 - [BUG] http: typos on several unlikely() around header insertion
8012 - [BUG] stream_sock: wrong max computation on recv
8013 - [MEDIUM] http: rework the buffer alignment logic
8014 - [BUG] buffers: wrong size calculation for displaced data
8015 - [MINOR] stream_sock: prepare for closing when all pending data are sent
8016 - [MEDIUM] http: add two more states for the closing period
8017 - [MEDIUM] http: properly handle "option forceclose"
8018 - [MINOR] stream_sock: add SI_FL_NOLINGER for faster close
8019 - [MEDIUM] http: make forceclose use SI_FL_NOLINGER
8020 - [MEDIUM] session: set SI_FL_NOLINGER when aborting on write timeouts
8021 - [MEDIUM] http: add some SI_FL_NOLINGER around server errors
8022 - [MINOR] config: option forceclose is valid in frontends too
8023 - [BUILD] halog: insufficient include path in makefile
8024 - [MEDIUM] http: make the analyser not rely on msg being initialized anymore
8025 - [MEDIUM] http: make the parsers able to wait for a buffer flush
8026 - [MAJOR] http: add support for option http-server-close
8027 - [BUG] http: ensure we abort data transfer on write error
8028 - [BUG] last fix was overzealous and disabled server-close
8029 - [BUG] http: fix erroneous trailers size computation
8030 - [MINOR] stream_sock: enable MSG_MORE when forwarding finite amount of data
8031 - [OPTIM] http: set MSG_MORE on response when a pipelined request is pending
8032 - [BUG] http: redirects were broken by chunk changes
8033 - [BUG] http: the request URI pointer is relative to the buffer
8034 - [OPTIM] http: don't immediately enable reading on request
8035 - [MINOR] http: move redirect messages to HTTP/1.1 with a content-length
8036 - [BUG] http: take care of errors, timeouts and aborts during the data phase
8037 - [MINOR] http: don't wait for sending requests to the server
8038 - [MINOR] http: make the conditional redirect support keep-alive
8039 - [BUG] http: fix cookie parser to support spaces and commas in values
8040 - [MINOR] config: some options were missing for "redirect"
8041 - [MINOR] redirect: add support for unconditional rules
8042 - [MINOR] config: centralize proxy struct initialization
8043 - [MEDIUM] config: remove the limitation of 10 reqadd/rspadd statements
8044 - [MEDIUM] config: remove the limitation of 10 config files
8045 - [CLEANUP] http: remove a remaining impossible condition
8046 - [OPTIM] http: optimize a bit the construct of the forward loops
8047
Willy Tarreauc82a9e52009-10-12 06:40:53 +020080482009/10/12 : 1.4-dev4
8049 - [DOC] add missing rate_lim and rate_max
8050 - [MAJOR] struct chunk rework
8051 - [MEDIUM] Health check reporting code rework + health logging, v3
8052 - [BUG] check if rise/fall has an argument and it is > 0
8053 - [MINOR] health checks logging unification
8054 - [MINOR] add "description", "node" and show-node"/"show-desc", remove "node-name", v2
8055 - [MINOR] Allow dots in show-node & add "white-space: nowrap" in th.pxname.
8056 - [DOC] Add information about http://haproxy.1wt.eu/contrib.html
8057 - [MINOR] Introduce include/types/counters.h
8058 - [CLEANUP] Move counters to dedicated structures
8059 - [MINOR] Add "clear counters" to clear statistics counters
8060 - [MEDIUM] Collect & provide separate statistics for sockets, v2
8061 - [BUG] Fix NULL pointer dereference in stats_check_uri_auth(), v2
8062 - [MINOR] acl: don't report valid acls as potential mistakes
8063 - [MINOR] Add cut_crlf(), ltrim(), rtrim() and alltrim()
8064 - [MINOR] Add chunk_htmlencode and chunk_asciiencode
8065 - [MINOR] Capture & display more data from health checks, v2
8066 - [BUG] task.c: don't assing last_timer to node-less entries
8067 - [BUG] http stats: large outputs sometimes got some parts chopped off
8068 - [MINOR] backend: export some functions to recount servers
8069 - [MINOR] backend: uninline some LB functions
8070 - [MINOR] include time.h from freq_ctr.h as is uses "now".
8071 - [CLEANUP] backend: move LB algos to individual files
8072 - [MINOR] lb_map: reorder code in order to ease integration of new hash functions
8073 - [CLEANUP] proxy: move last lb-specific bits to their respective files
8074 - [MINOR] backend: separate declarations of LB algos from their lookup method
8075 - [MINOR] backend: reorganize the LB algorithm selection
8076 - [MEDIUM] backend: introduce the "static-rr" LB algorithm
8077 - [MINOR] report list of supported pollers with -vv
8078 - [DOC] log-health-checks is an option, not a directive
8079 - [MEDIUM] new option "independant-streams" to stop updating read timeout on writes
8080 - [BUG] stats: don't call buffer_shutw(), but ->shutw() instead
8081 - [MINOR] stats: strip CR and LF from the input command line
8082 - [BUG] don't refresh timeouts late after detected activity
8083 - [MINOR] stats_dump_errors_to_buffer: use buffer_feed_chunk()
8084 - [MINOR] stats_dump_sess_to_buffer: use buffer_feed_chunk()
8085 - [MINOR] stats: make stats_dump_raw_to_buffer() use buffer_feed_chunk
8086 - [MEDIUM] stats: don't use s->ana_state anymore
8087 - [MINOR] remove now obsolete ana_state from the session struct
8088 - [MEDIUM] stats: make HTTP stats use an I/O handler
8089 - [MEDIUM] stream_int: adjust WAIT_ROOM handling
8090 - [BUG] config: look for ID conflicts in all sockets, not only last ones.
8091 - [MINOR] config: reference file and line with any listener/proxy/server declaration
8092 - [MINOR] config: report places of duplicate names or IDs
8093 - [MINOR] config: add pointer to file name in block/redirect/use_backend/monitor rules
8094 - [MINOR] tools: add a new get_next_id() function
8095 - [MEDIUM] config: automatically find unused IDs for proxies, servers and listeners
8096 - [OPTIM] counters: move some max numbers to the counters struct
8097 - [BUG] counters: fix segfault on missing counters for a listener
8098 - [MEDIUM] backend: implement consistent hashing variation
8099 - [MINOR] acl: add fe_conn, be_conn, queue, avg_queue
8100 - [MINOR] stats: use 'clear counters all' to clear all values
8101 - [MEDIUM] add access restrictions to the stats socket
8102 - [MINOR] buffers: add buffer_feed2() and make buffer_feed() measure string length
8103 - [MINOR] proxy: provide function to retrieve backend/server pointers
8104 - [MINOR] add the "initial weight" to the server struct.
8105 - [MEDIUM] stats: add the "get weight" command to report a server's weight
8106 - [MEDIUM] stats: add the "set weight" command
8107 - [BUILD] add a 'make tags' target
8108 - [MINOR] stats: add support for numeric IDs in set weight/get weight
8109 - [MINOR] stats: use a dedicated state to output static data
8110 - [OPTIM] stats: check free space before trying to print
8111
Willy Tarreau9f389e02009-09-24 00:12:50 +020081122009/09/24 : 1.4-dev3
8113 - [BUILD] compilation of haproxy-1.4-dev2 on FreeBSD
8114 - [MEDIUM] Collect & show information about last health check, v3
8115 - [MINOR] export the hostname variable so that all the code can access it
8116 - [MINOR] stats: add a new node-name setting
8117 - [MEDIUM] remove old experimental tcpsplice option
8118 - [BUILD] fix build for systems without SOL_TCP
8119 - [MEDIUM] move connection establishment from backend to the SI.
8120 - [MEDIUM] make the global stats socket part of a frontend
8121 - [MEDIUM] session: account per-listener connections
8122 - [MINOR] session: switch to established state if no connect function
8123 - [MEDIUM] make the unix stats sockets use the generic session handler
8124 - [CLEANUP] unix: remove uxst_process_session()
8125 - [CLEANUP] move remaining stats sockets code to dumpstats
8126 - [MINOR] move the initial task's nice value to the listener
8127 - [MINOR] cleanup set_session_backend by using pre-computed analysers
8128 - [MINOR] set s->srv_error according to the analysers
8129 - [MEDIUM] set rep->analysers from fe and be analysers
8130 - [MEDIUM] replace BUFSIZE with buf->size in computations
8131 - [MEDIUM] make it possible to change the buffer size in the configuration
8132 - [MEDIUM] report error on buffer writes larger than buffer size
8133 - [MEDIUM] stream_interface: add and use ->update function to resync
8134 - [CLEANUP] remove ifdef MSG_NOSIGNAL and define it instead
8135 - [MEDIUM] remove TCP_CORK and make use of MSG_MORE instead
8136 - [BUG] tarpit did not work anymore
8137 - [MINOR] acl: add support for hdr_ip to match IP addresses in headers
8138 - [MAJOR] buffers: fix misuse of the BF_SHUTW_NOW flag
8139 - [MINOR] buffers: provide more functions to handle buffer data
8140 - [MEDIUM] buffers: provide new buffer_feed*() function
8141 - [MINOR] buffers: add peekchar and peekline functions for stream interfaces
8142 - [MINOR] buffers: provide buffer_si_putchar() to send a char from a stream interface
8143 - [BUG] buffer_forward() would not correctly consider data already scheduled
8144 - [MINOR] buffers: add buffer_cut_tail() to cut only unsent data
8145 - [MEDIUM] stream_interface: make use of buffer_cut_tail() to report errors
8146 - [MAJOR] http: add support for HTTP 1xx informational responses
8147 - [MINOR] buffers: inline buffer_si_putchar()
8148 - [MAJOR] buffers: split BF_WRITE_ENA into BF_AUTO_CONNECT and BF_AUTO_CLOSE
8149 - [MAJOR] buffers: fix the BF_EMPTY flag's meaning
8150 - [BUG] stream_interface: SI_ST_CLO must have buffers SHUT
8151 - [MINOR] stream_sock: don't set SI_FL_WAIT_DATA if BF_SHUTW_NOW is set
8152 - [MEDIUM] add support for infinite forwarding
8153 - [BUILD] stream_interface: fix conflicting declaration
8154 - [BUG] buffers: buffer_forward() must not always clear BF_OUT_EMPTY
8155 - [BUG] variable buffer size ignored at initialization time
8156 - [MINOR] ensure that buffer_feed() and buffer_skip() set BF_*_PARTIAL
8157 - [BUG] fix buffer_skip() and buffer_si_getline() to correctly handle wrap-arounds
8158 - [MINOR] stream_interface: add SI_FL_DONT_WAKE flag
8159 - [MINOR] stream_interface: add iohandler callback
8160 - [MINOR] stream_interface: add functions to support running as internal/external tasks
8161 - [MEDIUM] session: call iohandler for embedded tasks (applets)
8162 - [MINOR] add a ->private member to the stream_interface
8163 - [MEDIUM] stats: prepare the connection for closing before dumping
8164 - [MEDIUM] stats: replace the stats socket analyser with an SI applet
8165
Willy Tarreau68dcd252009-08-09 22:57:09 +020081662009/08/09 : 1.4-dev2
8167 - [BUG] task: fix possible crash when some timeouts are not configured
8168 - [BUG] log: option tcplog would log to global if no logger was defined
8169
Willy Tarreaub03d2982009-07-29 22:38:32 +020081702009/07/29 : 1.4-dev1
8171 - [MINOR] acl: add support for matching of RDP cookies
8172 - [MEDIUM] add support for RDP cookie load-balancing
8173 - [MEDIUM] add support for RDP cookie persistence
8174 - [MINOR] add a new CLF log format
8175 - [MINOR] startup: don't imply -q with -D
8176 - [BUG] ensure that we correctly re-start old process in case of error
8177 - [MEDIUM] add support for binding to source port ranges during connect
8178 - [MINOR] config: track "no option"/"option" changes
8179 - [MINOR] config: support resetting options do default values
8180 - [MEDIUM] implement option tcp-smart-accept at the frontend
8181 - [MEDIUM] stream_sock: implement tcp-cork for use during shutdowns on Linux
8182 - [MEDIUM] implement tcp-smart-connect option at the backend
8183 - [MEDIUM] add support for TCP MSS adjustment for listeners
8184 - [MEDIUM] support setting a server weight to zero
8185 - [MINOR] make DEFAULT_MAXCONN user-configurable at build time
8186 - [MAJOR] session: don't clear buffer status flags anymore
8187 - [MAJOR] session: only check for timeouts when they have just occurred.
8188 - [MAJOR] session: simplify buffer error handling
8189 - [MEDIUM] config: split parser and checker in two functions
8190 - [MEDIUM] config: support loading multiple configuration files
8191 - [MEDIUM] stream_sock: don't close prematurely when nolinger is set
8192 - [MEDIUM] session: rework buffer analysis to permit permanent analysers
8193 - [MEDIUM] splice: set the capability on each stream_interface
8194 - [BUG] http: redirect rules were processed too early
8195 - [CLEANUP] remove unused DEBUG_PARSE_NO_SPEEDUP define
8196 - [MEDIUM] http: split request waiter from request processor
8197 - [MEDIUM] session: tell analysers what bit they were called for
8198 - [MAJOR] http: complete splitting of the remaining stages
8199 - [MINOR] report in the proxies the requirements for ACLs
8200 - [MINOR] http: rely on proxy->acl_requires to allocate hdr_idx
8201 - [MINOR] acl: add HTTP protocol detection (req_proto_http)
8202 - [MINOR] prepare callers of session_set_backend to handle errors
8203 - [BUG] default ACLs did not properly set the ->requires flag
8204 - [MEDIUM] allow a TCP frontend to switch to an HTTP backend
8205 - [MINOR] ensure we can jump from swiching rules to http without data
8206 - [MINOR] http: take http request timeout from the backend
8207 - [MINOR] allow TCP inspection rules to make use of HTTP ACLs
8208 - [BUILD] report commit date and not author's date as build date
8209 - [MINOR] acl: don't complain anymore when using L7 acls in TCP
8210 - [BUG] stream_sock: always shutdown(SHUT_WR) before closing
8211 - [BUG] stream_sock: don't stop reading when the poller reports an error
8212 - [BUG] config: tcp-request content only accepts "if" or "unless"
8213 - [BUG] task: fix possible timer drift after update
8214 - [MINOR] apply tcp-smart-connect option for the checks too
8215 - [MINOR] stats: better displaying in MSIE
8216 - [MINOR] config: improve error reporting in global section
8217 - [MINOR] config: improve error reporting in listen sections
8218 - [MINOR] config: the "capture" keyword is not allowed in backends
8219 - [MINOR] config: improve error reporting when checking configuration
8220 - [BUILD] fix a minor build warning on AIX
8221 - [BUILD] use "git cmd" instead of "git-cmd"
8222 - [CLEANUP] report 2009 not 2008 in the copyright banner.
8223 - [MINOR] print usage on the stats sockets upon invalid commands
8224 - [MINOR] acl: detect and report potential mistakes in ACLs
8225 - [BUILD] fix incorrect printf arg count with tcp_splice
8226 - [BUG] fix random pauses on last segment of a series
8227 - [BUILD] add support for build under Cygwin
8228
Willy Tarreau79158882009-06-09 11:59:08 +020082292009/06/09 : 1.4-dev0
8230 - exact copy of 1.3.18
8231
Willy Tarreaubeb05ae2009-05-10 20:27:47 +020082322009/05/10 : 1.3.18
8233 - [MEDIUM] add support for "balance hdr(name)"
8234 - [CLEANUP] give a little bit more information in error message
8235 - [MINOR] add X-Original-To: header
8236 - [BUG] x-original-to: fix missing initialization to default value
8237 - [BUILD] spec file: fix broken pipe during rpmbuild and add man file
8238 - [MINOR] improve reporting of misplaced acl/reqxxx rules
8239 - [MEDIUM] http: add options to ignore invalid header names
8240 - [MEDIUM] http: capture invalid requests/responses even if accepted
8241 - [BUILD] add format(printf) to printf-like functions
8242 - [MINOR] fix several printf formats and missing arguments
8243 - [BUG] stats: total and lbtot are unsigned
8244 - [MINOR] fix a few remaining printf-like formats on 64-bit platforms
8245 - [CLEANUP] remove unused make option from haproxy.spec
8246 - [BUILD] make it possible to pass alternative arch at build time
8247 - [MINOR] switch all stat counters to 64-bit
8248 - [MEDIUM] ensure we don't recursively call pool_gc2()
8249 - [CRITICAL] uninitialized response field can sometimes cause crashes
8250 - [BUG] fix wrong pointer arithmetics in HTTP message captures
8251 - [MINOR] rhel init script : support the reload operation
8252 - [MINOR] add basic signal handling functions
8253 - [BUILD] add signal.o to all makefiles
8254 - [MEDIUM] call signal_process_queue from run_poll_loop
8255 - [MEDIUM] pollers: don't wait if a signal is pending
8256 - [MEDIUM] convert all signals to asynchronous signals
8257 - [BUG] O(1) pollers should check their FD before closing it
8258 - [MINOR] don't close stdio fds twice
8259 - [MINOR] add options dontlog-normal and log-separate-errors
8260 - [DOC] minor fixes and rearrangements
8261 - [BUG] fix parser crash on unconditional tcp content rules
8262 - [DOC] rearrange the configuration manual and add a summary
8263 - [MINOR] standard: provide a new 'my_strndup' function
8264 - [MINOR] implement per-logger log level limitation
8265 - [MINOR] compute the max of sessions/s on fe/be/srv
8266 - [MINOR] stats: report max sessions/s and limit in CSV export
8267 - [MINOR] stats: report max sessions/s and limit in HTML stats
8268 - [MINOR] stats/html: use the arial font before helvetica
8269
Willy Tarreauf459b422009-03-29 15:26:57 +020082702009/03/29 : 1.3.17
8271 - Update specfile to build for v2.6 kernel.
8272 - [BUG] reset the stream_interface connect timeout upon connect or error
8273 - [BUG] reject unix accepts when connection limit is reached
8274 - [MINOR] show sess: report number of calls to each task
8275 - [BUG] don't call epoll_ctl() on closed sockets
8276 - [BUG] stream_sock: disable I/O on fds reporting an error
8277 - [MINOR] sepoll: don't count two events on the same FD.
8278 - [MINOR] show sess: report a lot more information about sessions
8279 - [BUG] stream_sock: check for shut{r,w} before refreshing some timeouts
8280 - [BUG] don't set an expiration date directly from now_ms
8281 - [MINOR] implement ulltoh() to write HTML-formatted numbers
8282 - [MINOR] stats/html: group digits by 3 to clarify numbers
8283 - [BUILD] remove haproxy-small.spec
8284 - [BUILD] makefile: remove unused references to linux24eold and EPOLL_CTL_WORKAROUND
8285
Willy Tarreau8019ffa2009-03-22 23:46:12 +010082862009/03/22 : 1.3.16
8287 - [BUILD] Fixed Makefile for linking pcre
8288 - [CONTRIB] selinux policy for haproxy
8289 - [MINOR] show errors: encode backslash as well as non-ascii characters
8290 - [MINOR] cfgparse: some cleanups in the consistency checks
8291 - [MINOR] cfgparse: set backends to "balance roundrobin" by default
8292 - [MINOR] tcp-inspect: permit the use of no-delay inspection
8293 - [MEDIUM] reverse internal proxy declaration order to match configuration
8294 - [CLEANUP] config: catch and report some possibly wrong rule ordering
8295 - [BUG] connect timeout is in the stream interface, not the buffer
8296 - [BUG] session: errors were not reported in termination flags in TCP mode
8297 - [MINOR] tcp_request: let the caller take care of errors and timeouts
8298 - [CLEANUP] http: remove some commented out obsolete code in process_response
8299 - [MINOR] update ebtree to version 4.1
8300 - [MEDIUM] scheduler: get rid of the 4 trees thanks and use ebtree v4.1
8301 - [BUG] sched: don't leave 3 lasts tasks unprocessed when niced tasks are present
8302 - [BUG] scheduler: fix improper handling of duplicates __task_queue()
8303 - [MINOR] sched: permit a task to stay up between calls
8304 - [MINOR] task: keep a task count and clean up task creators
8305 - [MINOR] stats: report number of tasks (active and running)
8306 - [BUG] server check intervals must not be null
8307 - [OPTIM] stream_sock: don't retry to read after a large read
8308 - [OPTIM] buffer: new BF_READ_DONTWAIT flag reduces EAGAIN rates
8309 - [MEDIUM] session: don't resync FSMs on non-interesting changes
8310 - [BUG] check for global.maxconn before doing accept()
8311 - [OPTIM] sepoll: do not re-check whole list upon accepts
8312
Willy Tarreau8185ced2009-03-09 22:45:53 +010083132009/03/09 : 1.3.16-rc2
8314 - [BUG] stream_sock: write timeout must be updated when forwarding !
8315
Willy Tarreauff63b432009-03-09 01:03:42 +010083162009/03/09 : 1.3.16-rc1
8317 - appsessions: cleanup DEBUG_HASH and initialize request_counter
8318 - [MINOR] acl: add new keyword "connslots"
8319 - [MINOR] cfgparse: fix off-by 2 in error message size
8320 - [BUILD] fix build with gcc 4.3
8321 - [BUILD] fix MANDIR default location to match documentation
8322 - [TESTS] add a debug patch to help trigger the stats bug
8323 - [BUG] Flush buffers also where there are exactly 0 bytes left
8324 - [MINOR] Allow to specify a domain for a cookie
8325 - [BUG/CLEANUP] cookiedomain -> cookie_domain rename + free(p->cookie_domain)
8326 - [MEDIUM] Fix memory freeing at exit
8327 - [MEDIUM] Fix memory freeing at exit, part 2
8328 - [BUG] Fix listen & more of 2 couples <ip>:<port>
8329 - [DOC] remove buggy comment for use_backend
8330 - [CRITICAL] fix server state tracking: it was O(n!) instead of O(n)
8331 - [MEDIUM] add support for URI hash depth and length limits
8332 - [MINOR] permit renaming of x-forwarded-for header
8333 - [BUILD] fix Makefile.bsd and Makefile.osx for stream_interface
8334 - [BUILD] Haproxy won't compile if DEBUG_FULL is defined
8335 - [MEDIUM] upgrade to ebtree v4.0
8336 - [DOC] update the README file with new build options
8337 - [MEDIUM] reduce risk of event starvation in ev_sepoll
8338 - [MEDIUM] detect streaming buffers and tag them as such
8339 - [MEDIUM] add support for conditional HTTP redirection
8340 - [BUILD] make install should depend on haproxy not "all"
8341 - [DEBUG] add a TRACE macro to facilitate runtime data extraction
8342 - [BUG] event pollers must not wait if a task exists in the run queue
8343 - [BUG] queue management: wake oldest request in queues
8344 - [BUG] log: reported queue position was offed-by-one
8345 - [BUG] fix the dequeuing logic to ensure that all requests get served
8346 - [DOC] documentation for the "retries" parameter was missing.
8347 - [MEDIUM] implement a monotonic internal clock
8348 - [MEDIUM] further improve monotonic clock by check forward jumps
8349 - [OPTIM] add branch prediction hints in list manipulations
8350 - [MAJOR] replace ultree with ebtree in wait-queues
8351 - [BUG] we could segfault during exit while freeing uri_auths
8352 - [BUG] wqueue: perform proper timeout comparisons with wrapping values
8353 - [MINOR] introduce now_ms, the current date in milliseconds
8354 - [BUG] disable buffer read timeout when reading stats
8355 - [MEDIUM] rework the wait queue mechanism
8356 - [BUILD] change declaration of base64tab to fix build with Intel C++
8357 - [OPTIM] shrink wake_expired_tasks() by using task_wakeup()
8358 - [MAJOR] use an ebtree instead of a list for the run queue
8359 - [MEDIUM] introduce task->nice and boot access to statistics
8360 - [OPTIM] task_queue: assume most consecutive timers are equal
8361 - [BUILD] silent a warning in unlikely() with gcc 4.x
8362 - [MAJOR] convert all expiration timers from timeval to ticks
8363 - [BUG] use_backend would not correctly consider "unless"
8364 - [TESTS] added test-acl.cfg to test some ACL combinations
8365 - [MEDIUM] add support for configuration keyword registration
8366 - [MEDIUM] modularize the global "stats" keyword configuration parser
8367 - [MINOR] cfgparse: add support for warnings in external functions
8368 - [MEDIUM] modularize the "timeout" keyword configuration parser
8369 - [MAJOR] implement tcp request content inspection
8370 - [MINOR] acl: add a new parsing function: parse_dotted_ver
8371 - [MINOR] acl: add req_ssl_ver in TCP, to match an SSL version
8372 - [CLEANUP] remove unused include/types/client.h
8373 - [CLEANUP] remove many #include <types/xxx> from C files
8374 - [CLEANUP] remove dependency on obsolete INTBITS macro
8375 - [DOC] document the new "tcp-request" keyword and associated ACLs
8376 - [MINOR] acl: add REQ_CONTENT to the list of default acls
8377 - [MEDIUM] acl: permit fetch() functions to set the result themselves
8378 - [MEDIUM] acl: get rid of dummy values in always_true/always_false
8379 - [MINOR] acl: add the "wait_end" acl verb
8380 - [MEDIUM] acl: enforce ACL type checking
8381 - [MEDIUM] acl: set types on all currently known ACL verbs
8382 - [MEDIUM] acl: when possible, report the name and requirements of ACLs in warnings
8383 - [CLEANUP] remove 65 useless NULL checks before free
8384 - [MEDIUM] memory: update pool_free2() to support NULL pointers
8385 - [MEDIUM] buffers: ensure buffer_shut* are properly called upon shutdowns
8386 - [MEDIUM] process_srv: rely on buffer flags for client shutdown
8387 - [MEDIUM] process_srv: don't rely at all on client state
8388 - [MEDIUM] process_cli: don't rely at all on server state
8389 - [BUG] fix segfault with url_param + check_post
8390 - [BUG] server timeout was not considered in some circumstances
8391 - [BUG] client timeout incorrectly rearmed while waiting for server
8392 - [MAJOR] kill CL_STINSPECT and CL_STHEADERS (step 1)
8393 - [MAJOR] get rid of SV_STANALYZE (step 2)
8394 - [MEDIUM] simplify and centralize request timeout cancellation and request forwarding
8395 - [MAJOR] completely separate HTTP and TCP states on the request path
8396 - [BUG] fix recently introduced loop when client closes early
8397 - [MAJOR] get rid of the SV_STHEADERS state
8398 - [MAJOR] better separation of response processing and server state
8399 - [MAJOR] clearly separate HTTP response processing from TCP server state
8400 - [MEDIUM] remove unused references to {CL|SV}_STSHUT*
8401 - [MINOR] term_trace: add better instrumentations to trace the code
8402 - [BUG] ev_sepoll: closed file descriptors could persist in the spec list
8403 - [BUG] process_response must not enable the read FD
8404 - [BUG] buffers: remove BF_MAY_CONNECT and fix forwarding issue
8405 - [BUG] process_response: do not touch srv_state
8406 - [BUG] maintain_proxies must not disable backends
8407 - [CLEANUP] get rid of BF_SHUT*_PENDING
8408 - [MEDIUM] buffers: add BF_EMPTY and BF_FULL to remove dependency on req/rep->l
8409 - [MAJOR] process_session: rely only on buffer flags
8410 - [MEDIUM] use buffer->wex instead of buffer->cex for connect timeout
8411 - [MEDIUM] centralize buffer timeout checks at the top of process_session
8412 - [MINOR] ensure the termination flags are set by process_xxx
8413 - [MEDIUM] session: move the analysis bit field to the buffer
8414 - [OPTIM] process_cli/process_srv: reduce the number of tests
8415 - [BUG] regparm is broken on gcc < 3
8416 - [BUILD] fix warning in proto_tcp.c with gcc >= 4
8417 - [MEDIUM] merge inspect_exp and txn->exp into request buffer
8418 - [BUG] process_cli/process_srv: don't call shutdown when already done
8419 - [BUG] process_request: HTTP body analysis must return zero if missing data
8420 - [TESTS] test-fsm: 22 regression tests for state machines
8421 - [BUG] Fix empty X-Forwarded-For header name when set in defaults section
8422 - [BUG] fix harmless but wrong fd insertion sequence
8423 - [MEDIUM] make it possible for analysers to follow the whole session
8424 - [MAJOR] rework of the server FSM
8425 - [OPTIM] remove useless fd_set(read) upon shutdown(write)
8426 - [MEDIUM] massive cleanup of process_srv()
8427 - [MEDIUM] second level of code cleanup for process_srv_data
8428 - [MEDIUM] third cleanup and optimization of process_srv_data()
8429 - [MEDIUM] process_srv_data: ensure that we always correctly re-arm timeouts
8430 - [MEDIUM] stream_sock_process_data moved to stream_sock.c
8431 - [MAJOR] make the client side use stream_sock_process_data()
8432 - [MEDIUM] split stream_sock_process_data
8433 - [OPTIM] stream_sock_read must check for null-reads more often
8434 - [MINOR] only call flow analysers when their read side is connected.
8435 - [MEDIUM] reintroduce BF_HIJACK with produce_content
8436 - [MINOR] re-arrange buffer flags and rename some of them
8437 - [MINOR] do not check for BF_SHUTR when computing write timeout
8438 - [OPTIM] ev_sepoll: detect newly created FDs and check them once
8439 - [OPTIM] reduce the number of calls to task_wakeup()
8440 - [OPTIM] force inlining of large functions with gcc >= 3
8441 - [MEDIUM] indicate a reason for a task wakeup
8442 - [MINOR] change type of fdtab[]->owner to void*
8443 - [MAJOR] make stream sockets aware of the stream interface
8444 - [MEDIUM] stream interface: add the ->shutw method as well as in and out buffers
8445 - [MEDIUM] buffers: add BF_READ_ATTACHED and BF_ANA_TIMEOUT
8446 - [MEDIUM] process_session: make use of the new buffer flags
8447 - [CLEANUP] process_session: move debug outputs out of the critical loop
8448 - [MEDIUM] move QUEUE and TAR timers to stream interfaces
8449 - [OPTIM] add compiler hints in tick_is_expired()
8450 - [MINOR] add buffer_check_timeouts() to check what timeouts have fired.
8451 - [MEDIUM] use buffer_check_timeouts instead of stream_sock_check_timeouts()
8452 - [MINOR] add an expiration flag to the stream_sock_interface
8453 - [MAJOR] migrate the connection logic to stream interface
8454 - [MAJOR] add a connection error state to the stream_interface
8455 - [MEDIUM] add the SN_CURR_SESS flag to the session to track open sessions
8456 - [MEDIUM] continue layering cleanups.
8457 - [MEDIUM] stream_interface: added a DISconnected state between CON/EST and CLO
8458 - [MEDIUM] remove stream_sock_update_data()
8459 - [MINOR] maintain a global session list in order to ease debugging
8460 - [BUG] shutw must imply close during a connect
8461 - [MEDIUM] process shutw during connection attempt
8462 - [MEDIUM] make the stream interface control the SHUT{R,W} bits
8463 - [MAJOR] complete layer4/7 separation
8464 - [CLEANUP] move the session-related functions to session.c
8465 - [MINOR] call session->do_log() for logging
8466 - [MINOR] replace the ambiguous client_return function by stream_int_return
8467 - [MINOR] replace client_retnclose() with stream_int_retnclose()
8468 - [MINOR] replace srv_close_with_err() with http_server_error()
8469 - [MEDIUM] make the http server error function a pointer in the session
8470 - [CLEANUP] session.c: removed some migration left-overs in sess_establish()
8471 - [MINOR] stream_sock_data_finish() should not expose fd
8472 - [MEDIUM] extract TCP request processing from HTTP
8473 - [MEDIUM] extract the HTTP tarpit code from process_request().
8474 - [MEDIUM] move the HTTP request body analyser out of process_request().
8475 - [MEDIUM] rename process_request to http_process_request
8476 - [BUG] fix forgotten server session counter
8477 - [MINOR] declare process_session in session.h, not proto_http.h
8478 - [MEDIUM] first pass of lifting to proto_uxst.c:uxst_event_accept()
8479 - [MINOR] add an analyser code for UNIX stats request
8480 - [MINOR] pre-set analyser flags on the listener at registration time
8481 - [BUG] do not forward close from cons to prod with analysers
8482 - [MEDIUM] ensure that sock->shutw() also closes read for init states
8483 - [MINOR] add an analyser state in struct session
8484 - [MAJOR] make unix sockets work again with stats
8485 - [MEDIUM] remove cli_fd, srv_fd, cli_state and srv_state from the session
8486 - [MINOR] move the listener reference from fd to session
8487 - [MEDIUM] reference the current hijack function in the buffer itself
8488 - [MINOR] slightly rebalance stats_dump_{raw,http}
8489 - [MINOR] add a new back-reference type : struct bref
8490 - [MINOR] add back-references to sessions for later use by a dumper.
8491 - [MEDIUM] add support for "show sess" in unix stats socket
8492 - [BUG] do not release the connection slot during a retry
8493 - [BUG] dynamic connection throttling could return a max of zero conns
8494 - [BUG] do not try to pause backends during reload
8495 - [BUG] ensure that listeners from disabled proxies are correctly unbound.
8496 - [BUG] acl-related keywords are not allowed in defaults sections
8497 - [BUG] cookie capture is declared in the frontend but checked on the backend
8498 - [BUG] critical errors should be reported even in daemon mode
8499 - [MINOR] redirect: add support for the "drop-query" option
8500 - [MINOR] redirect: add support for "set-cookie" and "clear-cookie"
8501 - [MINOR] redirect: in prefix mode a "/" means not to change the URI
8502 - [BUG] do not dequeue requests on a dead server
8503 - [BUG] do not dequeue the backend's pending connections on a dead server
8504 - [MINOR] stats: indicate if a task is running in "show sess"
8505 - [BUG] check timeout must not be changed if timeout.check is not set
8506 - [BUG] "option transparent" is for backend, not frontend !
8507 - [MINOR] transfer errors were not reported anymore in data phase
8508 - [MEDIUM] add a send limit to a buffer
8509 - [MEDIUM] don't report buffer timeout when there is I/O activity
8510 - [MEDIUM] indicate when we don't care about read timeout
8511 - [MINOR] add flags to indicate when a stream interface is waiting for space/data
8512 - [MEDIUM] enable inter-stream_interface wakeup calls
8513 - [MAJOR] implement autonomous inter-socket forwarding
8514 - [MINOR] add the splice_len member to the buffer struct in preparation of splice support
8515 - [MEDIUM] stream_sock: factor out the return path in case of no-writes
8516 - [MEDIUM] i/o: rework ->to_forward and ->send_max
8517 - [OPTIM] stream_sock: do not ask for polling on EAGAIN if we have read
8518 - [OPTIM] buffer: replace rlim by max_len
8519 - [OPTIM] stream_sock: factor out the buffer full handling out of the loop
8520 - [CLEANUP] replace a few occurrences of (flags & X) && !(flags & Y)
8521 - [CLEANUP] stream_sock: move the write-nothing condition out of the loop
8522 - [MEDIUM] split stream_sock_write() into callback and core functions
8523 - [MEDIUM] stream_sock_read: call ->chk_snd whenever there are data pending
8524 - [MINOR] stream_sock: fix a few wrong empty calculations
8525 - [MEDIUM] stream_sock: try to send pending data on chk_snd()
8526 - [MINOR] global.maxpipes: add the ability to reserve file descriptors for pipes
8527 - [MEDIUM] splice: add configuration options and set global.maxpipes
8528 - [MINOR] introduce structures required to support Linux kernel splicing
8529 - [MEDIUM] add definitions for Linux kernel splicing
8530 - [MAJOR] complete support for linux 2.6 kernel splicing
8531 - [BUG] reserve some pipes for backends with splice enabled
8532 - [MEDIUM] splice: add hints to support older buggy kernels
8533 - [MEDIUM] introduce pipe pools
8534 - [MEDIUM] splice: make use of pipe pools
8535 - [STATS] report pipe usage in the statistics
8536 - [OPTIM] make global.maxpipes default to global.maxconn/4 when not specified
8537 - [BUILD] fix snapshot date extraction with negative timezones
8538 - [MEDIUM] move global tuning options to the global structure
8539 - [MEDIUM] splice: add the global "nosplice" option
8540 - [BUILD] add USE_LINUX_SPLICE to enable LINUX_SPLICE on linux 2.6
8541 - [BUG] we must not exit if protocol binding only returns a warning
8542 - [MINOR] add support for bind interface name
8543 - [BUG] inform the user when root is expected but not set
8544 - [MEDIUM] add support for source interface binding
8545 - [MEDIUM] add support for source interface binding at the server level
8546 - [MEDIUM] implement bind-process to limit service presence by process
8547 - [DOC] document maxpipes, nosplice, option splice-{auto,request,response}
8548 - [DOC] filled the logging section of the configuration manual
8549 - [DOC] document HTTP status codes
8550 - [DOC] document a few missing info about errorfile
8551 - [BUG] fix random memory corruption using "show sess"
8552 - [BUG] fix unix socket processing of interrupted output
8553 - [DOC] add diagrams of queuing and future ACL design
8554 - [BUILD] proto_http did not build on gcc-2.95
8555 - [BUG] the "source" keyword must first clear optional settings
8556 - [BUG] global.tune.maxaccept must be limited even in mono-process mode
8557 - [MINOR] ensure that http_msg_analyzer updates pointer to invalid char
8558 - [MEDIUM] store a complete dump of request and response errors in proxies
8559 - [MEDIUM] implement error dump on unix socket with "show errors"
8560 - [DOC] document "show errors"
8561 - [MINOR] errors dump must use user-visible date, not internal date.
8562 - [MINOR] time: add __usec_to_1024th to convert usecs to 1024th of second
8563 - [MINOR] add curr_sec_ms and curr_sec_ms_scaled for current second.
8564 - [MEDIUM] measure and report session rate on frontend, backends and servers
8565 - [BUG] the "connslots" keyword was matched as "connlots"
8566 - [MINOR] acl: add 2 new verbs: fe_sess_rate and be_sess_rate
8567 - [MEDIUM] implement "rate-limit sessions" for the frontend
8568 - [BUG] interface binding: length must include the trailing zero
8569 - [BUG] typo in timeout error reporting : report *res and not *err
8570 - [OPTIM] maintain_proxies: only wake up when the frontend will be ready
8571 - [OPTIM] rate-limit: cleaner behaviour on low rates and reduce consumption
8572 - [BUG] switch server-side stream interface to close in case of abort
8573 - [CLEANUP] remove last references to term_trace
8574 - [OPTIM] freq_ctr: do not rotate the counters when reading
8575 - [BUG] disable any analysers for monitoring requests
8576 - [BUG] rate-limit in defaults section was ignored
8577 - [BUG] task: fix handling of duplicate keys
8578 - [OPTIM] task: don't unlink a task from a wait queue when waking it up
8579 - [OPTIM] displace tasks in the wait queue only if absolutely needed
8580 - [MEDIUM] minor update to the task api: let the scheduler queue itself
8581 - [BUG] event_accept() must always wake the task up, even in health mode
8582 - [CLEANUP] task: distinguish between clock ticks and timers
8583 - [OPTIM] task: reduce the number of calls to task_queue()
8584 - [OPTIM] do not re-check req buffer when only response has changed
8585 - [CLEANUP] don't enable kernel splicing when socket is closed
8586 - [CLEANUP] buffer_flush() was misleading, rename it as buffer_erase
8587 - [MINOR] buffers: implement buffer_flush()
8588 - [MEDIUM] rearrange forwarding condition to enable splice during analysis
8589 - [BUILD] build fixes for Solaris
8590 - [BUILD] proto_http did not build on gcc-2.95 (again)
8591 - [CONTRIB] halog: fast log parser for haproxy
8592 - [CONTRIB] halog: faster fgets() and add support for percentile reporting
8593
Willy Tarreau7b4c5ae2008-04-19 21:06:14 +020085942008/04/19 : 1.3.15
8595 - [BUILD] Added support for 'make install'
8596 - [BUILD] Added 'install-man' make target for installing the man page
8597 - [BUILD] Added 'install-bin' make target
8598 - [BUILD] Added 'install-doc' make target
8599 - [BUILD] Removed "/" after '$(DESTDIR)' in install targets
8600 - [BUILD] Changed 'install' target to install the binaries first
8601 - [BUILD] Replace hardcoded 'LD = gcc' with 'LD = $(CC)'
8602 - [MEDIUM]: Inversion for options
8603 - [MEDIUM]: Count retries and redispatches also for servers, fix redistribute_pending, extend logs, %d->%u cleanup
8604 - [BUG]: Restore clearing t->logs.bytes
8605 - [MEDIUM]: rework checks handling
8606 - [DOC] Update a "contrib" file with a hint about a scheme used for formathing subjects
8607 - [MEDIUM] Implement "track [<backend>/]<server>"
8608 - [MINOR] Implement persistent id for proxies and servers
8609 - [BUG] Don't increment server connections too much + fix retries
8610 - [MEDIUM]: Prevent redispatcher from selecting the same server, version #3
8611 - [MAJOR] proto_uxst rework -> SNMP support
8612 - [BUG] appsession lookup in URL does not work
8613 - [BUG] transparent proxy address was ignored in backend
8614 - [BUG] hot reconfiguration failed because of a wrong error check
8615 - [DOC] big update to the configuration manual
8616 - [DOC] large update to the configuration manual
8617 - [DOC] document more options
8618 - [BUILD] major rework of the GNU Makefile
8619 - [STATS] add support for "show info" on the unix socket
8620 - [DOC] document options forwardfor to logasap
8621 - [MINOR] add support for the "backlog" parameter
8622 - [OPTIM] introduce global parameter "tune.maxaccept"
8623 - [MEDIUM] introduce "timeout http-request" in frontends
8624 - [MINOR] tarpit timeout is also allowed in backends
8625 - [BUG] increment server connections for each connect()
8626 - [MEDIUM] add a turn-around state of one second after a connection failure
8627 - [BUG] fix typo in redispatched connection
8628 - [DOC] document options nolinger to ssl-hello-chk
8629 - [DOC] added documentation for "option tcplog" to "use_backend"
8630 - [BUG] connect_server: server might not exist when sending error report
8631 - [MEDIUM] support fully transparent proxy on Linux (USE_LINUX_TPROXY)
8632 - [MEDIUM] add non-local bind to connect() on Linux
8633 - [MINOR] add transparent proxy support for balabit's Tproxy v4
8634 - [BUG] use backend's source and not server's source with tproxy
8635 - [BUG] fix overlapping server flags
8636 - [MEDIUM] fix server health checks source address selection
8637 - [BUG] build failed on CONFIG_HAP_LINUX_TPROXY without CONFIG_HAP_CTTPROXY
8638 - [DOC] added "server", "source" and "stats" keywords
8639 - [DOC] all server parameters have been documented
8640 - [DOC] document all req* and rsp* keywords.
8641 - [DOC] added documentation about HTTP header manipulations
8642 - [BUG] log response byte count, not request
8643 - [BUILD] code did not build in full debug mode
8644 - [BUG] fix truncated responses with sepoll
8645 - [MINOR] use s->frt_addr as the server's address in transparent proxy
8646 - [MINOR] fix configuration hint about timeouts
8647 - [DOC] minor cleanup of the doc and notice to contributors
8648 - [MINOR] report correct section type for unknown keywords.
8649 - [BUILD] update MacOS Makefile to build on newer versions
8650 - [DOC] fix erroneous "useallbackups" option in the doc
8651 - [DOC] applied small fixes from early readers
8652 - [MINOR] add configuration support for "redir" server keyword
8653 - [MEDIUM] completely implement the server redirection method
8654 - [TESTS] add a test case for the server redirection mechanism
8655 - [DOC] add a configuration entry for "server ... redir <prefix>"
8656 - [BUILD] backend.c and checks.c did not build without tproxy !
8657 - Revert "[BUILD] backend.c and checks.c did not build without tproxy !"
8658 - [BUILD] backend.c and checks.c did not build without tproxy !
8659 - [OPTIM] used unsigned ints for HTTP state and message offsets
8660 - [OPTIM] GCC4's builtin_expect() is suboptimal
8661 - [BUG] failed conns were sometimes incremented in the frontend!
8662 - [BUG] timeout.check was not pre-set to eternity
8663 - [TESTS] add test-pollers.cfg to easily report pollers in use
8664 - [BUG] do not apply timeout.connect in checks if unset
8665 - [BUILD] ensure that makefile understands USE_DLMALLOC=1
8666 - [MINOR] silent gcc for a wrong warning
8667 - [CLEANUP] update .gitignore to ignore more temporary files
8668 - [CLEANUP] report dlmalloc's source path only if explictly specified
8669 - [BUG] str2sun could leak a small buffer in case of error during parsing
8670 - [BUG] option allbackups was not working anymore in roundrobin mode
8671 - [MAJOR] implementation of the "leastconn" load balancing algorithm
8672 - [BUILD] ensure that users don't build without setting the target anymore.
8673 - [DOC] document the leastconn LB algo
8674 - [MEDIUM] fix stats socket limitation to 16 kB
8675 - [DOC] fix unescaped space in httpchk example.
8676 - [BUG] fix double-decrement of server connections
8677 - [TESTS] add a test case for port mapping
8678 - [TESTS] add a benchmark for integer hashing
8679 - [TESTS] add new methods in ip-hash test file
8680 - [MAJOR] implement parameter hashing for POST requests
8681
Willy Tarreaue5b77e82007-12-06 01:25:44 +010086822007/12/06 : 1.3.14
8683 - New option http_proxy (Alexandre Cassen)
8684 - add support for "maxqueue" to limit server queue overload (Elijah Epifanov)
8685 - Check for duplicated conflicting proxies (Krzysztof Oledzki)
8686 - stats: report server and backend cumulated downtime (Krzysztof Oledzki)
8687 - use backends only with use_backend directive (Krzysztof Oledzki)
8688 - Handle long lines properly (Krzysztof Oledzki)
8689 - Implement and use generic findproxy and relax duplicated proxy check (Krzysztof Oledzki)
8690 - continous statistics (Krzysztof Oledzki)
8691 - add support for logging via a UNIX socket (Robert Tsai)
8692 - fix error checking in strl2ic/strl2uic()
8693 - fix calls to localtime()
8694 - provide easier-to-use ultoa_* functions
8695 - provide easy-to-use limit_r and LIM2A* macros
8696 - add a simple test for the status page
8697 - move error codes to common/errors.h
8698 - silent warning about LIST_* being redefined on OpenBSD
8699 - add socket address length to the protocols
8700 - group PR_O_BALANCE_* bits into a checkable value
8701 - externalize the "balance" option parser to backend.c
8702 - introduce the "url_param" balance method
8703 - make default_backend work in TCP mode too
8704 - disable warning about localtime_r on Solaris
8705 - adjust error messages about conflicting proxies
8706 - avoid calling some layer7 functions if not needed
8707 - simplify error path in event_accept()
8708 - add an options field to the listeners
8709 - added a new state to listeners
8710 - unbind_listener() must use fd_delete() and not close()
8711 - add a generic unbind_listener() primitive
8712 - add a generic delete_listener() primitive
8713 - add a generic unbind_all_listeners() primitive
8714 - create proto_tcp and move initialization of proxy listeners
8715 - stats: report numerical process ID, proxy ID and server ID
8716 - relative_pid was not initialized
8717 - missing header names in raw stats output
8718 - fix missing parenthesis in check_response_for_cacheability
8719 - small optimization on session_process_counters()
8720 - merge ebtree version 3.0
8721 - make ebtree headers multiple-include compatible
8722 - ebtree: include config.h for REGPRM*
8723 - differentiate between generic LB params and map-specific ones
8724 - add a weight divisor to the struct proxy
8725 - implement the Fast Weighted Round Robin (FWRR) algo
8726 - include filltab25.c to experiment on FWRR for dynamic weights
8727 - merge test-fwrr.cfg to validate dynamic weights
8728 - move the load balancing algorithm to be->lbprm.algo
8729 - change server check result to a bit field
8730 - implement "http-check disable-on-404" for graceful shutdown
8731 - secure the calling conditions of ->set_server_status_{up,down}
8732 - report disabled servers as "NOLB" when they are still UP
8733 - document the "http-check disable-on-404" option
8734 - http-check disable-on-404 is not limited to HTTP mode
8735 - add a test file for disable-on-404
8736 - use distinct bits per load-balancing algorithm type
8737 - implement the slowstart parameter for servers
8738 - document the server's slowstart parameter
8739 - stats: report the server warm up status in a "throttle" column
8740 - fix 2 minor issues on AIX
8741 - add the "nbsrv" ACL verb
8742 - add the "fail" condition to monitor requests
8743 - remove a warning from gcc due to htons() in standard.c
8744 - fwrr: ensure that we never overflow in placements
8745 - store the build options to report with -vv
8746 - fix the status return of the init script (R.I. Pienaar)
8747 - stats: real time monitoring script for unix socket (Prizee)
8748 - document "nbsrv" and "monitor fail"
8749 - restrict the set of allowed characters for identifiers
8750 - implement a time parsing function
8751 - add support for time units in the configuration
8752 - add a bit of documentation about timers
8753 - introduce separation between contimeout, and tarpit + queue
8754 - introduce the "timeout" keyword
8755 - grouped all timeouts in one structure
8756 - slowstart is in ms, not seconds
8757 - slowstart: ensure we don't start with a null weight
8758 - report the number of times each server was selected
8759 - fix build on AIX due to recent log changes
8760 - fix build on Solaris due to recent log changes
8761
Willy Tarreaue855f422007-10-18 22:38:22 +020087622007/10/18 : 1.3.13
8763 - replace the code under O'Reilly license (Arnaud Cornet)
8764 - add a small man page (Arnaud Cornet)
8765 - stats: report haproxy's version by default (Krzysztof Oledzki)
8766 - stats: count server retries and redispatches (Krzysztof Oledzki)
8767 - core: added easy support for Doug Lea's malloc (dlmalloc)
8768 - core: fade out memory usage when stopping proxies
8769 - core: moved the sockaddr pointer to the fdtab structure
8770 - core: add generic protocol support
8771 - core: implement client-side support for PF_UNIX sockets
8772 - stats: implement the CSV output
8773 - stats: add a link to the CSV export HTML page
8774 - stats: implement the statistics output on a unix socket
8775 - config: introduce the "stats" keyword in global section
8776 - build: centralize version and date into one file for each
8777 - tests: added a new hash algorithm
8778
87792007/10/18 : 1.3.12.3
8780 - add the "nolinger" option to disable data lingering (Alexandre Cassen)
8781 - fix double-free during clean exit (Krzysztof Oledzki)
8782 - prevent the system from sending an RST when closing health-checks
8783 (Krzysztof Oledzki)
8784 - do not add a cache-control header when on non-cacheable responses
8785 (Krzysztof Oledzki)
8786 - spread health checks even more (Krzysztof Oledzki)
8787 - stats: scope "." must match the backend and not the frontend
8788 - fixed call to chroot() during startup
8789 - fix wrong timeout computation in event_accept()
8790 - remove condition for exit() under fork() failure
8791
87922007/09/20 : 1.3.12.2
8793 - fix configuration sanity checks for TCP listeners
8794 - set the log socket receive window to zero bytes
8795 - pre-initialize timeouts to infinity, not zero
8796 - fix the SIGHUP message not to alert on server-less proxies
8797 - timeouts and retries could be ignored when switching backend
8798 - added a file to check that "retries" works.
8799 - O'Reilly has clarified its license
8800
88012007/09/05 : 1.3.12.1
8802 - spec I/O: fix allocations of spec entries for an FD
8803 - ensure we never overflow in chunk_printf()
8804 - improve behaviour with large number of servers per proxy
8805 - add support for "stats refresh <interval>"
8806 - stats page: added links for 'refresh' and 'hide down'
8807 - fix backend's weight in the stats page.
8808 - the "stats" keyword is not allowed in a pure frontend.
8809 - provide a test configuration file for stats and checks
8810
Willy Tarreaub21152b2007-06-17 23:41:40 +020088112007/06/17 : 1.3.12
8812 - fix segfault at exit when using captures
8813 - bug: negation in ACL conds was not cleared between terms
8814 - errorfile: use a local file to feed error messages
8815 - acl: support '-i' to ignore case when matching
8816 - acl: smarter integer comparison with operators eq,lt,gt,le,ge
8817 - acl: support maching on 'path' component
8818 - acl: implement matching on header values
8819 - acl: distinguish between request and response headers
8820 - acl: permit to return any header when no name specified
8821 - acl: provide default ACLs
8822 - added the 'use_backend' keyword for full content-switching
8823 - acl: specify the direction during fetches
8824 - acl: provide the argument length for fetch functions
8825 - acl: provide a reference to the expr to fetch()
8826 - improve memory freeing upon exit
8827 - str2net() must not change the const char *
8828 - shut warnings 'is*' macros from ctype.h on solaris
8829
Willy Tarreaua3503e02007-06-03 17:27:07 +020088302007/06/03 : 1.3.11.4
8831 - do not re-arm read timeout in SHUTR state !
8832 - optimize I/O by detecting system starvation
8833 - the epoll FD must not be shared between processes
8834 - limit the number of events returned by *poll*
8835
Willy Tarreau3c6fc072007-05-14 14:40:25 +020088362007/05/14 : 1.3.11.3
8837 - pre-initialize timeouts with tv_eternity during parsing
8838
Willy Tarreaufc273c22007-05-14 03:42:47 +020088392007/05/14 : 1.3.11.2
8840 - fixed broken health-checks since switch to timeval
8841
Willy Tarreau3c5340c2007-05-14 03:18:43 +020088422007/05/14 : 1.3.11.1
8843 - fixed ev_kqueue which was forgotten during the switch to timeval
8844 - allowed null timeouts for past events in select
8845
Willy Tarreau544eb402007-05-14 02:42:33 +020088462007/05/14 : 1.3.11
8847 - fixed ev_sepoll again by rewriting the state machine
8848 - switched all timeouts to timevals instead of milliseconds
8849 - improved memory management using mempools v2.
8850 - several minor optimizations
8851
Willy Tarreau9ca931f2007-05-10 07:51:17 +020088522007/05/09 : 1.3.10.2
8853 - fixed build on OpenBSD (missing types.h)
8854
Willy Tarreau13398d32007-05-09 22:58:28 +020088552007/05/09 : 1.3.10.1
8856 - fixed sepoll transition matrix (two states were missing)
8857
Willy Tarreau61beedf2007-05-09 01:44:58 +020088582007/05/08 : 1.3.10
8859 - several fixes in ev_sepoll
8860 - fixed some expiration dates on some tasks
8861 - fixed a bug in connection establishment detection due to speculative I/O
8862 - fixed rare bug occuring on TCP with early close (reported by Andy Smith)
8863 - implemented URI hashing algorithm (Guillaume Dallaire)
8864 - implemented SMTP health checks (Peter van Dijk)
8865 - replaced the rbtree with ul2tree from old scheduler project
8866 - new framework for generic ACL support
8867 - added the 'acl' and 'block' keywords to the config language
8868 - added several ACL criteria and matches (IP, port, URI, ...)
8869 - cleaned up and better modularization for some time functions
8870 - fixed list macros
8871 - fixed useless memory allocation in str2net()
8872 - store the original destination address in the session
8873
Willy Tarreau6e0433f2007-04-16 01:18:12 +020088742007/04/15 : 1.3.9
8875 - modularized the polling mechanisms and use function pointers instead
8876 of macros at many places
8877 - implemented support for FreeBSD's kqueue() polling mechanism
8878 - fixed a warning on OpenBSD : MIN/MAX redefined
8879 - change socket registration order at startup to accomodate kqueue.
8880 - several makefile cleanups to support old shells
8881 - fix build with limits.h once for all
8882 - ev_epoll: do not rely on fd_sets anymore, use changes stacks instead.
8883 - fdtab now holds the results of polling
8884 - implemented support for speculative I/O processing with epoll()
8885 - remove useless calls to shutdown(SHUT_RD), resulting in small speed boost
8886 - auto-registering of pollers at load time
8887
Willy Tarreau42c76592007-04-03 20:30:13 +020088882007/04/03 : 1.3.8.2
8889 - rewriting either the status line or request line could crash the
8890 process due to a pointer which ought to be reset before parsing.
8891 - rewriting the status line in the response did not work, it caused
8892 a 502 Bad Gateway due to an erroneous state during parsing
8893
Willy Tarreauef6d7612007-04-01 11:06:22 +020088942007/04/01 : 1.3.8.1
8895 - fix reqadd when no option httpclose is used.
8896 - removed now unused fiprm and beprm from proxies
8897 - split logs into two versions : TCP and HTTP
8898 - added some docs about http headers storage and acls
8899 - added a VIM script for syntax color highlighting (Bruno Michel)
8900
Willy Tarreaud661cc02007-03-26 00:24:56 +020089012007/03/25 : 1.3.8
8902 - fixed several bugs which might have caused a crash with bad configs
8903 - several optimizations in header processing
8904 - many progresses towards transaction-based processing
8905 - option forwardfor may be used in frontends
8906 - completed HTTP response processing
8907 - some code refactoring between request and response processing
8908 - new HTTP header manipulation functions
8909 - optimizations on the recv() patch to reduce CPU usage under very
8910 high data rates.
8911 - more user-friendly help about the 'usesrc' keyword (CTTPROXY)
8912 - username/groupname support from Marcus Rueckert
8913 - added the "except" keyword to the "forwardfor" option (Bryan German)
8914 - support for health-checks on other addresses (Fabrice Dulaunoy)
8915 - makefile for MacOS 10.4 / Darwin (Dan Zinngrabe)
8916 - do not insert "Connection: close" in HTTP/1.0 messages
8917
Willy Tarreau9cabf702007-01-26 23:49:01 +010089182007/01/26 : 1.3.7
8919 - fix critical bug introduced with 1.3.6 : an empty request header
8920 may lead to a crash due to missing pointer assignment
8921 - hdr_idx might be left uninitialized in debug mode
8922 - fixed build on FreeBSD due to missing fd_set declaration
8923
Willy Tarreaue7a24382007-01-22 08:57:44 +010089242007/01/22 : 1.3.6.1
8925 - change in the header chaining broke cookies and authentication
8926
Willy Tarreau49e1ee82007-01-22 00:56:46 +010089272007/01/22 : 1.3.6
8928 - stats now support the HEAD method too
8929 - extracted http request from the session
8930 - huge rework of the HTTP parser which is now a 28-state FSM.
8931 - linux-style likely/unlikely macros for optimization hints
8932 - do not create a server socket when there's no server
8933 - imported lots of docs
8934
Willy Tarreau5871f8e2007-01-07 02:47:01 +010089352007/01/07 : 1.3.5
8936 - stats: swap color sets for active and backup servers
8937 - try to guess server check port when unset
8938 - added complete support and doc for TCP Splicing
8939 - replace the wait-queue linked list with an rbtree.
8940 - a few bugfixes and cleanups
8941
Willy Tarreau85270da2007-01-02 00:59:39 +010089422007/01/02 : 1.3.4
8943 - support for cttproxy on the server side to present the client
8944 address to the server.
8945 - added support for SO_REUSEPORT on Linux (needs kernel patch)
8946 - new RFC2616-compliant HTTP request parser with header indexing
8947 - split proxies in frontends, rulesets and backends
8948 - implemented the 'req[i]setbe' to select a backend depending
8949 on the contents
8950 - added the 'default_backend' keyword to select a default BE.
8951 - new stats page featuring FEs and BEs + bytes in both dirs
8952 - improved log format to indicate the backend and the time in ms.
8953 - lots of cleanups
8954
Willy Tarreau9c9fea42006-10-16 00:03:35 +020089552006/10/15 : 1.3.3
8956 - fix broken redispatch option in case the connection has already
8957 been marked "in progress" (ie: nearly always).
8958 - support regparm on x86 to speed up some often called functions
8959 - removed a few useless calls to gettimeofday() in log functions.
8960 - lots of 'const char*' cleanups
8961 - turn every FD_* into functions which are faster on recent CPUs
8962
Willy Tarreau690f9aa2006-09-03 11:23:06 +020089632006/09/03 : 1.3.2
8964 - started the changes towards I/O completion callbacks. stream_sock* have
8965 replaced event_*.
8966 - added the new "reqtarpit" and "reqitarpit" protection features
8967
Willy Tarreau8f2b8552006-07-09 17:11:39 +020089682006/07/09 : 1.3.1 (1.2.15)
8969 - now, haproxy warns about missing timeout during startup to try to
8970 eliminate all those buggy configurations.
8971 - added "Content-Type: text/html" in responses wherever appropriate, as
8972 suggested by Cameron Simpson.
8973 - implemented "option ssl-hello-chk" to use SSLv3 CLIENT HELLO messages to
8974 test server's health
8975 - implemented "monitor-uri" so that haproxy can reply to a specific URI with
8976 an "HTTP/1.0 200 OK" response. This is useful to validate multiple proxies
8977 at once.
8978
Willy Tarreaub9e98b62006-07-03 10:32:46 +020089792006/06/29 : 1.3.0
8980 - exploded the whole file into multiple .c and .h. No functionnal
Willy Tarreau8f2b8552006-07-09 17:11:39 +02008981 difference is expected at all.
8982 - fixed a bug by which neither stats nor error messages could be returned if
8983 'clitimeout' was missing.
Willy Tarreaub9e98b62006-07-03 10:32:46 +02008984
willy tarreau7e6328d2006-05-21 23:26:20 +020089852006/05/21 : 1.2.14
8986 - new HTML status report with the 'stats' keyword.
8987 - added the 'abortonclose' option to better resist traffic surges
8988 - implemented dynamic traffic regulation with the 'minconn' option
8989 - show request time on denied requests
8990 - definitely fixed hot reconf on OpenBSD by the use of SO_REUSEPORT
8991 - now a proxy instance is allowed to run without servers, which is
8992 useful to dedicate one instance to stats
8993 - added lots of error counters
8994 - a missing parenthesis preventd matching of cacheable cookies
8995 - a missing parenthesis in poll_loop() might have caused missed events.
8996
Willy TARREAU4404b7e2006-05-14 10:00:09 +020089972006/05/14 : 1.2.13.1
8998 - an uninitialized field in the struct session could cause a crash when
8999 the session was freed. This has been encountered on Solaris only.
9000 - Solaris and OpenBSD no not support shutdown() on listening socket. Let's
9001 be nice to them by performing a soft stop if pause fails.
9002
willy tarreauc3a2e072006-05-13 18:51:38 +020090032006/05/13 : 1.2.13
9004 - 'maxconn' server parameter to do per-server session limitation
9005 - queueing to support non-blocking session limitation
9006 - fixed removal of cookies for cookie-less servers such as backup servers
9007 - two separate wait queues for expirable and non-expirable tasks provide
9008 better performance with lots of sessions.
9009 - some code cleanups and performance improvements
9010 - made state dumps a bit more verbose
9011 - fixed missing checks for NULL srv in dispatch mode
9012 - load balancing on backup servers was not possible in source hash mode.
9013 - two session flags shared the same bit, but fortunately they were not
9014 compatible.
9015
willy tarreauc0d4bbd2006-04-15 21:47:50 +020090162006/04/15 : 1.2.12
9017 Very few changes preparing for more important changes to support per-server
9018 session limitations and queueing :
9019 - ignore leading empty lines in HTTP requests as suggested by RFC2616.
9020 - added the 'weight' parameter to the servers, limited to 1..256. It applies
9021 to roundrobin and source hash.
9022 - the optional '-s' option could clobber '-st' and '-sf' if compiled in.
9023
willy tarreaue0dd2692006-03-30 16:27:34 +020090242006/03/30 : 1.2.11.1
9025 - under some conditions, it might have been possible that when the
9026 last dead server became available, it would not have been used
9027 till another one would have changed state. Could not be reproduced
9028 at all, however seems possible from the code.
9029
willy tarreaud2058dc2006-03-25 20:35:41 +010090302006/03/25 : 1.2.11
9031 - added the '-db' command-line option to disable backgrounding.
9032 - added the -sf/-st command-line arguments which are used to specify
9033 a list of pids to send a FINISH or TERMINATE signal upon startup.
9034 They will also be asked to release their port if a bind fails.
9035 - reworked the startup mechanism to allow the sending of a signal to a list
9036 of old pids if a socket cannot be bound, with a retry for a limited amount
9037 of time (1 second by default).
9038 - added the ability to enforce limits on memory usage.
9039 - added the 'source' load-balancing algorithm which uses the source IP(v4|v6)
9040 - re-architectured the server round-robin mechanism to ease integration of
9041 other algorithms. It now relies on the number of active and backup servers.
9042 - added a counter for the number of active and backup servers, and report
9043 these numbers upon SIGHUP or state change.
9044
willy tarreaubfad5742006-03-23 14:19:11 +010090452006/03/23 : 1.2.10.1
9046 - while fixing the backup server round-robin "feature", a new bug was
9047 introduced which could miss some backup servers.
9048 - the displayed proxy name was wrong when dumping upon SIGHUP.
9049
willy tarreauaaff30e2006-03-19 21:30:41 +010090502006/03/19 : 1.2.10
9051 - assert.h is needed when DEBUG is defined.
9052 - ENORMOUS long standing bug affecting the epoll polling system :
9053 event_data is a union, not a structure !
9054 - Make fd management more robust and easier to debug. Also some
9055 micro-optimisations.
9056 - Limit the number of consecutive accept() in multi-process mode.
9057 This produces a more evenly distributed load across the processes and
9058 slightly improves performance by reducing bottlenecks.
9059 - Make health-checks be more regular, and faster to retry after a timeout.
9060 - Fixed some messages to ease parsing of alerts.
9061 - provided a patch to enable epoll on RHEL3 kernels.
9062 - Separated OpenBSD build from the main Makefile into a new one.
9063
willy tarreau50be0172006-03-15 19:41:19 +010090642006/03/15 : 1.2.9
9065 - haproxy could not be stopped after being paused, it had to be woken up
9066 first. This has been fixed.
9067 - the 'ulimit-n' parameter is now optional and by default computed from
9068 maxconn + the number of listeners + the number of health-checks.
9069 - it is now possible to specify a maximum number of connections at build
9070 time with the SYSTEM_MAXCONN define. The value set in the configuration
9071 file will then be limited to this value, and only the command-line '-n'
9072 option will be able to bypass it. It will prevent against accidental
9073 high memory usage on small systems.
9074 - RFC2616 expects that any HTTP agent accepts multi-line headers. Earlier
9075 versions did not detect a line beginning with a space as the continuation
9076 of previous header. It is now correct.
9077 - health checks sent to servers configured with identical intervals were
9078 sent in perfect synchronisation because the initial time was the same
9079 for all. This could induce high load peaks when fragile servers were
9080 hosting tens of instances for the same application. Now the load is
9081 spread evenly across the smallest interval amongst a listener.
9082 - a new 'forceclose' option was added to make the proxy close the outgoing
9083 channel to the server once it has sent all its headers and the server
9084 starts responding. This helps some servers which don't close upon the
9085 'Connection: close' header. It implies 'option httpclose'.
9086 - there was a bug in the way the backup servers were handled. They were
9087 erroneously load-balanced while the doc said the opposite. Since
9088 load-balanced backup servers is one of the features some people have
9089 been asking for, the problem was fixed to reflect the documented
9090 behaviour and a new option 'allbackups' was introduced to provide the
9091 feature to those who need it.
9092 - a never ending connect() could lead to a fast select() loop if its
9093 timeout times the number of retransmits exceeded the server read or write
9094 timeout, because the later was used to compute select()'s timeout while
9095 the connection timeout was not reached.
9096 - now we initialize the libc's localtime structures very early so that even
9097 under OOM conditions, we can still send dated error messages without
9098 segfaulting.
9099 - the 'daemon' mode implies 'quiet' and disables 'verbose' because file
9100 descriptors are closed.
9101
willy tarreau065f1c02006-01-29 22:10:07 +010091022006/01/29 : 1.2.8
9103 - fixed a nasty bug affecting poll/epoll which could return unmodified data
9104 from the server to the client, and sometimes lead to memory corruption
9105 crashing the process.
9106 - added the new pause/play mechanism with SIGTTOU/SIGTTIN for hot-reconf.
9107
91082005/12/18 : 1.2.7.1
9109 - the "retries" option was ignored because connect() could not return an
9110 error if the connection failed before the timeout.
9111 - TCP health-checks could not detect a connection refused in poll/epoll
9112 mode.
9113
willy tarreaua56eca72005-12-18 01:34:42 +010091142005/11/13 : 1.2.7
willy tarreau77bc8542005-12-18 01:31:43 +01009115 - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
9116 least on Solaris, this caused the libc's regex primitives to be used instead
9117 of PCRE, which caused trouble on group references. This is now fixed.
willy tarreaud0fb4652005-12-18 01:32:04 +01009118 - delayed the quiet mode during startup so that most of the startup alerts can
9119 be displayed even in quiet mode.
9120 - display an alert when a listener has no address, invalid or no port, or when
9121 there are no enabled listeners upon startup.
willy tarreau4373b962005-12-18 01:32:31 +01009122 - added "static-pcre" to the list of supported regex options in the Makefile.
willy tarreau77bc8542005-12-18 01:31:43 +01009123
willy tarreaub952e1d2005-12-18 01:31:20 +010091242005/10/09 : 1.2.7rc (1.1.33rc)
9125 - second batch of socklen_t changes.
9126 - clean-ups from Cameron Simpson.
9127 - because tv_remain() does not know about eternity, using no timeout can
9128 make select() spin around a null time-out. Bug reported by Cameron Simpson.
9129 - client read timeout was not properly set to eternity initialized after an
9130 accept() if it was not set in the config. It remained undetected so long
9131 because eternity is 0 and newly allocated pages are zeroed by the system.
9132 - do not call get_original_dst() when not in transparent mode.
9133 - implemented a workaround for a bug in certain epoll() implementations on
9134 linux-2.4 kernels (epoll-lt <= 0.21).
9135 - implemented TCP keepalive with new options : tcpka, clitcpka, srvtcpka.
9136
willy tarreauc5f73ed2005-12-18 01:26:38 +010091372005/08/07 : 1.2.6
9138 - clean-up patch from Alexander Lazic fixes build on Debian 3.1 (socklen_t).
9139
91402005/07/06 : 1.2.6-pre5 (1.1.32)
willy tarreau0fe39652005-12-18 01:25:24 +01009141 - added the number of active sessions (proxy/process) in the logs
9142
91432005/07/06 : 1.2.6-pre4 (1.1.32-pre4)
willy tarreaub1285d52005-12-18 01:20:14 +01009144 - the time-out fix introduced in 1.1.25 caused a corner case where it was
9145 possible for a client to keep a connection maintained regardless of the
9146 timeout if the server closed the connection during the HEADER phase,
9147 while the client ignored the close request while doing nothing in the
9148 other direction. This has been fixed now by ensuring that read timeouts
9149 are re-armed when switching to any SHUTW state.
9150
91512005/07/05 : 1.2.6-pre3 (1.1.32-pre3)
9152 - enhanced error reporting in the logs. Now the proxy will precisely detect
9153 various error conditions related to the system and/or process limits, and
9154 generate LOG_EMERG logs indicating that a resource has been exhausted.
9155 - logs will contain two new characters for the error cause : 'R' indicates
9156 a resource exhausted, and 'I' indicates an internal error, though this
9157 one should never happen.
9158 - server connection timeouts can now be reported in the logs (sC), as well
9159 as connections refused because of maxconn limitations (PC).
9160
91612005/07/05 : 1.2.6-pre2 (1.1.32-pre2)
9162 - new global configuration keyword "ulimit-n" may be used to raise the FD
9163 limit to usable values.
9164 - a warning is now displayed on startup if the FD limit is lower than the
9165 configured maximum number of sockets.
9166
91672005/07/05 : 1.2.6-pre1 (1.1.32-pre1)
9168 - new configuration keyword "monitor-net" makes it possible to be monitored
9169 by external devices which connect to the proxy without being logged nor
9170 forwarded to any server. Particularly useful on generic TCPv4 relays.
9171
willy tarreau5dffb602005-12-18 01:15:23 +010091722005/06/21 : 1.2.5.2
9173 - fixed build on PPC where chars are unsigned by default
9174
willy tarreau08dedbe2005-12-18 01:13:48 +010091752005/05/02 : 1.2.5.1
9176 - dirty hack to fix a bug introduced with epoll : if we close an FD and
9177 immediately reassign it to another session through a connect(), the
9178 Prev{Read,Write}Events are not updated, which causes trouble detecting
9179 changes, thus leading to many timeouts at high loads.
9180
willy tarreau64a3cc32005-12-18 01:13:11 +010091812005/04/30 : 1.2.5 (1.1.31)
9182 - changed the runtime argument to disable epoll() to '-de'
9183 - changed the runtime argument to disable poll() to '-dp'
9184 - added global options 'nopoll' and 'noepoll' to do the same at the
9185 configuration level.
9186 - added a 'linux24e' target to the Makefile for Linux 2.4 systems patched to
9187 support epoll().
9188 - changed default FD_SETSIZE to 65536 on Solaris (default=1024)
9189 - conditionned signals redirection to #ifdef DEBUG_MEMORY
9190
willy tarreau1c2ad212005-12-18 01:11:29 +010091912005/04/26 : 1.2.5-pre4
9192 - made epoll() support a compile-time option : ENABLE_EPOLL
9193 - provided a very little libc replacement for a possibly missing epoll()
9194 implementation which can be enabled by -DUSE_MY_EPOLL
9195 - implemented the poll() poller, which can be enabled with -DENABLE_POLL.
9196 The equivalent runtime argument becomes '-P'. A few tests show that it
9197 performs like select() with many fds, but slightly slower (certainly
9198 because of the higher amount of memory involved).
9199 - separated the 3 polling methods and the tasks scheduler into 4 distinct
9200 functions which makes the code a lot more modular.
9201 - moved some event tables to private static declarations inside the poller
9202 functions.
9203 - the poller functions can now initialize themselves, run, and cleanup.
9204 - changed the runtime argument to enable epoll() to '-E'.
9205 - removed buggy epoll_ctl() code in the client_retnclose() function. This
9206 function was never meant to remove anything.
9207 - fixed a typo which caused glibc to yell about a double free on exit.
9208 - removed error checking after epoll_ctl(DEL) because we can never know if
9209 the fd is still active or already closed.
9210 - added a few entries in the makefile
9211
willy tarreauad90a0c2005-12-18 01:09:15 +010092122005/04/25 : 1.2.5-pre3
9213 - experimental epoll() support (use temporary '-e' argument)
9214
92152005/04/24 : 1.2.5-pre2
willy tarreauc1f47532005-12-18 01:08:26 +01009216 - implemented the HTTP 303 code for error redirection. This forces the
9217 browser to fetch the given URI with a GET request. The new keyword for
9218 this is 'errorloc303', and a new 'errorloc302' keyword has been created
9219 to make them easily distinguishable.
9220 - added more controls in the parser for valid use of '\x' sequence.
9221 - few fixes from Alex & Klaus
9222
willy tarreauad90a0c2005-12-18 01:09:15 +010092232005/02/17 : 1.2.5-pre1
willy tarreauc1f47532005-12-18 01:08:26 +01009224 - fixed a few errors in the documentation
9225
92262005/02/13
9227 - do not pre-initialize unused file-descriptors before select() anymore.
9228
willy tarreau12350152005-12-18 01:03:27 +010092292005/01/22 : 1.2.4
9230 - merged Alexander Lazic's and Klaus Wagner's work on application
9231 cookie-based persistence. Since this is the first merge, this version is
9232 not intended for general use and reports are more than welcome. Some
9233 documentation is really needed though.
9234
willy tarreau0174f312005-12-18 01:02:42 +010092352005/01/22 : 1.2.3 (1.1.30)
9236 - add an architecture guide to the documentation
9237 - released without any changes
9238
92392004/12/26 : 1.2.3-pre1 (1.1.30-pre1)
9240 - increased default BUFSIZE to 16 kB to accept max headers of 8 kB which is
9241 compatible with Apache. This limit can be configured in the makefile now.
9242 Thanks to Eric Fehr for the checks.
9243 - added a per-server "source" option which now makes it possible to bind to
9244 a different source for each (potentially identical) server.
9245 - changed cookie-based server selection slightly to allow several servers to
9246 share a same cookie, thus making it possible to associate backup servers to
9247 live servers and ease soft-stop for maintenance periods. (Alexander Lazic)
9248 - added the cookie 'prefix' mode which makes it possible to use persistence
9249 with thin clients which support only one cookie. The server name is prefixed
9250 before the application cookie, and restore back.
9251 - fixed the order of servers within an instance to match documentation. Now
9252 the servers are *really* used in the order of their declaration. This is
9253 particularly important when multiple backup servers are in use.
9254
willy tarreau4302f492005-12-18 01:00:37 +010092552004/10/18 : 1.2.2 (1.1.29)
9256 - fixed a bug where a TCP connection would be logged twice if the 'logasap'
9257 option was enabled without the 'tcplog' option.
9258 - encode_string() would use hdr_encode_map instead of the map argument.
9259
92602004/08/10 : (1.1.29-pre2)
9261 - the logged request is now encoded with '#XX' for unprintable characters
9262 - new keywords 'capture request header' and 'capture response header' enable
9263 logging of arbitrary HTTP headers in requests and responses
9264 - removed "-DSOLARIS" after replacing the last inet_aton() with inet_pton()
9265
willy tarreau982249e2005-12-18 00:57:06 +010092662004/06/06 : 1.2.1 (1.1.28)
9267 - added the '-V' command line option to verbosely report errors even though
9268 the -q or 'quiet' options are specified. This is useful with '-c'.
9269 - added a Red Hat init script and a .spec from Simon Matter <simon.matter@invoca.ch>
willy tarreau036e1ce2005-12-17 13:46:33 +01009270
willy tarreau982249e2005-12-18 00:57:06 +010092712004/06/05 :
9272 - added the "logasap" option which produces a log without waiting for the data
9273 to be transferred from the server to the client.
9274 - added the "httpclose" option which removes any "connection:" header and adds
9275 "Connection: close" in both direction.
willy tarreau97f58572005-12-18 00:53:44 +01009276 - added the 'checkcache' option which blocks cacheable responses containing
9277 dangerous headers, such as 'set-cookie'.
willy tarreau982249e2005-12-18 00:57:06 +01009278 - added 'rspdeny' and 'rspideny' to block certain responses to avoid sensible
9279 information leak from servers.
willy tarreau25c4ea52005-12-18 00:49:49 +01009280
92812004/04/18 :
willy tarreaudd07e972005-12-18 00:48:48 +01009282 - send an EMERG log when no server is available for a given proxy
9283 - added the '-c' command line option to syntactically check the
9284 configuration file without starting the service.
9285
willy tarreau8a86dbf2005-12-18 00:45:59 +010092862003/11/09 : 1.2.0
9287 - the same as 1.1.27 + IPv6 support on the client side
9288
willy tarreaufe2c5c12005-12-17 14:14:34 +010092892003/10/27 : 1.1.27
9290 - the configurable HTTP health check introduced in 1.1.23 revealed a shameful
9291 bug : the code still assumed that HTTP requests were the same size as the
9292 original ones (22 bytes), and failed if they were not.
9293 - added support for pidfiles.
9294
willy tarreauc58fc692005-12-17 14:13:08 +010092952003/10/22 : 1.1.26
9296 - the fix introduced in 1.1.25 for client timeouts while waiting for servers
9297 broke almost all compatibility with POST requests, because the proxy
9298 stopped to read anything from the client as soon as it got all of its
9299 headers.
9300
willy tarreauc1cae632005-12-17 14:12:23 +010093012003/10/15 : 1.1.25
9302 - added the 'tcplog' option, which provides enhanced, HTTP-like logs for
9303 generic TCP proxies, or lighter logs for HTTP proxies.
9304 - fixed a time-out condition wrongly reported as client time-out in data
9305 phase if the client timeout was lower than the connect timeout times the
9306 number of retries.
9307
willy tarreau197e8ec2005-12-17 14:10:59 +010093082003/09/21 : 1.1.24
9309 - if a client sent a full request then shut its write connection down, then
9310 the request was aborted. This case was detected only when using haproxy
9311 both as health-check client and as a server.
9312 - if 'option httpchk' is used in a 'health' mode server, then responses will
9313 change from 'OK' to 'HTTP/1.0 200 OK'.
9314 - fixed a Linux-only bug in case of HTTP server health-checks, where a single
9315 server response followed by a close could be ignored, and the server seen
9316 as failed.
9317
willy tarreaueedaa9f2005-12-17 14:08:03 +010093182003/09/19 : 1.1.23
9319 - fixed a stupid bug introduced in 1.1.22 which caused second and subsequent
9320 'default' sections to keep previous parameters, and not initialize logs
9321 correctly.
9322 - fixed a second stupid bug introduced in 1.1.22 which caused configurations
9323 relying on 'dispatch' mode to segfault at the first connection.
9324 - 'option httpchk' now supports method, HTTP version and a few headers.
9325 - now, 'option httpchk', 'cookie' and 'capture' can be specified in
9326 'defaults' section
9327
93282003/09/10 : 1.1.22
willy tarreaua41a8b42005-12-17 14:02:24 +01009329 - 'listen' now supports optionnal address:port-range lists
9330 - 'bind' introduced to add new listen addresses
9331 - fixed a bug which caused a session to be kept established on a server till
9332 it timed out if the client closed during the DATA phase.
9333 - the port part of each server address can now be empty to make the proxy
9334 connect to the server on the same port it was connected to, be an absolute
9335 unsigned number to reflect a single port (as in older versions), or an
9336 explicitly signed number (+N/-N) to indicate that this offset must be
9337 applied to the port the proxy was connected to, when connecting to the
9338 server.
9339 - the 'port' server option allows the user to specify a different
9340 health-check port than the service one. It is mandatory when only relative
9341 ports have been specified and check is required. By default, the checks are
9342 sent to the service port.
9343 - new 'defaults' section which is rather similar to 'listen' except that all
9344 values are only used as default values for future 'listen' sections, until
9345 a new 'defaults' resets them. At the moment, server options, regexes,
9346 cookie names and captures cannot be set in the 'defaults' section.
9347
willy tarreau2f6ba652005-12-17 13:57:42 +010093482003/05/06 : 1.1.21
9349 - changed the debug output format so that it now includes the session unique
9350 ID followed by the instance name at the beginning of each line.
9351 - in debug mode, accept now shows the client's IP and port.
9352 - added one 3 small debugging scripts to search and pretty print debug output
9353 - changed the default health check request to "OPTIONS /" instead of
9354 "OPTIONS *" since not all servers implement the later one.
9355 - "option httpchk" now accepts an optional parameter allowing the user to
9356 specify and URI other than '/' during health-checks.
9357
willy tarreaub1ff9db2005-12-17 13:51:03 +010093582003/04/21 : 1.1.20
9359 - fixed two problems with time-outs, one where a server would be logged as
9360 timed out during transfer that take longer to complete than the fixed
9361 time-out, and one where clients were logged as timed-out during the data
9362 phase because they didn't have anything to send. This sometimes caused
9363 slow client connections to close too early while in fact there was no
9364 problem. The proper fix would be to have a per-fd time-out with
9365 conditions depending on the state of the HTTP FSM.
9366
willy tarreau906b2682005-12-17 13:49:52 +010093672003/04/16 : 1.1.19
9368 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
9369 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
9370 cookie persistence because it uses "cookie:". Two memcmp() have been
9371 replaced with strncasecmp().
9372
willy tarreau036e1ce2005-12-17 13:46:33 +010093732003/04/02 : 1.1.18
9374 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
9375 REGEX=pcre on the make command line.
9376 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
9377 - when explicit source address binding is required, it is now also used for
9378 health-checks.
9379 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
9380 itself.
9381 - factored several strings to reduce binary size by about 2 kB.
9382 - replaced setreuid() and setregid() with more standard setuid() and setgid().
9383 - added 4 status flags to the log line indicating who ended the connection
9384 first, the sessions state, the validity of the cookie, and action taken on
9385 the set-cookie header.
9386
93872002/10/18 : 1.1.17
9388 - add the notion of "backup" servers, which are used only when all other
9389 servers are down.
9390 - make Set-Cookie return "" instead of "(null)" when the server has no
9391 cookie assigned (useful for backup servers).
9392 - "log" now supports an optionnal level name (info, notice, err ...) above
9393 which nothing is sent.
9394 - replaced some strncmp() with memcmp() for better efficiency.
9395 - added "capture cookie" option which logs client and/or server cookies
9396 - cleaned up/down messages and dump servers states upon SIGHUP
9397 - added a redirection feature for errors : "errorloc <errnum> <url>"
9398 - now we won't insist on connecting to a dead server, even with a cookie,
9399 unless option "persist" is specified.
9400 - added HTTP/408 response for client request time-out and HTTP/50[234] for
9401 server reply time-out or errors.
9402
94032002/09/01 : 1.1.16
9404 - implement HTTP health checks when option "httpchk" is specified.
9405
94062002/08/07 : 1.1.15
9407 - replaced setpgid()/setpgrp() with setsid() for better portability, because
9408 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
9409
94102002/07/20 : 1.1.14
9411 - added "postonly" cookie mode
9412
94132002/07/15 : 1.1.13
9414 - tv_diff used inverted parameters which led to negative times !
9415
94162002/07/13 : 1.1.12
9417 - fixed stats monitoring, and optimized some tv_* for most common cases.
9418 - replaced temporary 'newhdr' with 'trash' to reduce stack size
9419 - made HTTP errors more HTML-fiendly.
9420 - renamed strlcpy() to strlcpy2() because of a slightly difference between
9421 their behaviour (return value), to avoid confusion.
9422 - restricted HTTP messages to HTTP proxies only
9423 - added a 502 message when the connection has been refused by the server,
9424 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
9425 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
9426 inserting a cookie, because some caches (apache) don't understand it.
9427 - fixed processing of server headers when client is in SHUTR state
9428
94292002/07/04 :
9430 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
9431 setpgid()
9432
94332002/06/04 : 1.1.11
9434 - fixed multi-cookie handling in client request to allow clean deletion
9435 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +01009436 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +01009437 - added a "nocache" option to "cookie" to specify that we explicitly want
9438 to add a "cache-control" header when we add a cookie.
9439 It is also possible to add an "Expires: <old-date>" to keep compatibility
9440 with old/broken caches.
9441
94422002/05/10 : 1.1.10
9443 - if a cookie is used in insert+indirect mode, it's desirable that the
9444 the servers don't see it. It was not possible to remove it correctly
9445 with regexps, so now it's removed automatically.
9446
94472002/04/19 : 1.1.9
9448 - don't use snprintf()'s return value as an end of message since it may
9449 be larger. This caused bus errors and segfaults in internal libc's
9450 getenv() during localtime() in send_log().
9451 - removed dead insecure send_syslog() function and all references to it.
9452 - fixed warnings on Solaris due to buggy implementation of isXXXX().
9453
94542002/04/18 : 1.1.8
9455 - option "dontlognull"
9456 - fixed "double space" bug in config parser
9457 - fixed an uninitialized server field in case of dispatch
9458 with no existing server which could cause a segfault during
9459 logging.
9460 - the pid logged was always the father's, which was wrong for daemons.
9461 - fixed wrong level "LOG_INFO" for message "proxy started".
9462
94632002/04/13 :
9464 - http logging is now complete :
9465 - ip:port, date, proxy, server
9466 - req_time, conn_time, hdr_time, tot_time
9467 - status, size, request
9468 - source address
9469
94702002/04/12 : 1.1.7
9471 - added option forwardfor
9472 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
9473 - added "log global" in "listen" section.
9474
94752002/04/09 :
9476 - added a new "global" section :
9477 - logs
9478 - debug, quiet, daemon modes
9479 - uid, gid, chroot, nbproc, maxconn
9480
94812002/04/08 : 1.1.6
9482 - regex are now chained and not limited anymore.
9483 - unavailable server now returns HTTP/502.
9484 - increased per-line args limit to 40
9485 - added reqallow/reqdeny to block some request on matches
9486 - added HTTP 400/403 responses
9487
94882002/04/03 : 1.1.5
9489 - connection logging displayed incorrect source address.
9490 - added proxy start/stop and server up/down log events.
9491 - replaced log message short buffers with larger trash.
9492 - enlarged buffer to 8 kB and replace buffer to 4 kB.
9493
94942002/03/25 : 1.1.4
9495 - made rise/fall/interval time configurable
9496
94972002/03/22 : 1.1.3
9498 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
9499 which could lead to loops.
9500
95012002/03/21 : 1.1.2
9502 - fixed a bug in buffer management where we could have a loop
9503 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
9504 => implemented an adjustable buffer limit.
9505 - fixed a bug : expiration of tasks in wait queue timeout is used again,
9506 and running tasks are skipped.
9507 - added some debug lines for accept events.
9508 - send warnings for servers up/down.
9509
95102002/03/12 : 1.1.1
9511 - fixed a bug in total failure handling
9512 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
9513
95142002/03/10 : 1.1.0
9515 - fixed a few timeout bugs
9516 - rearranged the task scheduler subsystem to improve performance,
9517 add new tasks, and make it easier to later port to librt ;
9518 - allow multiple accept() for one select() wake up ;
9519 - implemented internal load balancing with basic health-check ;
9520 - cookie insertion and header add/replace/delete, with better strings
9521 support.
9522
95232002/03/08
9524 - reworked buffer handling to fix a few rewrite bugs, and
9525 improve overall performance.
9526 - implement the "purge" option to delete server cookies in direct mode.
9527
95282002/03/07
9529 - fixed some error cases where the maxfd was not decreased.
9530
95312002/02/26
9532 - now supports transparent proxying, at least on linux 2.4.
9533
95342002/02/12
9535 - soft stop works again (fixed select timeout computation).
9536 - it seems that TCP proxies sometimes cannot timeout.
9537 - added a "quiet" mode.
9538 - enforce file descriptor limitation on socket() and accept().
9539
95402001/12/30 : release of version 1.0.2 : fixed a bug in header processing
95412001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
95422001/12/16 : release of version 1.0.0.
95432001/12/16 : added syslog capability for each accepted connection.
95442001/11/19 : corrected premature end of files and occasional SIGPIPE.
95452001/10/31 : added health-check type servers (mode health) which replies OK then closes.
95462001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
9547 with or without cookies (use keyword http for this).
95482001/09/01 : added client/server header replacing with regexps.
9549 eg:
9550 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
9551 srvexp ^Server:\ .* Server:\ Apache
95522000/11/29 : first fully working release with complete FSMs and timeouts.
95532000/11/28 : major rewrite
95542000/11/26 : first write