From: Amos Jeffries Date: Wed, 25 Jun 2014 14:40:30 +0000 (-0700) Subject: 3.4.6 X-Git-Tag: SQUID_3_4_6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdea7ccb43f2fcafaccf9f8d6c9e0ba0ff817686;p=thirdparty%2Fsquid.git 3.4.6 --- diff --git a/ChangeLog b/ChangeLog index d1a264ea99..0f41cace35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Changes to squid-3.4.6 (25 Jun 2014): + + - Regression: segmentation fault logging with %tg format specifier + - Bug 4065: round-robin neighbor selection with unequal weights + - Bug 4056: assertion MemPools[type] from netdbExchangeStart() + - Bug 4050: segmentation fault in CommSelectEngine::checkEvents on helper response + - Fix segmentation fault setting up server SSL connnection + - Fix hanging Non-HTTPS connections on SSL-bump enabled port + - Fix Cache Manager actions listed more than once + - ... and many minor memory leaks + - ... and several portability build issues + - ... and some documentation updates + Changes to squid-3.4.5 (02 May 2014): - Regression Bug 4051: inverted test on CONNECT payload existence diff --git a/configure.ac b/configure.ac index 573c4f07e6..f0297cefde 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([Squid Web Proxy],[3.4.5-BZR],[http://bugs.squid-cache.org/],[squid]) +AC_INIT([Squid Web Proxy],[3.4.6-BZR],[http://bugs.squid-cache.org/],[squid]) AC_PREREQ(2.61) AC_CONFIG_HEADERS([include/autoconf.h]) AC_CONFIG_AUX_DIR(cfgaux) diff --git a/doc/release-notes/release-3.4.sgml b/doc/release-notes/release-3.4.sgml index cd2310070b..fb57eeea0c 100644 --- a/doc/release-notes/release-3.4.sgml +++ b/doc/release-notes/release-3.4.sgml @@ -1,6 +1,6 @@
-Squid 3.4.5 release notes +Squid 3.4.6 release notes Squid Developers @@ -13,7 +13,7 @@ for Applied Network Research and members of the Web Caching community. Notice

-The Squid Team are pleased to announce the release of Squid-3.4.5 for testing. +The Squid Team are pleased to announce the release of Squid-3.4.6 for testing. This new release is available for download from or the . diff --git a/src/http/StatusCode.h b/src/http/StatusCode.h index 904c13e620..349b1ed82a 100644 --- a/src/http/StatusCode.h +++ b/src/http/StatusCode.h @@ -31,7 +31,7 @@ typedef enum { scNotModified = 304, scUseProxy = 305, scTemporaryRedirect = 307, - scPermanentRedirect = 308, /**< RFC-reschke-http-status-308-07 */ + scPermanentRedirect = 308, /**< RFC7238 */ scBadRequest = 400, scUnauthorized = 401, scPaymentRequired = 402, diff --git a/src/main.cc b/src/main.cc index 59825577c6..c3c5551661 100644 --- a/src/main.cc +++ b/src/main.cc @@ -296,7 +296,11 @@ usage(void) #if USE_WIN32_SERVICE " -i Installs as a Windows Service (see -n option).\n" #endif - " -k reconfigure|rotate|shutdown|interrupt|kill|debug|check|parse\n" + " -k reconfigure|rotate|shutdown|" +#ifdef SIGTTIN + "restart|" +#endif + "interrupt|kill|debug|check|parse\n" " Parse configuration file, then send signal to \n" " running copy (except -k parse) and exit.\n" #if USE_WIN32_SERVICE