]> git.ipfire.org Git - thirdparty/squid.git/blame - ChangeLog
1.2.alpha7
[thirdparty/squid.git] / ChangeLog
CommitLineData
8905b90c 1Changes to squid-1.2.alpha6 ():
2
6684fec0 3 - Simpler cacheobj implementation.
6605655c 4 - persistent connection histogram
8872e1f8 5 - SERVER-SIDE PERSISTENT CONNECTIONS:
6 - Added pconn.c
7 - Addec Cofig.Timeout.pconn; default 120 seconds
8 - Added httpState->flags
9 - Added flags arg to httpBuildRequestHeader()
10 - Added HTTP_PROXYING and HTTP_KEEPALIVE flags
11 - Added 'Connection' to allowed HTTP headers (http-anon.c)
12 - Added 'Proxy-Connection' to allowed HTTP headers
13 (http-anon.c)
14 - Merged proxyhttpStart() with httpStart() and crated
15 new httpBuildState().
16 - New httpPconnTransferDone() detects end-of-data on
17 persistent connections.
6684fec0 18
88738790 19Changes to squid-1.2.alpha5 ():
20
21 - New configuration system. Everything is generated from
22 'cf.data.pre', including the main parser, setting defaults,
23 outputting current values, and freeing memory.
24 This also involved moving some of the local data structures
25 (e.g. struct _acl *AclList in acl.c) to the Config
26 structure. (Max Okumoto)
27 - No more '/i' for regular expressions. Now insert a '-i'
28 to switch to case-insensitive. Use '+i' for case-sensitive.
29 - When you have a variable named the same as its type, sizeof()
30 gets the wrong one (fde).
31 - Need to flush unbuffered logs before fork().
32 - Added two fields swap log: refcount and e->flag.
33 - Removed all the .h files for each .c file. Now #include stuff
34 is in either: defines.h, enums.h, typedefs.h, structs.h,
35 or protos.h, globals.h. This greatly reduces dependencies
36 between the various source files.
37 - globals.c is generated from globals.h by a Perl script.
8ee3ca2c 38 - Started customizable error texts.
88738790 39
97f674c8 40Changes to squid-1.2.alpha4 ():
41
ec973719 42 - New MIME configuration, regular expression based
43 - Added request_timeout config option
44 - Multiple HTTP sockets (Lincoln Dale).
45 - Moved 'fds_are_n_free' check to httpAccept().
46 - s/USE_POLL/HAVE_POLL/; make poll() default if available.
7e49f700 47 - Changed storeRegister to use offsets and make immediate
48 callbacks if appropriate.
49 - Removed icpDetectClientClose(). Some of that functionality
50 goes into clientReadRequest() and the rest into
51 httpRequestFree().
b1b387d1 52 - Moved IP lookups to commConnect stuff.
53 - Added support for retrying connect().
858164fc 54 - New inline debug() macro (David Luyer).
e174e0fe 55 - Replace frequent gettimeofday() calls with alarm(3) based
56 clock. Need to add more gettimeofday() calls to get back
a59968c7 57 high-resolution timestamp logging (Andres Kroonmaa).
0153d498 58 - Added support for Cache-control: proxy-revalidate;
59 based on squid-1.1 patch from Mike Mitchell.
ec973719 60
3b08d32d 61Changes to squid-1.2.alpha3 ():
62
63 - Implemented persistent connections between clients and squid.
64 - Moved various FD tables (comm.c, fdstat.c, disk.c) to a single
65 table in fd.c.
66 - Removed use of FD as an identifier in certain callback
67 operations (ipcache, fqdncache).
68 - General code cleanup.
69 - Fixed typedefs for callback functions.
70 - Removed FD lifetime/timeout dichotomy. Now we only have
71 timeouts, however the lifetime concept/keyword may still
72 linger in certain places.
73 - Change Makefile 'realclean' target to 'distclean'
74 - Changed config file parsing of time specifications to use
75 parseTimeLine().
76 - Removed storetoString.c
77
78Changes to squid-1.2.alpha2 ():
74cebec0 79
80 - Merged squid-1.1.9, squid-1.1.10 changes
81
7b41ec97 82Changes to squid-1.2.alpha1 ():
83
84 - Unified peer selection algorithm.
75e88d56 85 - aiops.c and aiops.h are a threaded implementation of
86 asynchronous file operations (Stewart Forster).
87 - async_io.c and async_io.h are complete rewrites of the old
88 versions (Stewart Forster).
6ad85e8a 89 - Rewrote all disk file operations of squid to support
75e88d56 90 the idea of callbacks except where not required (Stewart
91 Forster).
75e88d56 92 - Background validation of 'tainted' swap log entries (Stewart
93 Forster).
94 - Modified storeWriteCleanLog to create the log file using the
95 open/write rather than fopen/printf (Stewart Forster).
96 - Added the EINTR error response to handle badly interrupted
97 system calls (Stewart Forster).
6ad85e8a 98 - UDP_HIT_OBJ not supported, removed.
99 - Different sized 'cache_dirs' supported.
75e88d56 100
e924600d 101==============================================================================
7b41ec97 102
88738790 103Changes to squid-1.1.14 (July 11, 1997):
104
105 - Another try at log_url crap. Added icpState->log_url
106 member. Set mem_obj->log_url in new_MemObject() which
107 means passing more args to storeCreateEntry(). Also added
108 urlClean() which calls urlParse(); needed for ICP logging.
109 - Clean URLs will be truncated at '?' if present.
110 - Give fd_note() the clean URL.
111
112Changes to squid-1.1.13 (July 9, 1997):
113
114 - Fixed storeLog() coredump on mem->log_url.
115 - Fixed string bounds bug if a redirector returns a short
116 hostname which require appending 'append_domain' (David
117 Lamkin).
118 - Added 'fake_user_agent' to configuration because HTTP
119 anonymizing strips the User-Agent which some servers require.
120
121Changes to squid-1.1.12 (July 5, 1997):
122
123 - Fixed dnsserver buffer overflow bug and other problems related
124 to long, bogus domain names.
125 - Fixed occasional incorrect ERR_DNS_FAIL errors caused when
126 an IP cache entry gets released about the same time an
127 ICP query timeout occurs.
128 - Fixed setrlimit() bugs seen on DUNIX 4.0; rl.rlim_max == 0.
129 - Only strip 'Proxy-authorization' header when USE_PROXY_AUTH
130 is defined and proxy_auth is configured (Ron Gomes).
131 - Added missing calls to reset socket timeouts for SSL
132 and passthrough requests.
133 - Fixed "Available number of file descriptors" value in
134 cachemgr info output.
135 - Fixed coredump in proxyAuthenticate() if password file
136 has an entry with only a user name (Jordan Hrycaj).
137 - Security patch for usernames and passwords in URLs.
138 + ftpget would insert a BASE URL including the username and
139 password for directory listings IF the original request did
140 NOT include the the trailing slash. This could be disabled
141 with a command line option, but is enabled by default. Now
142 its #ifdefd out.
143 + Usernames and passwords could be logged to access.log and
144 store.log. Now a new element,
145 StoreEntry->MemObject->log_url, holds a copy of the requested
146 URL without the name and password. This isn't 100% fixed yet
147 because log_url gets generated when the StoreEntry gets
148 created. If the StoreEntry never gets created, then the URL
149 with name and password will get logged. Also, the name and
150 password are not stripped from ICP requests. Also, this
151 changes store.log. Previously we logged StoreEntry->key
152 which would look different than the URL for private entries,
153 but now we'll always log the URL.
154 + Finally, we now set REQ_AUTH for any request that includes a
155 name or password. This prevents the request from being
156 cached (!) and prevents it from being sent to neighbor
157 caches. In other words, its treated just as if an
158 Authorization request header were present.
159 - Fixed Byte-Range handling so that valid, whole objects
160 are not released.
161
162Changes to squid-1.1.11 (June 14, 1997):
163
164 - Clean up NeXTStep compiler warnings (Karsten Heinze, Ed Knowles).
165 - Don't forward 'Proxy-Authorization' headers (Chris Pascoe).
166 - Fixed up Host: header parsing (Henrik Nordstrom).
167 - Changed DefaultObjectsPerBucket to 20 in cache_cf.c.
168 - Fixed parsePathname() bug for magic word "none".
169 - Fixed ipcache_release to rename entries which get stuck with locks.
170 - Fixed "eventDelete(peerCheckConnect, e);" bug when the DNS lookup
171 is pending.
172 - Add sys/types.h to lib/safe_inet_addr.c for NeXTSTEP (Timo
173 Hennerich).
174 - Fixed cur_len decrement bug in diskHandleRead()
175 (Michael O'Reilly).
176 - Added contrib/rredir.pl from Peter Eisenhauer.
177 - Always forward requests with 'Byte-Range' headers (Ron Gomes).
178 - Fixed StoreEntry client offset bug which could trigger a
179 fatal_dump().
180 - Fixed noticing that dnsservers have shut down during restart.
181 - Added contrib/nextstep installer package from Gerben Wierda.
182 - Modified storeDirClean() to remove swap files where the
183 number is being used, but the file is in the wrong directory.
184 - Allow PURGE method on all protocols.
185 - Added 'icp_hit_stale' option.
186 - Fixed proxy auth refresh bug (Chris Pascoe).
187 - Don't check for other filename extensions if an FTP URL
188 ends with .txt (Ed Knowles).
189 - Relocated ERR_NO_CLIENT_BIG_OBJ check to eliminate incorrect
190 (but harmless) error message.
191
6ad85e8a 192Changes to squid-1.1.10 (April 24, 1997):
193
194 - Require 0 <= multicast ttl <= 128.
195 - Changed 'unsigned int inaddr_none' to 'struct in_addr no_addr'.
196 - Added debug_trap() if unlocking a StoreEntry which still
197 has registered clients.
198 - Added missing storeUnregister() calls.
199 - Fixed storeClientListAdd() bug of adding same FD twice.
200 - Fixed reconfigure/SIGHUP to wait 'shutdown_lifetime' seconds
201 after receiving signal (Ron Gomes).
202 - Added missing commSetSelect() in icpDetectClientClose()
203 (Mark Treacy).
204 - Fixed multicast group member counting bug with fake
205 StoreEntry's.
206 - Only enable ICP_FLAG_SRC_RTT if the peer is ICP_VERSION_2.
207 - Fixed compiling unlinkd in a separate directory (Assar Westerlund).
208 - Fixed comm_select_incoming SEGV for poll() version when using
209 udp_{incoming,outgoing}_address (Mark Treacy).
210 - Fixed some SIGHUP related memory problems with redirectors,
211 ipcache, and fqdncache, and peerCountMcastPeers*().
212 - Make the unlinkd and pinger programs configurable (Ron Gomes,
213 Neil Murray).
214 - Add handshake to unlinkd program (Ron Gomes).
215 - Exit if a configured program doesn't exist (Neil Murray).
216 - Abort if unlinkd fails to start (Ron Gomes).
217 - Added -m option to ftpget for defining default MIME type.
218 (Neil Murray).
219 - Optimized comm_select() functions (Mark Treacy).
220 - Fixed ipcache_release() to not release locked entries;
221 instead expire them immediately.
222 - Fixed up rebuild code to handle swapfile/URL clash
223 cases better.
224 - Added safe_inet_addr() to protect from bogus IP addresses
225 (Arjan de Vet).
226 - Fixed handling of ssl_proxy and passthrough_proxy when not
227 behind a firewall.
228
229
230Changes to squid-1.1.9 (March 30, 1997):
231
232 - Fixed aclIpNetworkCompare for USE_SPLAY_TREE; was applying
233 netmask to non-local variable through pointer. (Ansgar
234 Hockmann).
235 - Fixed cachemgr bug incorrectly assigning connect() return
236 value (Nigel Metheringham).
237 - Fixed diskHandleWrite bug: not setting write_daemon = PRESENT.
238 - Fixed situation where all requests would be handled by
239 "single parent" and other peers would never be queried
240 again.
241 - Fixed ftpget bug causing program to continue after printing
242 usage.
243 - Changed 'reference_age' to be the maximum for the dynamcially
244 computed value (Mark Treacy).
245 - Added external 'unlinkd' process to unlink swap files.
246 - Added more dnsserver status information to cachemgr output.
247 - In httpReadReply: extend FD lifetime only after successful
248 read, not every read.
249 - In httpBuildRequestHeader: link size of 'ybuf' to MAX_URL.
250 - Added routines to count number of members of each multicast
251 peer.
252 - Fixed multicast ICP bug causing unnecessary timeouts.
253 - Added error messages if setuid/setgid functions fail.
254 - Added non-POSIX tempnam.c replacement for NeXTStep (Gerben
255 Wierda).
256 - Removed redundant file:// --> ftp:// check (Willy TARREAU).
257 - Removed check for reply->code == 200 in icpGetHeadersForIMS().
258 - Fixed IP cache bug which caused 'dns_children 0' to break;
259 - Deny access to dangerous TCP ports (7, 9, 19).
260 - Removed single-line functions: fdstat_biggest_fd(),
261 comm_get_fd_lifetime(), comm_get_fd_timeout().
262 - Removed storeCheckExpired() from storeGetSwapSpace() as
263 likely cause of slowing down cache when exceeding the high
264 water mark.
265 - Fixed storeCheckExpired() to not always check the
266 LRU expiration age (Mark Treacy).
267 - Lowered 'store_objects_per_bucket' to 20 so that
268 storeMaintainSwapSpace() runs frequently enough to
269 keep up with incoming objects.
270 - Fixed FTP to use the Authorization header only when the
271 usernames match.
272 - Fixed another continuation-lines-not-starting-with-NNN bug
273 in ftpget.
274 - Added 'client_db' config option to disable keeping statistics
275 for each client address.
276 - Added support for using ICMP data stuffed into ICP replies
277 for peer selection algorithm. Enable with 'query_icmp'
278 in squid.conf.
279 - Fixed net_db design bug where _net_db_peer structures pointed
280 to 'peer' structures that get freed and reallocated during a
281 reconfigure.
282 - Moved comm.c fd_lifetime[] array into FD_ENTRY structure.
283 - Cleaned up storeCopy(). debug_trap on requested offset <
284 e_lowest_offset.
285 - Cleaned up fdstat_init() and fdstat_update().
286 - Cleaned up ftp_login_parser().
287
e924600d 288Changes to squid-1.1.8 (March 3, 1997):
289
290 - Fixed neighborsUdpAck() coredump bug for source-ping and
291 non-peer ICP replies.
292 - Prevent ipcache_gethostbyname from changing an IP_DISPATCHED
293 entry to IP_CACHED; fqdncache too.
294 - Made send_announce non-blocking.
295 - Force release of negative-cached objects upon receipt of
296 no-cache request.
297 - Ignore ACLs which fail to parse.
298 - Added 'proxy_auth_ignore' regular expression list (Andreas
299 Lamprecht).
300 - Changed how failed TCP connections affects peer up/down
301 status. Now retry TCP connections at regular intervals in the
302 background and don't mark the peer as 'up' until a connection
303 succeeds.
304 - Okay to increase FD_SETSIZE on FreeBSD 2.2.x (Peter Wemm).
305 - Fixed HTTP anonymizer bug in 'standard' mode.
306 - Fixed aclMatchDomainList() coredump for unresolvable addresses.
307 - Changed default disk low/high water marks to 90/95%.
308 - Prevent ftpget buffer overflow (Riku Saikkonen).
309
310Changes to squid-1.1.7 (February 25, 1997):
468c23d3 311
6ad85e8a 312 - Fixed non-default port numbers for FTP URLs (John Saunders).
468c23d3 313 - Fixed urlParse to leave trailing slashes on FTP URLs. Although
314 stripping the slashes offers a slight hit rate increase, it
315 breaks some proxies which return HTTP redirects.
316 - Initialize struct tm in parse_rfc1123() (Henrik Hempelmann).
317 - Fixed parseHttpRequest() to use memcpy instead of strncpy;
318 caused POST's with NULL bytes to fail (Joe Ramey).
319 - Fixed another HTTP reply code 0 bug (Neil Murray).
320 - Changed code structure in ipcache_nbgethostbyname() to
321 maybe get around some trashed-stack problems.
322 - Added WARNING if blocking gethostbyname() gets called.
323 - Fixed calling commSetSelect() with FD < 0 bug in ssl.c and
324 pass.c.
2ec29a62 325 - Moved 'append_domain' operation to urlParse().
326 - Fixed too many arguments bug in diskHandleWrite, caused
327 coredumps when write fails (due to full disk).
77f33b26 328 - Fixed extra unlocking on partial reads from dnsservers.
329 - Fixes for 'Splay' trees in acl.c (Ed Knowles)
330 - Support for balanced binary trees in acl.c (Arjan de Vet).
91de5d47 331 - Made HTTP anonymizing a standard feature and settable in
332 squid.conf (disabled by default).
4dcdb109 333 - Ignore ICP_MISS replies from multicast-responding parents
334 which would violate the domain restrictions.
335 - Fixed another diskHandleWrite coredump bug when freeing
336 list of pending blocks.
337 - Added support for 'src' ACLs in cache_host_acl lines.
c7686fee 338 - Fixed ftpget bug when PASV connect times out.
339 - Fixed adding duplicate IP cache entry for failed BLOCKING lookups.
340 - Changed peer IP addresses (for ICP) to be refreshed every hour.
341 - Accomodated Solaris bug requiring suid privs for getrusage()
342 (Arjan de Vet).
468c23d3 343
678d8a69 344Changes to squid-1.novm.6 (February 7, 1997):
345
346 - Merged squid-1.1.6 changes.
347
870bd0f9 348Changes to squid-1.1.6 (February 7, 1997):
1febb85b 349
350 - Fix redirector to make sure the redirector child process is
351 is alive and not busy before using it (Brent Foster).
352 - Fixed ACL joining bug.
870bd0f9 353 - Fixed up support for multicast; see Release Notes for
354 details.
1febb85b 355 - Fixed ftpget to properly handle multi-line replies that
356 don't begin with "NNN-".
357 - Changed store maintenance to randomize bucket order
358 each time after completion.
359 - Set RLIMIT_VMEM to the maximum.
360 - Syntax change: "edge" to "peer" everywhere.
361 - Change redirector stats to also show number of rewritten
362 requests (Andrew Humphrey).
363 - Changed HTTP anonmyizing to remove 'denied' headers
364 by default. Define USE_PARANOID_ANONYMIZER to only pass
625917ea 365 'allowed' headers instead (Bernd Ernesti).
870bd0f9 366 - Added 'Splay' trees (in #ifdefs) for fast IP access checking
367 (Ed Knowles).
1febb85b 368 - Fixed 'COMM_INPROGRESS' typo bug (Balint Nagy Endre).
369 - Added support for PURGE method to remove cached objects.
370 - Upgraded scripts/check_cache.pl for v1.1 (Bertold Kolics).
371 - Fixed announcement file descriptor leak (Balint Nagy Endre).
372 - Fixed [^0-9] sscanf bug for some compilers (Jim Carroll).
373 - Upgrade to autoconf-2.12
625917ea 374 - Added 'dns_defnames' option to allow dnsserver to interpret
375 single-component hostnames.
625917ea 376 - Refuse to run as root without defining 'cache_effective_user'.
1febb85b 377
870bd0f9 378Changes to squid-1.novm.5 (February 6, 1997):
c95a0781 379
380 - Fixed stuck objects (and FD leak) due to not unlocking
381 objects in storeAbort().
cab88bee 382 - Merged squid-1.1.5 changes.
4b7f7b84 383
625917ea 384Changes to squid-1.1.5 (January 22, 1997):
e3a664b4 385
bb97dd37 386 - Fixed ACL parsing to join ACL entries with the same name
387 (Markus Stumpf).
388 - Fixed BIT_SET/BIT_TEST typo in getDefaultParent() (Ed Knowles).
389 - Removed comm_read() and commHandleRead().
390 - Fixed rotating special files (Kolics Bertold).
391 - Fixed sending HTTP reply code 0 in error messages.
392 - Fixed ftpget to recognize 'NetWare' servers and skip whitespace
393 before filenames.
394 - Changed ftpget default Content-Type to application/octet-stream.
395 - Added .rpm MIME type (Nigel Metheringham).
396 - Changed storeDirClean() to create missing directories.
61ba670d 397 - Removed icpState->buf and storeCopy() call in icpGetHeadersfForIMS().
e3a664b4 398 - Fixed *_ip_list parsing bug (Hiroyuki Inoue).
399 - Fixed bad comm_write() calls in passStart() and sslStart()
400 (Martin Boening).
7fd2a4e7 401 - Changed storeMaintainSwapSpace() to scan hash table buckets in
402 random order.
403 - Added dynamic LRU Age expiration feature. Expiration age is
404 calculated as a function of store_swap_size so that object
405 deletion rate matches the addition rate and we avoid emergency
406 object purge mode.
bb97dd37 407
625917ea 408Changes to squid-1.novm.4 (January XX, 1997):
d3954477 409
410 - Fixed storeRegister loop in icpHandleIMSReply().
1f5ec3ed 411 - Merged squid-1.1.4 changes.
d3954477 412
3e65cb76 413Changes to squid-1.1.4 (January 13, 1997):
115c7870 414
415 - Created USE_GNUREGEX define to fix forcing GNU regex on
416 Solaris and NeXTStep.
417 - Changed SQUID_MAXFD to be a C variable.
418 - Added QUICKSTART file.
419 - Fixed ident so the identd request comes from the same IP
420 address as the original connection was made to (Russell
421 Street).
422 - Added '!' condition feature for the 'firewall_ip' list
423 (Hiroyuki Inoue).
424 - Added 'udp_hit_obj_size' option (Mark Treacy).
425 - Fixed cachemgr.cgi to print 'NEVER' instead of '27Y ago'.
3e65cb76 426 - Fixed finding FTP end-of-transfer marker in the middle
427 of the file.
428 - More ipcache fixes for long-pending requests which get preempted.
62a0995a 429 - Fixed cachemgr.cgi to parse password from URL (Peter Wemm).
430 - Fixed cachemgr.cgi to keep password in HTML form field (Peter
431 Wemm).
432 - Fixed reporting Maximum Resident Size (Peter Wemm).
433 - Handle unexpected data from a redirector (Brent Foster).
115c7870 434
435Changes to squid-1.novm.3 (January 7, 1996):
03c91395 436
437 - Merged squid-1.1.3 changes.
438
439Changes to squid-1.novm.2 (January 7, 1996):
440
441 - Mega changes to make Squid not store objects in VM.
74946a0f 442
9a325041 443Changes to squid-1.1.3 (January 7, 1997):
c92978ac 444
7a77c4b4 445 - Changed inet_addr("X") to inet_addr("255.255.255.255")
446 (Dan Riley).
447 - Fixed matchInsideFirewall() bug when using 'firewall_ip' but
448 not 'inside_firewall' (Tai Jin).
449 - check for text == NULL in icpSendERROR().
450 - Don't make inaddr_none static in ftpget.c (Davide Migliavacca).
451 - Fixed ipcache FMR bug for long-pending requests.
452 - Fixes for NeXTSTEP 3.3 (Tethpub Znek).
453 - add storeWriteCleanLog() call in fatal().
454
75a4803a 455Changes to squid-1.1.2 (December 18, 1996):
456
e12ec0cc 457 - Fixed (negative) caching of HTTP objects witch consist of
458 only some HTTP headers.
459 - Fixed up SSL neighbor selection algorithm to be just
460 like the one in pass.c.
461 - Fixed incorrect squid.conf comment about setting an objcache
462 password to 'none'. Added keyword 'disable' to disable an
463 objcache function (Markus Gyger).
464 - Further Cache.Announce.on fixes (Ernest Yik).
465 - Add theOutIcpConnection to comm_select_incoming() for improved
466 ICP performance (Stewart Forster).
467 - Added access.log documentation to Release-Notes-1.1.txt
468 - Added support for TRACE method.
c1827ffa 469 - Added 'log_icp_queries on|off' to config (David Luyer).
470 - Added hierarchy tag to common HTTP format access.log (David Luyer).
e12ec0cc 471 - Moved second SQUID_MAXFD/FD_SETSIZE check to after #includes.
472 - Added reverse DNS lookups for 'dstdomain' ACLs when the URL
473 contains an IP address.
474 - Made HTTP reply header parsing more robust to deal with
475 bad 304 replies from squid-1.1.beta27 and earlier.
c1827ffa 476 - Changed reqnum passed in ICP replies to encode request method
477 in high byte.
58e7e5cc 478 - Fixed neighbor round-robin bug (Uwe Doering).
479 - Calculate accurage percentages for ICP and HTTP requests in
480 cachemgr 'client list'.
481 - Fixed refresh lm-factor calculations to allow percent = 0.
482 - Make sure DNS lookups don't remain PENDING for a very long time.
e12ec0cc 483
04279aad 484Changes to squid-1.1.1 (December 15, 1996):
e119289e 485
486 - Fixed announcement bug. Announcements were always off unless
487 a file was specified.
488 - Fixed wrong number of args to examine_select() debug.
489 - Fixed null-string content-type
490 - Don't cache replies with 'Set-Cookie:' headers.
491 - Fixed bug when client issues IMS, Squid has stale object and
492 Squid's lastmod time is greater than the client IMS time.
493 A 304 reply would be appropriate for Squid, but not the client
494 (diagnosed by Mark Treacy).
495 - Fixed httpBuildRequestHeader() content length bug which breaks for
496 really large POST requests (Takahiro Yugawa).
497 - Fixed 'passthrough_proxy' to pick up port number from list of
498 neighbors.
6f4d3ac9 499 - Ensure pid file is world-readable if umask is set otherwise
500 (Doug Urner).
04279aad 501 - Collect statistics on a few more HTTP headers (Ed Knowles).
e119289e 502
2b17a56e 503Changes to squid-1.1.0 (December 6, 1996):
504
505 - Fixed inequality bug in neighborUp().
506 - Fixed off-by-one ack_deficit bug in neighborUp() (Joe Ramey).
507 - Fixed pfds[] ABW bug for USE_POLL (Joe Ramey).
508 - Added anonymizer options; compile with USE_ANONYMIZER (Lutz
509 Donnerhacke).
510 - Added Gauntlet proxy support to ftpget (Mukaigawa Shin'ichi).
c62bf0f1 511 - Changed UDP_HIT_OBJ to be disabled by default.
2b17a56e 512 - Updated doc/Release-Notes-1.1.txt
513
514==============================================================================
515
74313381 516Changes to squid-1.1.beta28 (December 5, 1996):
517
8fa71551 518 - Fixed missing CR on Not-Modified replies (Balint Nagy Endre)
519 - Fixed not truncating multi-word content-types.
520 - Fixed ABR bug due to too-small redirector buffers.
521 - Fixed ABR in httpBuildRequestHeader().
1baa4e8a 522 - Removed asynch_io code.
8fa71551 523
4945cebf 524Changes to squid-1.1.beta27 (December 4, 1996):
525
526 - Fixed wrong number of args to debug().
527 - Make failure to start any dnsservers fatal.
528 - Fixed dnsGetFirstAvailable() to skip dead dnsservers.
529 - Fixed loop detection for two squids on the same host (Mark
530 Treacy)
531 - Fixed strcasecmp bug which broke some POST requests.
532
9e393211 533Changes to squid-1.1.beta26 (December 3, 1996):
89659cff 534
dcfe6390 535 - Another 'rm -rf' fix for store.c (Bernd Ernesti).
536 - Use of the Host: header for httpd_accel requests is now
537 disabled unless 'httpd_accel_uses_host_header' is set.
538 - Have configure check for libgnumalloc.a.
89659cff 539 - Added support for using poll() instead of select(); enable
540 USE_POLL_OPT in src/Makefile (Stewart Forster, Anthony
541 Baxter).
542 - Fixed httpBuildRequestHeader() 'strcat' bug (Andres Kroonmaa).
543 - Changed store.log to include date, last-modified, and
544 expires timestamps, plus content-type.
545 - Added content-type to access.log too.
546 - parse HTTP timestamps directly in httpParseReplyHeaders().
547 - moved timestampsSet() to storeTimestampsSet().
548 - fixed ACL '/32' bug (Ansgar Hockmann).
dcfe6390 549
3ac5bf55 550Changes to squid-1.1.beta25 ():
551
575e5b1a 552 - Check if we should delete-behind large objects when above LOW
553 water mark.
3ac5bf55 554 - Merged request header parsing code from http.c and pass.c
555 into httpBuildRequestHeader().
575e5b1a 556 - Fixed 'rm -rf' command in store.c.
557 - Changed viz_hack stuff to use multicast.
3ac5bf55 558
c5a0c043 559Changes to squid-1.1.beta24 ():
560
561 - Added 'cache_stoplist_pattern' to squid.conf
562 - Remove trailing slashes from FTP URLs.
563 - Added 'passthrough_proxy' support.
1bc5033b 564 - Added "default parent" support with a 'default' option for
565 cache_host config line.
1a10e02d 566 - Upgraded autoconf to 2.10.
6b98c7ae 567 - Strip Proxy-Connection request headers.
1bc5033b 568 - Do not return UDP_HIT for objects which will soon be stale.
569 - Parse/Filter HTTP request headers in passthrough module.
570 - Fixed parsing hostnames with dashes in 'src' ACLs.
571 - Added warning message when forwarding loops detected.
572 - Split getSingleParent() into getSingleParent() and
573 neighborsCount().
99fcf739 574 - Dont check sibling caches for REFRESH requests.
575 - Add X-Forwarded-For: header which is the comma-separated
576 list of client addresses along the request path.
577 - Fixed icpDetectClientClose() to check if Content-Length
578 bytes have been delivered.
c5a0c043 579
4f4905f1 580Changes to squid-1.1.beta23 (November 25, 1996):
581
7acb0b24 582 - Fixed "viabuf" memory leak.
4f4905f1 583
ef97e96c 584Changes to squid-1.1.beta22 (November 25, 1996):
585
6219258f 586 - Fixed xstrncpy() bug in mime_get_header().
587 - Fixed Via: header.
588 - Fixed Host: header for proxy requests.
589 - Fixed re-initializing client_db and net_db hash tables upon
590 SIGHUP (Cord Beermann).
591 - Mucked with regex stuff so HP users don't have to put up with
592 GNUregex (Markus Gyger).
593 - Changed SQUID_MAXFD back to FD_SETSIZE.
594 - Fixed checking Max-age in httpSendRequest().
595 - Made failure to fork ftpget fatal.
596 - Call *FreeMemory() routines only if debugging.
597
96e84919 598Changes to squid-1.1.beta21 (November 22, 1996):
599
431d84c5 600 - Fixed setting entry->timestamp for NOT MODIFIED replies.
601 - Changed old HTTP/1.1 Forwarded: header to new Via:.
431d84c5 602 - Fixed needlessly calling storeSwapFullPath() in
603 storeSwapOutHandle() (Mark Treacy).
604 - Simplified hash linking (Mark Treacy).
605 - Write pid_filename by default (Markus Gyger).
606 - Changed "Invalid dnsserver output" to non-fatal debug_trap()
607 (Joe Ramey).
608 - Changed STORE_IN_MEM_BUCKETS to the prime 229 (Neil Murray).
59b9e1b4 609 - Changed FD_SETSIZE to SQUID_MAXFD (Jonathan Larmour).
610 - Strip :port from Host: header if present.
611 - Reschedule fqdncache_dnsHandleRead() to prevent dnsservers
612 from getting stuck (Makoto Ishisone).
613 - Fixed handing SSL requests inside firewalls (Akira Sato).
614 - Fixed passthrough neighbor selection bug (Akira Sato).
615 - Removed 'post_buf' stuff from http.c.
6982963c 616
431d84c5 617Changes to squid-1.1.beta20 (November 17, 1996):
58336fe1 618
619 - Changed neighbor_domain_type to neighbor_type_domain in
620 squid.conf.
58336fe1 621 - Changed all 'xstrerror' debug messages to section 50.
622 - More const fixes (Markus Gyger).
623 - Added xstrncpy() which null-terminates (Markus Gyger).
8ea68e8d 624 - Fixed Cache-Control counting in HTTP reply header stats.
85ec1ab9 625 - Relocated rfc1738_unescape() calls in ftpget so that
626 ftp://foo.org/%2fbar/ works (Jonathan Larmour).
396b6d21 627 - Fixed forwarding loop for a pair of neighbors behind a firewall.
628 - Cleaned up ftpget non-blocking flags (Jean-Hugues ROYER).
58336fe1 629
3f7009a3 630Changes to squid-1.1.beta19 (November 13, 1996):
631
4621df3e 632 - Fixed havoc-wreaking getsockname() bug (Noriyuki Soda
633 <soda@sra.co.jp>).
3f7009a3 634 - Fixed InvokeHandlers() debug_trap bug.
635 - Lock entry while calling swapin handler in case someone tries to
636 release it.
637 - Changed configure to allow overriding of XTRA_LIBS in config.site.
4621df3e 638 - Fixed comm_accept() FMR bug.
639 - Replaced MemObject->fd_of_first_client structure member with
640 storeFirstClientFD() function.
3f7009a3 641
fe26d5d1 642Changes to squid-1.1.beta18 (November 13, 1996):
643
644 - Fixed 'void *buf' bug icpCreateMessage() (Jean-Hugues ROYER).
645 - Fixed more NULL 'friends' bugs.
646 - Added debug_trap for NULL mem->clients in InvokeHandlers()
647 (Mark Treacy).
648
4a45acc4 649Changes to squid-1.1.beta17 (November 12, 1996):
650
651 - Fixed NULL friends coredump in neighbors_open().
652 - Added setting HAVE_TEMPNAM back to the configure script.
653 - Fixed h_errno bug on NeXTStep (frank@langen.bull.de).
654 - Fixed expiresMoreThan() bug causing all UDP_MISS replies.
655 - Changed 'background.c' to 'event.c' and merged all periodic
656 functions into an event queue.
657 - Renamed httpParseHeaders() to httpParseReplyHeaders().
658 - Added support for sending HTTP/1.1 'Cache-Control: max-age=X'
659 in requests. The max-age value is taken from the
660 'refresh_pattern' rules.
661 - Added support for parsing max-age in client request.
662 - Split icpUdpSend() into simpler icpUdpSend() plus
663 icpCreateMessage().
664 - Force storeAbort() for dispatched objects in
665 asciiLifetimeHandle().
666 - Fixed firewall-related bug when the DNS lookup fails.
667 - Fixed '#define HAVE_GETRUSAGE' bug (Takahiro Yugawa).
668 - Made storeStartDeleteBehind() quiet for 'no-proxy' neighbors.
669 - Fixed log_quote() signed/unsigned bug (Ron Gomes).
670
f39d06a2 671Changes to squid-1.1.beta16 (November 8, 1996):
9d98b6ba 672
673 - Fixed type of Config.level{One,Two}Dirs.
674 - Fixed calling storeRegister and storeUnregister with NULL a entry.
675 - Fixed objcache "squid.conf" request and now require a
676 password for it (Jan.Harkes@cwi.nl).
677 - Added check for dotted-quads in matchInsideFirewall()
678 (Andreas Lamprecht).
679 - Fixed up some HTTP/1.1 Cache-Control parsing (Ed Knowles).
680 - Fixed IP ACL memset() bug when -DPURIFY=1.
681 - Resurrected storeEntryValidToSend().
682 - Moved storeSetPrivateKey() calls to storeReleaseRequest().
683 - Added separate config line (neighbor_type_domain) for modifying
684 neighbor type (parent vs. sibling) for certain domains. Adding
685 it to cache_host_domain doesn't provide needed flexibility.
686 - Added User-Agent log patch (Joe Ramey).
687 - Added httpd-accel Host: patch (Miguel A.L. Paraz).
688 - Changed ident lookup stuff to require the lookup before
689 checking ACL's. If you have 'ident_lookup on' then this
690 may cause noticable delay while waiting for the ident
691 lookup.
2a88be88 692 - Fixed storeSwapOutHandle() FMR bug.
4a45acc4 693 - Stopped inserting incorrect Host: header for proxy-HTTP requests.
9d98b6ba 694
86b61a3f 695Changes to squid-1.1.beta15 ():
696
697 - Fixed entry->clients[].fd initialization bug causing all
698 large objects to get stuck.
193efd1c 699 - Changed /www.nlanr.net/Squid/ to /squid.nlanr.net/Squid/.
86b61a3f 700
f71d7952 701Changes to squid-1.1.beta14 ():
702
703 - Added pw_encrypt() check to configure.
704 - Added 'cache_stop_relist' for a regular expression based
705 stoplist.
706 - Fixed checkRefresh() to not cause IMS request for objects
707 which have not yet expired, but are past the LM-factor.
708 - Fixed asciiConnLifetimeHandle() to force storeAbort() for
709 pending objects.
0ee4272b 710 - Made lots of variables and args 'const' (Markus Gyger).
f836f80d 711 - Added cachemgr password support in squid.conf (Yaroslav M.
712 Levchenko). Each cachemgr operation may have a separate
713 password. Shutdown and all "log" operations must be
714 password-protected.
715 - Removed debug_trap() calls in squid_error_entry().
716 - Removed InvokeHandlers() call from StoreAbort().
0230ad3e 717 - Added icpHandleAbort() to deliver abort messages, if at all.
ae7d848d 718 - Added passthrough module (pass.c) for POST, et. al.
650c98da 719 - Fixed purify bugs in storeCloseLog() and storeSwapInHandle().
0230ad3e 720 - Merged store 'pending list' into 'client list.'
6982963c 721 - Made number of first- and second-level swap directories
722 configurable (Ralph Loader).
f71d7952 723
9c1d8929 724Changes to squid-1.1.beta13 (November 1, 1996):
725
861f7d39 726 - Fixed base64_code[] typo bug (Joe Ramey).
727 - Fixed errors being returned as empty objects.
728 - Changed order of sanity checks in neighborsUdpAck().
9c1d8929 729 - Made swap log pathname configurable with 'store_swap_log'.
730 - Made 'http_accel virtual 80' same as -V on command line.
731 - Fixed string termination bug in base64_decode() (Joe Ramey).
861f7d39 732
55b34d8e 733Changes to squid-1.1.beta12 (October 31, 1996):
727348b4 734
735 - Fixed ICMP 'pinger' failure detection.
736 - Fixed handling of no-cache for negative-cached objects.
55b34d8e 737 - Replaced protoUnregister() call in icpDetectClientClose().
738 - Fixed calling storeReleaseRequest() on unlocked objects.
727348b4 739
21da08b3 740Changes to squid-1.1.beta11 (October 29, 1996):
0d3b2381 741
b5cc294e 742 - Fixed rfc1123() to use actual RFC1123 time format.
743 - Made Store Hash parameters configurable
744 - store_objects_per_bucket
745 - store_avg_objects_size
746 - Fundamental changes to object TTLs; now think in terms of
747 refresh times. Replaced 'ttl_pattern' with 'refresh_pattern'.
748 - Dropped 'http', 'ftp', and 'gopher' config options.
749 - Added a single 'maximum_object_size' value.
750 - Moved storeStartDeleteBehind() calls from http/ftp/gopher to
751 storeAppend().
752 - Moved storeClientListAdd() call from store to client/icp
753 because of storeClientCopy() race condition between IMS
754 replies and objects in delete behind mode.
755 - renamed TCP_EXPIRED* to TCP_REFRESH*.
756 - Stopped appending error messages to partially delivered
757 objects.
e7aa3d17 758 - Removed protoUnregister() call in icpDetectClientClose()
759 as probable cause of storeReleaseRequest() warnings.
b5cc294e 760
e2971793 761Changes to squid-1.1.beta10 (October 24, 1996):
91b74eb8 762
763 - Fixed neighborsUdpAck() coredump bug and made debug messages
764 more consistent.
765 - Removed old REQ_ACCEL test (Miguel A.L. Paraz)
766 - Fixed process RSS value for SGI (Ed Knowles).
767 - Fixed parseAddressLine() to use gethostbyname(3) because
768 its called before ipcache_init(). (Miguel A.L. Paraz)
769 - Fixed announce bug since beta7 causing caches to be announced
770 regardless of 'announce_to' setting. (Paul Southworth)
771 - Fixed pinger 'last_check_time' bug.
772 - Changed storeEntry->flag and storeEntry->refcount back to
773 32-bit ints.
774 - Removed extra "\r\n" for abort error messages.
775 - Numerous hash fixes from Mark Treacy.
360f7bea 776 - Renamed rfc850 to rfc1123.
e2971793 777 - Changed storeRelease to not make recursive call for HEAD
778 objects.
779 - Changed return value semantics of storeRelease().
91b74eb8 780
1a1ca352 781Changes to squid-1.1.beta9 (October 21, 1996):
782
783 - Added 'make depend' target to Makefiles.
784 - Fixed changing the wrong instance of 'opt_catch_signals'
1baa4e8a 785 in tools.c for beta8.
1a1ca352 786 - Fixed xmemcpy macros in include/config.h (Ed Knowles).
1fb83a91 787 - Fixed logging of "TCP_EXPIRED_MISS/304."
1a1ca352 788
5ecceaa4 789Changes to squid-1.1.beta8 ():
790
791 - Added client_db.c; keeps stats on clients, use cachemgr
792 to view client list.
793 - Stop sending ICP_OP_DENIED to clients if 95% of their
794 queries are denied (then they'll think we're dead).
366b96f1 795 - Fixed objects getting stuck in VM when handling aborted
796 requests in icpHandleIMSReply().
a4be6552 797 - If IMS verification fails, send the old object and log it
798 as TCP_EXP_FAIL_HIT.
799 - Added Host: header to HTTP requests.
10660f97 800 - Disable dnsservers with 'dns_children 0' in the config file.
801 - Disable ftpget with 'ftpget_program none' in the config
802 file. Also ftpget is disabled for http_accel mode.
6211a7c1 803 - Changed cachemgr stats/objects listing format.
804 - Added some missing "entry->refcount++"
805 - Changed StoreEntry->timestamp to be the last verification time.
806 (was the stored-on-disk time).
807 - Fixed stuck objects from "304 Not Modified" responses without
808 final blank line.
809 - Added failure detection to icmpRecv().
0b6d1622 810 - Fixed backwards logic in debug_trap().
72827a42 811 - Fixed neighbor caches remaining in 'DEAD' state. Reorganized
812 handling ICP replies so neighborsUdpAck gets called for
813 most every reply.
5ecceaa4 814
19037ac2 815Changes to squid-1.1.beta7 (October 14, 1996):
6ac8a46c 816
817 - Combined and renamed comm_set_select_handler() functions.
e2b8bf57 818 - Fixed netdbPingSite() not checking n->next_ping_time.
819 - Fixed acl.c to use regular gethostbyname() because IP cache
820 isn't initialized while reading config file.
821 - Linked ftpget with debug.o and removed lib/debug.c,
822 lib/log.c.
19037ac2 823 - Fixed matchDomainName() coredump for late ICP packets.
824 - Removed date string from syslog messages.
825 - Fixed ftpget BASE HREF.
826 - Fixed pinger to check squid socket every 10 seconds.
6ac8a46c 827
e90100aa 828Changes to squid-1.1.beta6 ():
829
830 - Fixed lots of function prototypes, etc (Ed Knowles).
831 - Added multicast patch (Martin Hamilton).
e2b8bf57 832 - Replaced 'struct hostent' with 'struct ipcache_addrs' in IP
833 cache.
cafd0944 834 - Added ipcacheCycleAddrs() to round-robin IP addresses.
e2b8bf57 835 - Added ipcacheRemoveBadAddr() to remove addresses from failed
836 connect()'s.
837 - Changed comm_connect() to comm_nbconnect() and removed other
838 nonblocking connection handling code from other modules.
839 - Improved cache memory usage. Now cache_mem specifies the
840 size of the in-memory data pool. Hot objects use whatever
841 space is not used by in-transit objects.
cafd0944 842 - Removed 'max_hot_object_size' config option.
843 - Fixed virtual-host coredump bug (Aaron Hopkins).
e90100aa 844
300acab6 845Changes to squid-1.1.beta5 (October 7, 1996):
846
847 - Fixed coredump in storeFreeMemory().
848 - Fixed displaying repeated IP addresses in IP cache contents.
849 - Added parent/sibling modifiers to cache_host_domain lines.
850 - Added 'miss_access' to restrict fetching HTTP MISS requests.
851 Use this to force your peer caches to use you as a sibling and
852 not as a parent.
853 - Added browser ACL patch (Carson Gaspar).
854 - Added reading ACLs from file patch (Arjan de Vet).
6d2296d4 855 - Squid-1.0 changes up to 1.0.18.
ee1d3cec 856 - Added release/cleanup functions to net_db.c.
7efcb4b8 857 - Added 'minimum_direct_hops' config option.
300acab6 858
0ac25a67 859Changes to squid-1.1.beta4 (September 26, 1996):
67508012 860
861 - Fixed coredump in icpStateFree() when calling
862 checkFailureRatio().
863 - Added more stuff to net_db.c.
864 - Fixed memory leak in stat_ipcache_get().
865 - Changed __P back to _PARAMS.
9d90e665 866 - Fixed authorization parsing bug in ftp.c (Yoichi Shinoda).
867 - Allow ICP socket on priveledged ports.
868 - Added trap for STORE_PENDING objects when lock_count == 0.
869 - Replaced 'cache_hot_vm_factor' with 'max_hotvm_obj_size'.
870 - Moved ICMP socket to external 'pinger' program.
a65bb524 871 - Moved tvSubMsec() to lib/util.c.
872 - Moved accessLogTime() to debug.c.
4d1c96c0 873 - Fixed handling of race condition in icpHandleIMSReply().
874 - Fixed "\r\n\0" bug in gopherSendRequest();
875 - Fixed cachemgr output for non-table browsers (Cord Beermann).
876 - Moved accept() for dnsserver into Squid.
67e7a3e0 877 - New SVR4 config stuff in contrib directory (Markus Gyger).
a88cc58a 878 - Includes squid-1.0 changes up to 1.0.17.
73d94b9e 879 - Fixed storeWriteCleanLog() bug which caused released objects
880 to be kept.
0ac25a67 881 - Added *FreeMemory() routines.
67508012 882
883Changes to squid-1.1.beta3 (September 16, 1996):
86ee2017 884
885 - s/()/(void)/
886 - Fixed 8k page leak in icmpRecv().
473471f2 887 - Use strerror() if available instead of sys_errlist[].
888 - Misc ANSI-related cleanup.
d4488506 889 - Added 'cache_stoplist' to specify things which should
890 never get saved to disk.
891 - Merged some parsing routines into parseWordlist().
892 - Fixed icpHandleIMSReply() bug when HTTP reply headers
893 received in multiple reads.
894 - Changed all ipcache_nbgethostbyname() handler functions
895 to be void.
896 - Fixed bug when storeLockObject() fails for UDP_HIT_OBJ
897 replies.
898 - Simplified storeGet().
899 - Removed meta_data.hash_links member.
caebbe00 900 - Includes squid-1.0 changes up to 1.0.16.
e1d9800b 901 - s/__STRICT_ANSI__/__STDC__/g
86ee2017 902
67508012 903Changes to squid-1.1.beta2 (September 12, 1996):
4c5cabe1 904
49e75273 905 - Switched to ANSI style coding.
b8d8561b 906 - Fixed UDP_HIT_OBJ objects ignoring 'proxy-only' setting.
4c5cabe1 907 - Added setting cachemgr.cgi fields from query string
908 (Neil Murray).
909 - Split log type TCP_IFMODSINCE into TCP_IMS_HIT and
910 TCP_IMS_MISS
911 - Replaced proto_hit() and proto_miss() with proto_count()
912 which looks at log_type argument to calcultate hits
913 and misses.
914 - Split CacheInfo into HTTPCacheInfo and ICPCacheInfo.
915 - Placed call to proto_count() just after log_append()
916 so we only need it in one place.
917 - Made a lot of proto.c functions static and added prototypes.
ce2869d0 918 - Fixed icpProcessRequest() bug. Need to check EXPIRED
919 before IMS.
eebe8724 920 - Fixed aclDestroyDenyInfoList() to NULL free'd lists.
921 - Fixed storeDirClean() to unlink files which should be
922 directories (Cord Beerman).
be083e42 923 - Added ICMP support. Source ping will use ICMP packets if
924 compiled with -DUSE_ICMP=1 and started with root privleges.
4c5cabe1 925
a09d6f9d 926Changes to squid-1.1.beta1 (September 12, 1996):
36fd4d12 927
928 - Fixed stupid coredump bug in storeGetSwapSpace().
929 - Cleaned up gopher.c; prototypes, make functions static, etc.
930 - Added READ_DEFERRED entry flag. Only extend lifetime when
931 first entering deferred mode.
932 - Added debug_trap() to replace some fatal_dump()'s. Now use
933 debug_trap for non-fatal errors. If -C option is set,
934 then debug_trap is the same as fatal_dump.
935
7690e8eb 936Changes to squid-1.1.alpha18:
937
7939435c 938 - Fixed storeCheckPurgeMem() to both 'purge' *and* 'release'
939 objects as needed.
7690e8eb 940 - Fixed up RWStateCallbackAndFree() to prevent it from getting
941 called twice.
942 - Added 'deny_info' support for redirecting denied requests to
943 a specific URL (maex@space.net).
944 - Fixed protoUnregister() to not abort objects being swapped in.
d54ac2a3 945 - Fixed parent-stays-dead-bug by removing PING_WAITING
946 check in icpHandleIcpV?().
7690e8eb 947 - Changed debug log timestamp format.
948 - Fixed coredump-causing bugs in icpHandleIMSReply().
949 - Fixed FMR bug in neighborsUdpAck() for UDP_HIT_OBJ replies.
950 - Fixed up InvokeHandlers() to clear handler before calling.
35b9d444 951 - Added -k signal option to signal a running Squid (Markus Gyger).
c28f8352 952 - Removed dynamic_array code.
7939435c 953
1ee4fb1a 954Changes to squid-1.1.alpha17:
955
956 - Added more IMS support. Now Squid issues IMS requests for
957 expired objects in the cache. Log type will be either
958 TCP_EXPIRED_HIT if the server sends "304 Not Modified" or
959 TCP_EXPIRED_MISS if the server send a new object.
49789bff 960 - Added Config.expireAge and 'expire_age' to config.
1ee4fb1a 961 - Fixed storeGetMemSpace() bug; need to check
962 storeCheckPurgeMem() instead of storeEntryLocked().
963 - Renamed icp_hit_or_miss() to icpProcessRequest().
964 - Changed mkrfc850() to use normal variable instaed of a
965 pointer.
966 - Removed store_entry member from fd_table[] in comm.h.
967 - Changed httpSendRequest to not tack Squid onto the 'User-Agent'
968 line, Use HTTP/1.1 'Forwarded' instead.
969 - Removed icpProcessHIT() which only called icpSendMoreData().
970 - Removed icpProcessIMS() which only called icpGetHeadersForIMS().
971 - Removed some 'Reset header fields for reply' crap.
972 - added old_entry member to icpStateData for handling IMS
973 requests.
974 - Added 'locks' member to ipcache_entry; need to lock an
975 ipcache entry during ipcache_call_pending().
976 - Removed ipcache_call_pending_badname().
977 - Cleaned up setting/clearing IP_LOOKUP_PENDING bit.
978 - Removed storeEntryLocked() trap in storePurgeMem().
979 - Added storeCheckExpired().
980 - Removed storeWalkThrough() and removeOldEntry(), changed
981 storePurgeOld() to do the walking through instead.
30ba5128 982 - Added storeConfigure() so HUP signal affects store_swap size.
49789bff 983 - Replaced some parsing functions with parseMinutesLine().
984 - Added StoreEntry flag bit ENTRY_NEGCACHED.
985 - Added storeNegativeCache().
1ee4fb1a 986
1c481e00 987Changes to squid-1.1.alpha16:
988
e4289d4f 989 - Fixed ipcache TTL bug from new ipcache_parsebuffer().
990 - Copied recent ipcache.c changes to fqdncache.c
991 - Copied icpHandleIcpV2() fix to icpHandleIcpV3().
992 - incorporate squid-1.0.12 changes.
993
70cbd177 994Changes to squid-1.1.alpha15:
995
996 - Removed 'bad swap_status' trap in icpHandleIcpV2.
997 Now skip ICP replies for StoreEntry's with ping_status
998 != PING_WAITING.
999 - Fixed numerous compiler problems.
1000
1450414d 1001Changes to squid-1.1.alpha14:
1002
1003 - Fixed ENTRY_DISPATCHED bug. ENTRY_DISPATCHED was not always
1004 getting set (e.g. for requests matching hierarchy_stoplist).
1005 This could cause multiple calls to storeAbort() for the same
1006 entry.
1007 - With ENTRY_DISPATCHED now fixed, call squid_error_entry()
1008 from protoUnregister() for StoreEntries which have not
1009 been dispatched.
1010 - Fixed 'quick_abort' parsing bug.
1011 - NULL terminate too-long URL strings in urlParse(). Still
1012 need fix to somehow handle these.
d5d836c0 1013 - Added shadow password patch from John Saunders
1014 <johns@rd.scitec.com.au>
1450414d 1015 - Added _dns_ttl_ hack from bne@CareNet.hu to get real TTL
1016 values from DNS queries. See Release-Notes-1.1.txt for more
1017 info.
d5d836c0 1018 - Added better '304 Not Modified' reply from Jaeyeon Jung
1019 <jyjung@cosmos.kaist.ac.kr>.
17d32ba1 1020 - Rewrote ipcache_parsebuffer().
1450414d 1021 - Fixed stupid clientProxyAuthCheck() bugs.
1022 - Made IP cache size configurable with 'ipcache_size'.
1023 - Fixed bug parsing 'cache_swap_low'.
1024 - Added -b option to ftpget to limit data transfer rate
1025 (bytes/sec). Specify on 'ftpget_options' in config file.
1026 - Miscellaneous filedescriptor management cleanup.
1027 - Renamed function getFromCache() to protoStart().
6bf5b6ec 1028 - Added delays when forking dnsservers, redirectors, and
1029 ftpget.
1450414d 1030 - Includes 1.0 changes up to 1.0.11.
1031
1032Changes to squid-1.1.alpha13:
1033
1034 - oops, there was no alpha13.
46aea673 1035
d744f553 1036Changes to squid-1.1.alpha12:
1037
57b7e562 1038 - Rewrote storeGetMemSpace().
1039 - Fixed hot_vm accounting; only count objects which are added
1040 to the IN_MEMORY table.
616e163d 1041 - Changed protoUndispatch() to never call squid_error_entry().
57b7e562 1042 Should fix storeSwapOutHandle() and 'HELP! Someone is
1043 swapping out a bad entry' coredumps.
1044 - Report all error pages to the debug log.
d744f553 1045 - Added -i option which forces IP cache entry to be invalidated
1046 just after an object retrieval begins.
af00901c 1047 - Includes all squid-1.0 changes up to squid-1.0.10.
2546fcb3 1048 - Added patch from srb@cuci.nl (Stephen R. van den Berg) for
1049 - ttl_force_pattern
1050 - quick_abort min pct max
1ce5b828 1051 - Added a proxy authentication patch from Jon Thackray
1052 <jrmt@uk.gdscorp.com>. Must add -DUSE_PROXY_AUTH=1 to src/Makefile.
c85e0538 1053 - Cleaned up calling maintenance functions from main().
616e163d 1054
dd263318 1055Changes to squid-1.1.alpha11:
1056
1057 - Fixed sscanf() bug in storeDirClean()
1058 - Fixed coredump in squid_error_entry() on Config.errHtmlText.
dfdb0343 1059 - Added redirector stats entry to cachemgr.cgi.
dd263318 1060 - Call ipcache_purgelru() during an idle timeout.
1061 - Changed fqdnFromAddr() to copy inet_ntoa() result into a
1062 static buffer.
1387baa5 1063 - Fixed storeDirClean() printf format.
dd263318 1064
9cc8a658 1065Changes to squid-1.1.alpha10:
1066
2e0569ed 1067 - Fixed directory increment bug in storeDirClean().
9cc8a658 1068 - Misc little changes trying to track town random coredumps.
1069 - Includes all squid-1.0 changes up to squid-1.0.8.
2e0569ed 1070
004b3381 1071Changes to squid-1.1.alpha9:
1072
1073 - Fixed parsing of redirected URLs.
1074 - Changed URL redirection to pass in client address, ident, and method.
1075 - Fixed NULL pointer coredump in log_append().
1076 - Don't swap negative-cache objects to disk (storeCheckSwappable())
1077 - Only purge MemObject if entry is swapped to disk.
1078 - Includes all squid-1.0 changes up to squid-1.0.7
cd2e6c01 1079 - Fixed purify free memory errors in clientAccessCheck().
004b3381 1080
642a7c42 1081Changes to squid-1.1.alpha8:
1082
eaa77841 1083 - Removed all references to hierarchy.log.
1084 - Changed hierarchy_log_append() to hierarchyNote() and added
1085 _hierarchyLogData structure.
642a7c42 1086 - Fixed "tty input" bug where a reverse lookup request was
1087 written to stdout.
1088 - Cleaned up pointers in protoUnregister().
0a5b9b32 1089 - Includes all squid-1.0 changes up to squid-1.0.6.
2546fcb3 1090 - cache_swap 0 is allowed (proxy only server, no swapping), mainly
1091 intended for fast maintenance startups where the system already
1092 has to be running, but the disk(s) have not been fsck'd yet.
1093 - quick_abort actually works now
1094 - quick_abort functionality made conditional
1095 - ttl_pattern storage wasn't being cleaned upon a reread of
1096 the config file (the patterns were added only, got duplicates)
1097 - ttl_force_pattern a new config option to override the settings
1098 of certain pages despite (or because) of enforced low expiry times
2546fcb3 1099
98d030e6 1100Changes to squid-1.1.alpha7:
1101
c10b625a 1102 - Added 'tcp_recv_bufsize' option to config.
1103 - Changed NEIGHBOR to SIBLING where appropriate.
1104 - Split UDP_HIT_OBJ into {PARENT,SIBLING}_UDP_HIT_OBJ
1105 - Misc casts and cleanup from running Insight.
1106 - Replaced all get*() functions with direct references to
1107 Config structure.
98d030e6 1108 - Removed 'http_stop', 'ftp_stop', and 'gopher_stop' from config.
1109 - Added 'ssl_proxy' config for forwarding all SSL requests to
1110 another proxy.
1111 - Includes all squid-1.0 changes up to squid-1.0.5.
c10b625a 1112
40878e17 1113Changes to squid-1.1.alpha6:
1114
1115 - Changed storage manager to use a two level directory
1116 structure. This makes squid-1.1 incompatible with squid-1.0!
4349cb51 1117 (Mark Treacy).
40878e17 1118 - Added last modification time to the StoreEntry structure, and
1119 the swap log.
1120 - Changed how memory passed to comm_write() gets freed. Now
1121 pass in a free handler function which gets called when the
1122 RWStateData structure is destroyed.
1123 - Other misc cleanup.
1124 - Added a reverse-address-lookup cache (``fqdncache'').
1125 - Added support for threaded ACLs for destination IP addresses
1126 and source hostnames.
1127 - Use aclMatchDomainList() instead of aclMatchWord() for domain names.
1128 - Renamed cachemgr 'stats/general' to 'stats/ipcache'.
1129 - Added 'log_fqdn' option to config file.
1130 - Added 'client_netmask' to config file.
1131
baa49bd2 1132Changes to squid-1.1.alpha5:
fb3310f1 1133
baa49bd2 1134 - Got Asynchronous I/O stuff to compile and run on IRIX 5.3
fb3310f1 1135 - Cleaned up diskHandleWrite()
1136 - Added free() handler to struct dwrite_q so diskHandleWrite()
1137 can free memory after its been written.
1138 - Changed file_open() to not allow files to be opened O_RDWR.
1139 - Changed file_open() to always set O_APPEND for O_WRONLY files.
14ea2549 1140 - Includes all squid-1.0 changes up to squid-1.0.2.
fb3310f1 1141
499109b3 1142Changes to squid-1.1.alpha4:
1143
1144 - Fixed Asynchronous Disk I/O routines to basically work.
1145 - Fixed memory write bugs when using the redirector.
1146 - Added support for non-anonymous FTP urls without needing a
1147 password in the URL.
1148
27386800 1149Changes to squid-1.1.alpha4:
1150
1151 - Changed cachemgr detailed filedescriptor info to be a separate item.
1152 - 'no-cache' reload now discards bad IP cache entries too.
1153 - Added 'echo request' URL hack: http://cachehost:3128/echo
1154 - Added URL redirector feature.
1155 - Addeed 'ident_lookup' option to config file
8929e8c7 1156 - Fixed http to never rely on blocking IP cache lookups.
1157 - Removed need for locked IP cache entries.
f13e2386 1158 - Changed free page stacks to always free pages if more than
1159 'max' are allocated.
27386800 1160
1ef4c6c1 1161Changes to squid-1.1.alpha3:
983061ed 1162
898f5d1d 1163 - Added Asynchronous Disk I/O routines from Pete Bentley.
27386800 1164 (NOTE, not yet working for IRIX 5.3).
1ef4c6c1 1165 - Made squid native access log the default format.
1166
1167Changes to squid-1.1.alpha2:
1168
1169 - Added support for RFC931/ident
1170
1171==============================================================================
9cc8a658 1172
6d2296d4 1173Changes to squid-1.0.18 (October 7, 1996):
1174
1175 - Added INADDR_NONE to cachemgr.c for Solaris.
1176 - Added checks to deal with Harvest Cached neighbors which don't
1177 handle Squid's ICP version 2.
1178
233794cd 1179Changes to squid-1.0.17 (September 24, 1996):
1180
1181 - Fixed cachemgr.cgi to handle an arbitrary IP address (Ron
1182 Gomes)
1183 - Fixed syslog() calls to use syslog(X, "%s", buf) (Yoichi
1184 Shinoda).
1185 - Copied ipcache locking stuff from v1.1.
1186 - Copied httpConnect() from v1.1 for non-blocking DNS lookups.
1187 - Fixed "\r\n\0" bug in gopherSendRequest();
1188
caebbe00 1189Changes to squid-1.0.16 (September 16, 1996):
1190
1191 - Fixed shadow passwd support (John Saunders).
1192 - Added checkFailureRatio() to detect high fail:success ratios
1193 and go into ICP "hit only" mode for 5 minutes when the ratio
1194 exceeds 1.
1195 - Added ip_acl_destroy() to reset 'local_ip' and 'firewall_ip'
1196 on HUP signal.
1197
1198Changes to squid-1.0.15 (September 13, 1996):
1199
1200 - Fixed stupid bugs from moving icpState->flags to
1201 request->flags.
1202
1203Changes to squid-1.0.14 (September 13, 1996):
1204
1205 - Added '#if DELAY_HACK' code for Mike Groeneweg
1206 <mikeg@scorpion.murdoch.edu.au>.
1207 - Fixed debug bug in ttlSet().
1208 - Moved icpState->flags to request->flags.
1209 - Fixed edgeWouldBePinged() to skip SIBLINGS and NO-CACHE
1210 requests.
1211 - Fixed bad SET/TEST in httpProcessReplyHeader() (Miguel A.L.
1212 Paraz).
1213
1214Changes to squid-1.0.13 (September 12, 1996):
1215
1216 - Fixed ftpget parsing PASV reply bug (Carson Gaspar).
1217 - Forced include of <netinet/in_systm.h> for NeXT (Holger
1218 Hoffstaette).
1219 - Promulgate tcp_outgoing_addr to ftpget with -o option (Edward
1220 Moy).
1221 - add Date: header to Squid-generated Gopher objects (Geoffrey
1222 Keating).
1223 - cachemgr.cgi HTML fixes (Cord Beermann).
1224 - Collapsed some config parsing functions to parseOnOff().
1225 - Added config option: memory_pools on|off
1226 - Added config option: udp_hit_obj on|off
1227 - Added config option: forwarded_for on|off
1228 - Copied better stmem.c and stack.c routines from v1.1 code.
1229 - Added support for HTTP/1.1 Cache-Controls 'private' and
1230 'no-cache'.
1231 - Copied dnsserver "hello/alive" test from v1.1 code.
1232
1c481e00 1233Changes to squid-1.0.12 (September 3, 1996):
1234
1235 - Fixed urlCheckRequest() to allow CONNECT/SSL requests.
1236 - Change default socket send/receive buffers to 16k (in
1237 configure) instead of 8k, mainly for Solaris.
1238 - Fixed urlParse() to remove trailing dots from hostnames.
1239 - Added 'ttl_pattern/i' config tag for case-insensitive
1240 regular expressions.
1241 - Fixed swapin_complete_handler FMW bug in storeSwapInHandle().
1242 - Removed 'Invalid object detected' trap in storeValidToSend().
1243
a8f7d3ee 1244Changes to squid-1.0.11 (August 30, 1996):
1245
1246 - Fixed ENTRY_DISPATCHED bug. Now set ENTRY_DISPATCHED
1247 only in getFromCache().
1248 - Added missing newlines to a number of debug messages.
1249 - NULL-terminate long URL's in urlParse().
1250 - Changed configure to remove libmalloc for FreeBSD
1251 - Changed ftpget to assume a single space between date and
1252 filename in Unix sytle listings.
1253 - Added urlCheck() to check for supported method/protocol
1254 combinations and return "501 Not Implemented" when
1255 appropriate.
1256 - Added ftpget check for negative port numbers in PASV
1257 reply.
1258 - Added shadow password support for cachemgr shutdown.
1259
af00901c 1260Changes to squid-1.0.10 (August 26, 1996):
1261
1262 - Fixed INADDR_NONE not being set for ftpget.c.
1263 - Remove "Connection: Keep-Alive" lines from HTTP requests
1264 since Squid doesn't support them.
1265 - Fixed IP Address/netmask bug. Now 1.2.3.4/255.255.255.0 is
1266 equivalent to 1.2.3.0/255.255.255.0.
1267
1268Changes to squid-1.0.9 (August 22, 1996):
1269
1270 - Cleaned up ipcache_purgerlu().
1271 - Fixed ipcache_gethostbyname() to release expired entries.
1272 - Added check for numeric addresses to ipcache_nbgethostbyname().
1273 - Added Date: field to ftpget's HTTP header output.
1274 - Added temporary hack to httpProcessReplyHeaders() to allow
1275 caching of non-HTTP objects fetched from neighbors when
1276 the header does not have Date, Expires, or Last-Modified.
1277 - Added a check for a valid ICP socket before sending ICP
1278 queries.
1279 - Fixed SSL code to unregister DNS lookups if client aborts.
1280 - Removed lib/host_cache.c from distribution.
1281 - Made IP cache stats output sorted by last reference.
1282 - Added ICP internet-draft to docs directory.
1283
9cc8a658 1284Changes to squid-1.0.8 (August 19, 1996):
1285
1286 - Added ftpget fixes from carson@lehman.com and moy@parc.xerox.com.
1287 - Fixed -s option to enable syslog logging.
1288 - Added 'err_html_text' for configurable error messages.
1289 - Fixed protoDispatchDNSHandle() to not try a direct fetch if
1290 host is beyond firewall_ip list.
1291 - Changed storeDirClean() to handle one directory per call and
1292 not keep the dirhandle open between calls.
1293 - Changed .zip MIME type to "application/x-zip-compressed".
1294 - Added new 'url_regex' ACL type, regular expression match over
1295 the whole URL.
1296 - Removed xrealloc() call from storeClientListAdd().
1297
004b3381 1298Changes to squid-1.0.7 (August 14, 1996):
1299
1300 - Added "store_clean" routines to periodically remove orphaned
1301 swap files.
1302 - Increased StoreEntry->method_t from 3 to 4 bits, probably fixes
1303 storeGenerate*Key() coredumps.
1304 - Added debugging to examine_select().
1305 - Added peer address to debugging for Ignored ICP packets.
1306
65159151 1307Changes to squid-1.0.6 (August 12, 1996):
1308
1309 - Fixed coredump in icpStateFree() for bad requests.
1310 - Fixed configure bug in determining FD_SETSIZE.
1311 - Fixed garbage collection to stop if SIGTERM received.
1312 - Fixed pid file to be written just before 'ready to serve requests'.
1313 - Fixed CheckQuickAbort() lock_count bug.
1314 - Fixed setting the hierarchy code for access.log when the
1315 hierarchy.log is disabled.
1316 - Fixed urlParse() to fail for URLs longer than MAX_URL bytes.
1317 - Fixed icpDetectClientClose() to detect TCP half-close and
1318 not abort the connection.
1319
1320Changes to squid-1.0.5 (July 25, 1996):
1321
1322 - Added ICP_OP_RELOADING to be used instead of ICP_OP_DENIED
1323 for -Y option.
1324 - Moved hierarchy_code for access.log from MemObject to
1325 request_t so simultaneous client readers don't get the same
1326 hierachy code.
1327
1328Changes to squid-1.0.4 (July 24, 1996):
1329
1330 - Fixed ftpget logic/precedence bug
1331 - Fixed ttlSet() to choose TTL as offset from when the object
1332 was originally served, not the current time.
1333 - Fixed configure bug with setting GETTIMEOFDAY_NO_TZP.
1334 - Removed unnecessary call to ipcache_gethostbyname() in
1335 sslConnect().
1336 - Fixed stupid memset() bug in gopher.c causing
1337 a huge block of stack memory to be zeroed.
1338
1339Changes to squid-1.0.3 (July 18, 1996):
1340
1341 - Fixed FTP to send 'Ascii' or 'Binary' based on MIME encoding,
1342 not content-type.
1343 - Changed icpHierarchical() to allow IMS requests to neighbors
1344 if they all support Squid's private keys.
1345 - Fixed icpUdpSend() to not ask for a HIT_OBJ reply if the
1346 HTTP request included 'Pragma: no-cache'.
983061ed 1347
14ea2549 1348Changes to squid-1.0.2 (July 16, 1996):
1349
1350 - Fixed HTTP code in access.log for TCP_IFMODSINCE requests.
1351 - Fixed SSL to not read again until previous write is complete.
1352 - Added CPU usage percentage in cachemgr 'info' output.
1353 - Fixed bug when removing a neighbor. Forgetting to decrement
1354 friends->n causes a duplicate ICP query to be sent in
1355 neighborsUdpPing().
1356 - Increased some MAX_URL sized character buffers to prevent
1357 overflows.
1358
30a4f2a8 1359Changes to squid-1.0.1 (July 8, 1996):
1360
1361 - Fixed ftpget server looping on socket EOF condition.
1362 - Fixed SA_RESETHAND undefined bug.
1363 - Fixed half-hour timezone offset bug.
1364 - Fixed parse_rfc850() to return -1 instead of 0 upon error.
1365 - Added patch for Motorola systems from Tony Lorimer.
1366 - Added support for HTTP PUT method.
1367 - Added check for <netinet/tcp.h> for HP-UX.
1368 - Added GNU General Public License.
1369 - Changed ttlSet() to use Date field if Last-Modified is absent.
1370 - Changed http.c to not save objects from neighbors which do
1371 not have Date, Last-Modified, or Expires values.
1372 - Changed some large local character arrays to static.
1373
1374Changes to squid-1.0.0 (July 1, 1996):
1375
1376 - Fixed beta17 "fd_lifetime" typo bug
1377 - Added 'firewall_ip_list' to configuration options
1378 - Set resolver options to disable searching default domains
1379 and parent domains.
1380 - Added blocking-rebuild -F option.
1381 - Fixed storeMaintainSwapSpace to be called every 10 seconds.
1382 - Fixed ICP_HIT_OBJ bug causing objects to get stuck in VM.
1383 - Fixed matching the ends of domain names (e.g. bar.com no
1384 longer matches foobar.com).
1385 - Fixed checking return code from fprintf() while writing the
1386 clean swap log.
1387 - Fixed fatal_dump from storeSwapoutHandle running out of disk
1388 space.
1389 - Added disabling of a neighbor cache if 95% of replies are
1390 UDP_DENIED.
1391 - Added accounting for misc memory/data structures
1392 - Added 'no-query' option for 'cache_host' config line
1393 - Added error reporting to SSL requests.
1394 - Fixed SSL bug, client abort was not closing the server
1395 side connection.
1396 - Fixed checking hierarchy_stoplist bug.
1397 - Fixed ipcache error messages by giving each entry its
1398 own string.
1399 - Use sigaction() instead of signal() if available.
1400 - Fixed ipcache bug causing some lookups to get stuck in
1401 PENDING state if all dnsservers are busy.
1402 - Fixed domain name matching bug when using '.com' instead of
1403 'com'.
1404 - Fixed close_handler coredump bug in comm.c.
1405 - Removed unnecessary DNS lookup of hostnames in WAIS URLs.
1406
1407Changes to squid-1.0.beta17 (June 12, 1996):
1408
1409 - Fixed another ipcache coredump problem where an entry could
1410 be released between writing to and reading from dnsserver.
1411 - Fixed store.c bug of purging aborted objects.
1412 - Cleaned up checkLifetimes() function to make it simpler.
1413 - Added visible_hostname support to ftpget.
1414 - Fixed null edge dereferencing bug for UDP_HIT_OBJ.
1415
1416Changes to squid-1.0.beta16 (June 10, 1996):
1417
1418 - Fixed two coredump-causing bugs in ipcache_unregister().
1419 - Changed 'close_handler' to a linked list.
1420 - Changed freeing of protodispatch_data structures to use
1421 new close_handler (attached to client FD).
1422 - Fixed URL handling to accomodate browswers which do not handle
1423 relative URL parsing.
1424
1425Changes to squid-1.0.beta15 (June 9, 1996):
1426
1427 - Fixed storeSwapoutHandle coredump bug
1428 - Fixed DNS lookup failure of neighbor hosts after a few hours
1429 of operation
1430 - Changed memcpy() to memmove() for overlapping memory copies
1431 - Changed store rebuidling to unlink the log-last-clean file
1432 in case of a crash during rebuild
1433 - Added forwarding loop detection
1434 - Changed all memcpy to use xmemcpy which is memmove, bcopy, or
1435 memcpy.
1436 - Fixed coredump bug from partial dnsserver reads, manifest on
1437 FreeBSD and NetBSD.
1438
1439Changes to squid-1.0.beta14 (June 7, 1996):
1440
1441 - Fixed coredump bug in icp.c when generating ``Not Modified''
1442 replies.
1443 - Fixed SSL bug which assumed the requested host name would
1444 already be in the IP cache.
1445 - Fixed names of generated HTTP reply headers.
1446
1447Changes to squid-1.0.beta13 (June 7, 1996):
1448
1449 - Fixed coredump bug where StoreEntry key was free'd too soon.
1450 - Fixed UDP_HIT_OBJ bug: cancel the hierarchy timeout and set
1451 the ping_status to DONE for UDP_HIT_OBJ replies.
1452
1453Changes to squid-1.0.beta12 (June 6, 1996):
1454
1455 - Fixed problem when using udp_outgoing_addr where no ICP
1456 packets would be recieved because they were getting sent
1457 to the "outgoing" instead of the "incoming" socket.
1458 - Fixed objects hanging around in cache after a keychange.
1459 - Added ability to restrict neighbor caches with ACLs.
1460 ('cache_host_acl').
1461 - Fixed ssl FD mismatch bug.
1462 - Fixed INADDR_NONE bug on 64bit systems.
1463 - Fixed store rebuilding bug; temporary log file was not being
1464 truncated.
1465 - Made all external processes communicate with TCP sockets
1466 (no more Unix domain sockets).
1467 - Semi-major rewrite of ipcache implementation.
1468 - Fixed a couple memory bugs found by purify.
1469 - Fixed sending large (>8192 bytes) HTTP requests.
1470 - Added "lazy" server IP address ACL checks (type 'dst').
1471 - Changed handling of IMS requests. Now will return "304
1472 Not Modified" if the requested object is in the cache
1473 and not expired.
1474
1475Changes to squid-1.0.beta11 (June 1, 1996):
1476
1477 - Fixed serious memory leak of MemObject->reply structures.
1478
1479
1480Changes to squid-1.0.beta10 (May 31, 1996):
1481
1482 - Fixed bug when request arrives in fragmented IP packets.
1483 - Fixed ACL bug which denied cache manager access while in
1484 httpd_accel mode.
1485 - Changed ftpget to "fail nicely" for sites which do not allow
1486 PORT requests (if compiled with PASVONLY).
1487 - Fixed Unix domain socket off-by-one bug in ftpget.
1488 - Fixed lingering sockets after shutdown by SIGTERM.
1489 - Added dnsserver use histogram to ipcache stats.
1490 - Changed domain ACL's to match only the end of the hostname, not
1491 just anywhere in the string.
1492 - Fixed setuid bugs when pid_filename was not defined
1493 - Fixed zero-sized object getting stuck in VM.
1494 - Configure checks for working UNIX domain stream sockets
1495 - Rotate cache.log before the others
1496 - SIGUSR2 now toggles between full and normal debugging
1497 - Close and restart ftpget server during logfile rotation
1498 - Added memory pools for request_t and MemObject data structures.
1499 - Added new address binding options for more control
1500
1501Changes to squid-1.0.beta9 (May 23, 1996):
1502
1503 - Fixed storeToString() coredump bug on 'swap_buf'
1504 - Added back the CIDR notation functionality to decoding IP
1505 address ACLs.
1506 - Fixed ftpget listing parsing coredump bug.
1507 - Fixed neighborsUdpAck() coredump for late-arriving ICP replies.
1508
1509Changes to squid-1.0.beta8 (May 22, 1996):
1510
1511 - More friendly CFLAGS and LDFLAGS for configure
1512 - ACL_ALLWEEK bugfix
1513 - Added missing increment of UDP connection counter.
1514 - Changed ftpget select to check for EWOULDBLOCK/EAGAIN
1515 (workaround for broken Solaris select(2)).
1516 - Fixed MALLINFO calls for Linux
1517 - Fixed strerror() problems on SunOS 4.1.x
1518 - Fixed DefaultAnnounceRate; set to zero by defult.
1519 - Changed all port variables to u_short.
1520 - Created AF_UNIX versions of comm_open(), comm_connect().
1521 - Changed ftpget server to use UNIX domain socket.
1522 - Removed RESET_SIGNAL_HANDLER check--always reset the signal
1523 handler.
1524 - Added instrumentation of basic IPCache stats.
1525 - Fixed calculation of neighbor average RTT.
1526 - Added 'outbound_addr_list' to config
1527 - Change getFirstParent() to getFirstUpParent().
1528 - Changed ftpget to use an additional pipe() for crash detection
1529 - Added ICP_OP_DENIED message type
1530 - Added patches for Nextstep port from Luke Howard
1531 <lukeh@vurt.schnet.edu.au>
1532 - Added a lifetime to HTTP server connections being deferred.
1533 - Added IP address ranges in 'src' ACLs
1534 - Added FQDN's in 'src' ACLs
1535 - Fixed request structure free-memory-read/coredump bug.
1536 - Changed icp.c to select on client socket to detect aborts.
1537 - Better compliance with HTTP/1.1 *DRAFT* regarding which reply
1538 codes can be cached.
1539 - Added 'hierarchy_stoplist' configuration option.
1540 - Changed mallopt option M_MXFAST to 512 bytes.
1541 - Added -Y option to only return UDP_HIT or UDP_DENIED during
1542 store reload.
1543 - Added UDP_HIT_OBJ type. Just like a UDP_HIT, but object data
1544 is returned in the UDP packet if it will fit; saves a TCP
1545 connection. Not compiled in by default, add -DUDP_HIT_WITH_OBJ
1546 to src/Makefile DEFINES.
1547
1548Changes to squid-1.0.beta7:
1549
1550 - Fixed comm_udp_sendto continuous loop bug
1551 - Fixed URLs-with-colon-but-no-port-number bug
1552 - Fixed sending ICP queries for HEAD requests
1553 - Changed 'server_list' output. Added RTT, Fetches, Hits, Misses,
1554 and percents.
1555 - Fixed setuid bug causing some logs to be owned by root.
1556 - Fixed virtual host mode (-V option)
1557 - Added read(2) instrumentation for HTTP and FTP.
1558 - Changed neighbor initialization to continue if DNS lookup fails.
1559 - Lint cleanup
1560
1561Changes to squid-1.0.beta6:
1562
1563 - Fixed null error message coredump in ftpget.
1564 - Added -m Method option to `client'.
1565 - Fixed ftpget server bug with missing trailing slash.
1566 - Removed 'connect_ports' from config, use general ACLs instead.
1567 - Changed requested listen queue length to 1/4 of getMaxFD().
1568 - Rewrote SSL/CONNECT handlers. Now doesn't use a StoreEntry.
1569 - Fixed some aborted objects getting stuck in VM bug.
1570 - Fixed ftpget PASV reply sscanf to work for VMS ftpd.
1571 - Changed FTP URL parsing to use urlParse().
1572 - Changed ftpget to skip RETR command if URLs ends with '/'.
1573 - Changed ftpget to display README at the bottom if there are other
1574 server messages.
1575 - Changed ftpget to not reopen a new data connection
1576 if one is already open.
1577 - Fixed handling of FTP URLs with spaces (and other unsafe characters)
1578 - Changed ftpget to only generate BASE HREF if the FTP URL does
1579 not end with '/'.
1580
1581Changes to squid-1.0.beta5:
1582
1583 - Fixed cachemgr to send 'HTTP/1.0' on request so it works
1584 with beta4 fixes to icp.c.
1585
1586Changes to squid-1.0.beta4:
1587
1588 - Added a handler to restart the ftpget server.
1589 - Fixed access checks for ICP by parsing the requested URL.
1590 - Added "magic marker" to ftpget-generated errors so they can
1591 be negative-cached.
1592 - Added a small run-time check to configure to see if signal
1593 handlers should be restarted after invocation (ala SYSV).
1594 - Determine Maximum filedescriptors in configure and change
1595 FD_SETSIZE if needed.
1596 - Changed read stall algorithm for HTTP. No don't wait until
1597 the object is in DELETE_BEHIND mode to stall the server read
1598 and wait for the client to catch up. Also changed from 4k to
1599 16k read buffer.
1600 - Fixed HTTP request parsing to check for blank line at the
1601 end of all requests. Symptoms were "connection reset"
1602 messages.
1603
1604Changes to squid-1.0.beta3:
1605
1606 - Added ftpget '-C minport:maxport' option
1607 - Fixed PROTO_MAX fencepost bug in stat_init().
1608 - Fixed Fixed CheckQuickAbort() coredump.
1609 - Fixed disabling store.log and hierarchy.log when set to "none"
1610 - Fixed numerous problems related to setuid().
1611 - Fixed 'check_cache.pl' to use new swaplog format (without "FILE").
1612 - Fixed ACL coredumps when checking NULL words.
1613 - Changed pid_filename to be written and unlinked as root.
1614 - Added "-i seconds" option to 'client' for testing IMS GET.
1615 - Fixed a bug where an IMS request caused the valid object to
1616 get ejected from the cache.
1617 - Fixed continual DEAD_PARENT/REVIVE bug
1618 - Fixed ERR_INVALID_URL bug for URLs with a password field.
1619 - Added to Release-Notes info about converting 'cache/log' and
1620 difference between stoplists and ttl_pattern.
1621
1622Changes to squid-1.0.beta2:
1623
1624 - Fixed /bin/csh "$#argv" leftover in RunCache.
1625 - Fixed ACL day-of-week bitmask bug.
1626 - Fixed missing checks for WAIS in some places.
1627 - Fixed chdir(swappath(0)) bug; do chdir() after storeInit().
1628 - Changed enumerated structure members to be defined outside
1629 of the structure itself (for AIX).
1630 - Changed ftpget to fork before reading the request and make
1631 sure the entire request is read.
983061ed 1632
234967c9 1633Changes to squid-1.0.beta1 (Apr 19, 1996) from Harvest cached-1.4.pl3:
2d15012a 1634
2d15012a 1635 - Added a "server mode" to ftpget. Now the (much smaller)
1636 ftpget process forks for each FTP request.
234967c9 1637 - Added support for If-Modified-Since GET requests.
1638 - Added support for SSL and https objects.
1639 - Added background processing for rebuilding the disk store
1640 while serving requests. Cache can now serve requests immediately.
1641 - Added a 'reconfigure' feature activated by SIGHUP. The config
1642 file is re-read and most changes will take effect.
1643 - Added an internal flag for using private keys with ICP queries
1644 to neighbors. If any neighbor returns a reqnum field of zero,
1645 then disable using private keys. But still use private
1646 keys for things with bypass the ICP query step (such as POST
1647 and IMS-GET).
1648 - Added a function to verify content-lengths. Objects with
1649 mismatched (but non-zero) content lenghts will be ejected.
1650 - Added clean shutdown mode. On SIGTERM the incoming HTTP socket
1651 is closed. Active clients are given a lifetime of 30 seconds
1652 (configurable). Process exits when all sockets are closed.
1653 - Added support for large POST objects.
1654 - Added "store.log" which logs RELEASE/SWAPIN/SWAPOUT events.
1655 - Added announce feature to squid; no longer external program.
1656 If enabled, a running cache will announce itself every 24 hrs.
1657 - Added support for FTP URLs with non-default ports.
1658 - Added new Access Control List scheme.
1659 - Added Forwarded: header to proxy HTTP requests (HTTP/1.1 feature).
1660 - Added weights neighbors.
1661 - Added urlParse() which strips off default ports and
1662 makes hostnames all lowercase.
2d15012a 1663 - Added (section,level) debugging and 'debug_options' config line.
1664 - Added 'pid_filename' to configuration file.
234967c9 1665 - Added 'visible_hostname' to configuration file.
1666 - added 'ftp_user' to configuration file.
1667 - added 'dns_positive_ttl' to configuration file.
1668 - added 'dns_negative_ttl' to configuration file.
1669 - Added 'shutdown_lifetime' to configuration file.
1670 - Fixed bug where cache process would "spin" on large objects
1671 being deferred.
1672 - Fixed byte order conversion bug on setting echo port.
2d15012a 1673 - Changed meaning of command line -b (buffered logs) option.
1674 Now the default behaviour is unbuffered logs, use -b to make
1675 them buffered.
2d15012a 1676 - Changed WAIS code to always be fully compiled in.
234967c9 1677 - Changed the storage manager to use the notion of private and
1678 public keys. Requests are now private until the reply headers
1679 have been read.
1680 - Changed access logging significantly. Entries to "access.log"
1681 are written when the client connection closes. Every connection
1682 is logged exactly once, always with a valid size.
2cf0aa81 1683 - Changed access log format (non-common) to include request
1684 method and sub-second timestamps.
234967c9 1685 - Changed handing of ECONNRESET (connection reset) errors.
1686 Now treated like any other read error.
1687 - Changed 'rotate logs' to be activated by SIGUSR1.
1688 - Changed configure script to look specifically for tm_gmtoff
1689 and set HAVE_TM_GMTOFF.
1690 - Changed configure script to look specifically extended mallinfo
1691 structure and set HAVE_EXT_MALLINFO
1692 - Changed ICP reply code to use negative TTL value as UDP_HIT
1693 threshold so we never return a HIT on neg-cached objects.
1694 - Changed ftpget to use select(2) on I/O for timeouts. ftpget
cdd8d814 1695 now exits immediately if stdin goes away.
234967c9 1696 - Changed handling of '-z' option. Now only execute 'rm -rf ...' if
1697 -U option also given.
1698 - Removed the command line -d (debug) option. Use 'debug_options'
1699 in config file.
1700 - Removed all code and references to binary port.
1701 - Removed dual logging to stderr/cache.log.
1702 - Removed old IP access controls ('proxy_allow', etc.)