+Changes to squid-3.4.8 (15 Sep 2014):
+
+ - Fix off by one in SNMP subsystem
+ - pinger: Fix various ICMP handling issues
+
Changes to squid-3.4.7 (28 Aug 2014):
- Regression Fix: Kerberos LDAP authorizing groups with principle subdomain
-AC_INIT([Squid Web Proxy],[3.4.7-BZR],[http://bugs.squid-cache.org/],[squid])
+AC_INIT([Squid Web Proxy],[3.4.8-BZR],[http://bugs.squid-cache.org/],[squid])
AC_PREREQ(2.61)
AC_CONFIG_HEADERS([include/autoconf.h])
AC_CONFIG_AUX_DIR(cfgaux)
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="LinuxDoc-Tools 0.9.69">
- <TITLE>Squid 3.4.7 release notes</TITLE>
+ <TITLE>Squid 3.4.8 release notes</TITLE>
</HEAD>
<BODY>
-<H1>Squid 3.4.7 release notes</H1>
+<H1>Squid 3.4.8 release notes</H1>
<H2>Squid Developers</H2>
<HR>
<HR>
<H2><A NAME="s1">1.</A> <A HREF="#toc1">Notice</A></H2>
-<P>The Squid Team are pleased to announce the release of Squid-3.4.7 for testing.</P>
+<P>The Squid Team are pleased to announce the release of Squid-3.4.8 for testing.</P>
<P>This new release is available for download from
<A HREF="http://www.squid-cache.org/Versions/v3/3.4/">http://www.squid-cache.org/Versions/v3/3.4/</A> or the
<A HREF="http://www.squid-cache.org/Mirrors/http-mirrors.html">mirrors</A>.</P>
<!doctype linuxdoc system>
<article>
-<title>Squid 3.4.7 release notes</title>
+<title>Squid 3.4.8 release notes</title>
<author>Squid Developers</author>
<abstract>
<sect>Notice
<p>
-The Squid Team are pleased to announce the release of Squid-3.4.7 for testing.
+The Squid Team are pleased to announce the release of Squid-3.4.8 for testing.
This new release is available for download from <url url="http://www.squid-cache.org/Versions/v3/3.4/"> or the
<url url="http://www.squid-cache.org/Mirrors/http-mirrors.html" name="mirrors">.
NAME: ignore_ims_on_miss
TYPE: obsolete
DOC_START
- Remove this line. The HTTP/1.1 feature is now fully supported by default.
+ Remove this line. The HTTP/1.1 feature is now configured by 'cache_miss_revalidate'.
DOC_END
# Options Removed in 3.2
downloads.
When the user aborts a request, Squid will check the
- quick_abort values to the amount of data transfered until
+ quick_abort values to the amount of data transferred until
then.
If the transfer has less than 'quick_abort_min' KB remaining,
DEFAULT: on
LOC: Config.onoff.cache_miss_revalidate
DOC_START
- Whether Squid on cache MISS will pass client revalidation requests
- to the server or tries to fetch new content for caching.
- This is useful while the cache is mostly empty to more quickly
- have the cache populated.
+ RFC 7232 defines a conditional request mechanism to prevent
+ response objects being unnecessarily transferred over the network.
+ If that mechanism is used by the client and a cache MISS occurs
+ it can prevent new cache entries being created.
+
+ This option determines whether Squid on cache MISS will pass the
+ client revalidation request to the server or tries to fetch new
+ content for caching. It can be useful while the cache is mostly
+ empty to more quickly have the cache populated by generating
+ non-conditional GETs.
When set to 'on' (default), Squid will pass all client If-* headers
- to the server.
+ to the server. This permits server responses without a cacheable
+ payload to be delivered and on MISS no new cache entry is created.
When set to 'off' and if the request is cacheable, Squid will
remove the clients If-Modified-Since and If-None-Match headers from
- the request sent to the server.
+ the request sent to the server. This requests a 200 status response
+ from the server to create a new cache entry with.
DOC_END
NAME: always_direct
if (!request->flags.accelerated && !request->flags.intercepted) {
httpHeaderPutStrf(hdr, HDR_PROXY_SUPPORT, "Session-Based-Authentication");
/*
- We send "[Proxy-]Connection: Proxy-Support" header to mark
+ We send "Connection: Proxy-Support" header to mark
Proxy-Support as a hop-by-hop header for intermediaries that do not
understand the semantics of this header. The RFC should have included
this recommendation.