blob: da3392b75f0e9242860d45d1e24f58e4815600cd [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
3
42003/04/02 : 1.1.18
5 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
6 REGEX=pcre on the make command line.
7 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
8 - when explicit source address binding is required, it is now also used for
9 health-checks.
10 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
11 itself.
12 - factored several strings to reduce binary size by about 2 kB.
13 - replaced setreuid() and setregid() with more standard setuid() and setgid().
14 - added 4 status flags to the log line indicating who ended the connection
15 first, the sessions state, the validity of the cookie, and action taken on
16 the set-cookie header.
17
182002/10/18 : 1.1.17
19 - add the notion of "backup" servers, which are used only when all other
20 servers are down.
21 - make Set-Cookie return "" instead of "(null)" when the server has no
22 cookie assigned (useful for backup servers).
23 - "log" now supports an optionnal level name (info, notice, err ...) above
24 which nothing is sent.
25 - replaced some strncmp() with memcmp() for better efficiency.
26 - added "capture cookie" option which logs client and/or server cookies
27 - cleaned up/down messages and dump servers states upon SIGHUP
28 - added a redirection feature for errors : "errorloc <errnum> <url>"
29 - now we won't insist on connecting to a dead server, even with a cookie,
30 unless option "persist" is specified.
31 - added HTTP/408 response for client request time-out and HTTP/50[234] for
32 server reply time-out or errors.
33
342002/09/01 : 1.1.16
35 - implement HTTP health checks when option "httpchk" is specified.
36
372002/08/07 : 1.1.15
38 - replaced setpgid()/setpgrp() with setsid() for better portability, because
39 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
40
412002/07/20 : 1.1.14
42 - added "postonly" cookie mode
43
442002/07/15 : 1.1.13
45 - tv_diff used inverted parameters which led to negative times !
46
472002/07/13 : 1.1.12
48 - fixed stats monitoring, and optimized some tv_* for most common cases.
49 - replaced temporary 'newhdr' with 'trash' to reduce stack size
50 - made HTTP errors more HTML-fiendly.
51 - renamed strlcpy() to strlcpy2() because of a slightly difference between
52 their behaviour (return value), to avoid confusion.
53 - restricted HTTP messages to HTTP proxies only
54 - added a 502 message when the connection has been refused by the server,
55 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
56 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
57 inserting a cookie, because some caches (apache) don't understand it.
58 - fixed processing of server headers when client is in SHUTR state
59
602002/07/04 :
61 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
62 setpgid()
63
642002/06/04 : 1.1.11
65 - fixed multi-cookie handling in client request to allow clean deletion
66 in insert+indirect mode. Now, only the server cookie is deleted and not
67 all the header. Should now be compliant to RFC2109.
68 - added a "nocache" option to "cookie" to specify that we explicitly want
69 to add a "cache-control" header when we add a cookie.
70 It is also possible to add an "Expires: <old-date>" to keep compatibility
71 with old/broken caches.
72
732002/05/10 : 1.1.10
74 - if a cookie is used in insert+indirect mode, it's desirable that the
75 the servers don't see it. It was not possible to remove it correctly
76 with regexps, so now it's removed automatically.
77
782002/04/19 : 1.1.9
79 - don't use snprintf()'s return value as an end of message since it may
80 be larger. This caused bus errors and segfaults in internal libc's
81 getenv() during localtime() in send_log().
82 - removed dead insecure send_syslog() function and all references to it.
83 - fixed warnings on Solaris due to buggy implementation of isXXXX().
84
852002/04/18 : 1.1.8
86 - option "dontlognull"
87 - fixed "double space" bug in config parser
88 - fixed an uninitialized server field in case of dispatch
89 with no existing server which could cause a segfault during
90 logging.
91 - the pid logged was always the father's, which was wrong for daemons.
92 - fixed wrong level "LOG_INFO" for message "proxy started".
93
942002/04/13 :
95 - http logging is now complete :
96 - ip:port, date, proxy, server
97 - req_time, conn_time, hdr_time, tot_time
98 - status, size, request
99 - source address
100
1012002/04/12 : 1.1.7
102 - added option forwardfor
103 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
104 - added "log global" in "listen" section.
105
1062002/04/09 :
107 - added a new "global" section :
108 - logs
109 - debug, quiet, daemon modes
110 - uid, gid, chroot, nbproc, maxconn
111
1122002/04/08 : 1.1.6
113 - regex are now chained and not limited anymore.
114 - unavailable server now returns HTTP/502.
115 - increased per-line args limit to 40
116 - added reqallow/reqdeny to block some request on matches
117 - added HTTP 400/403 responses
118
1192002/04/03 : 1.1.5
120 - connection logging displayed incorrect source address.
121 - added proxy start/stop and server up/down log events.
122 - replaced log message short buffers with larger trash.
123 - enlarged buffer to 8 kB and replace buffer to 4 kB.
124
1252002/03/25 : 1.1.4
126 - made rise/fall/interval time configurable
127
1282002/03/22 : 1.1.3
129 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
130 which could lead to loops.
131
1322002/03/21 : 1.1.2
133 - fixed a bug in buffer management where we could have a loop
134 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
135 => implemented an adjustable buffer limit.
136 - fixed a bug : expiration of tasks in wait queue timeout is used again,
137 and running tasks are skipped.
138 - added some debug lines for accept events.
139 - send warnings for servers up/down.
140
1412002/03/12 : 1.1.1
142 - fixed a bug in total failure handling
143 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
144
1452002/03/10 : 1.1.0
146 - fixed a few timeout bugs
147 - rearranged the task scheduler subsystem to improve performance,
148 add new tasks, and make it easier to later port to librt ;
149 - allow multiple accept() for one select() wake up ;
150 - implemented internal load balancing with basic health-check ;
151 - cookie insertion and header add/replace/delete, with better strings
152 support.
153
1542002/03/08
155 - reworked buffer handling to fix a few rewrite bugs, and
156 improve overall performance.
157 - implement the "purge" option to delete server cookies in direct mode.
158
1592002/03/07
160 - fixed some error cases where the maxfd was not decreased.
161
1622002/02/26
163 - now supports transparent proxying, at least on linux 2.4.
164
1652002/02/12
166 - soft stop works again (fixed select timeout computation).
167 - it seems that TCP proxies sometimes cannot timeout.
168 - added a "quiet" mode.
169 - enforce file descriptor limitation on socket() and accept().
170
1712001/12/30 : release of version 1.0.2 : fixed a bug in header processing
1722001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
1732001/12/16 : release of version 1.0.0.
1742001/12/16 : added syslog capability for each accepted connection.
1752001/11/19 : corrected premature end of files and occasional SIGPIPE.
1762001/10/31 : added health-check type servers (mode health) which replies OK then closes.
1772001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
178 with or without cookies (use keyword http for this).
1792001/09/01 : added client/server header replacing with regexps.
180 eg:
181 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
182 srvexp ^Server:\ .* Server:\ Apache
1832000/11/29 : first fully working release with complete FSMs and timeouts.
1842000/11/28 : major rewrite
1852000/11/26 : first write