Note: the b14 -> b15 change will loose your cache unless you take
the steps on http://squid.nlanr.net/ to recover it.
Read the Changelog for details, this is a fairly large update.
Major changes:
- the URL and SHA cache key methods are gone, MD5 is the only option.
- the swap.state system has been redesigned as a transaction log for
much faster restarts and crash recovery.
- SIZE on ftp binary transfers.
- Lots of bug fixes and code cleanups.
From the web page; http://squid.nlanr.net/Squid/1.2.beta/
WARNING, with beta12 we are starting to stuff object metadata into
the beginning of objects on disk. With beta13 we have changed the
"swap.state" file format to binary instead of text. When you run this
version for the first time you WILL LOSE YOUR CACHE!
The previous warning still stands:
This is BETA software. Do not run this on your production systems.
Logfile formats are subject (and likely) to change at any time without
warning.
Index: like posix says, rather than going into dummy mode. The distributed
patches are generated with standard cvs and don't have ache's hack (which
doesn't work when new files are added anyway).
"We are currently in a beta-test period for Squid-1.2. If you like
seeing Squid coredump frequently, please join us!"
"This is BETA software. Do not run this on your production systems.
Logfile formats are subject (and likely) to change at any time without
warning.
Here is a brief list of the major features of this version:
HTTP/1.1 persisitent connections.
Lower VM usage; in-transit objects are not held fully in memory.
Totally independent swap directories.
Customizable error texts.
FTP supported internally; no more ftpget.
Asynchronous disk operations (optional, requires pthreads library).
Internal icons for FTP and gopher directories.
snprintf() used everywhere instead of sprintf().
...and many more!
"
As well, there is support for using MD5 or SHA hashes of URL's in the
cache index for space (and speed?) savings, SNMP support, poll(2) is
used by default, etc.
Please see http://squid.nlanr.net/Squid/1.2.beta/ before using.
slowdown problem.
Note, I've changed the DIST_SUBDIR.. all the patches files seem to be
called "fixes.patch" and were colliding with each other.
Reviewed by:
Submitted by:
Obtained from:
Note: the patch file on the web site has several problems.. First, it
doesn't apply, and second, it bogusly changes the version. It also
introduces some problems for FreeBSD where the author missed the point of
a fix I sent back. :-(
- POST didn't work if there were null characters (strncpy vs. memcpy)
- defensive measures to try and stop "HELP! IP cache overflowing"
- warn when forced to do blocking gethostbyxxxx() calls
- fix some coredumps and other problems
Reviewed by:
Submitted by:
Obtained from:
Note, there are a few important changes to the squid.conf file,
be sure to read the ChangeLog file for the details. Some names
have been renamed, and a new option needs to be specified if squid
is run as root - it needs to know what uid to change to, it won't run
as root by default. This may require changes to the port to create a
user or something.
Among the changes are some patches submitted to the maintainers by
yours truly to improve the password support in cachemgr.cgi. It also
reports the resource "maxrss" correctly for what it is.
The distributed patches to 1.1.4:
* ftpget.c.patch: Changes the default MIME type to
"application/octet-stream" and fixes directory listings from
NetWare servers.
* icp.c.patch: Fixes "Unknown status reply from server: 0!" error
messages in Netscape.
* ipcache.c.patch: Fixes ipcache_dnsHandleRead() coredumps.
* neighbors.c.patch: Fixes BIT_SET/BIT_TEST typo in
getDefaultParent().
Reviewed by:
Submitted by:
Obtained from:
- Fixed announcement bug. Announcements were always off unless
a file was specified.
- Fixed wrong number of args to examine_select() debug.
- Fixed null-string content-type
- Don't cache replies with 'Set-Cookie:' headers.
- Fixed bug when client issues IMS, Squid has stale object and
Squid's lastmod time is greater than the client IMS time.
A 304 reply would be appropriate for Squid, but not the client
(diagnosed by Mark Treacy).
- Fixed httpBuildRequestHeader() content length bug which breaks for
really large POST requests (Takahiro Yugawa).
- Fixed 'passthrough_proxy' to pick up port number from list of
neighbors.
- Ensure pid file is world-readable if umask is set otherwise
(Doug Urner).
- Collect statistics on a few more HTTP headers.
Reviewed by:
Submitted by:
Obtained from:
This fixes some small bugs, including a CR/LF problem and (I think) two
problems with aborting. The author has hinted that this might be the last
beta before 1.1.0.
Among the changes:
- remove patch-aa, it's now in the standard distribution
- checks for libgnumalloc for <= FreeBSD-2.1.x systems to avoid the
nasty libc malloc problems.
- more useful data in the logs
- support for poll() syscall with unlimited number of file descriptors
if present instead of select()'s restrictions.
(Standard FreeBSD doesn't yet have poll()..)
- the usual bug fixes