From: SquidAdm Date: Sun, 5 Nov 2023 12:20:15 +0000 (+0000) Subject: 6.5 X-Git-Tag: SQUID_6_5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03c8a93e863f873b5d6ff45adb786db447cabcd6;p=thirdparty%2Fsquid.git 6.5 --- diff --git a/ChangeLog b/ChangeLog index be5136f15a..96e2ee5a6b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Changes in squid-6.5 (5 Nov 2023): + + - Bug 5309: frequent "lowestOffset () <= target_offset" assertion + - Bug 4977: Remove mem_hdr::freeDataUpto() assertion + - Fix handling of expanding HTTP header values + - Fix RFC 1123 date parsing + - Gracefully shutdown when helper process startup fails + Changes in squid-6.4 (22 Oct 2023): - Regression: Restore support for legacy cache_object cache manager requests diff --git a/configure.ac b/configure.ac index 7bb1102869..412d6b1cfe 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ ## Please see the COPYING and CONTRIBUTORS files for details. ## -AC_INIT([Squid Web Proxy],[6.4-VCS],[https://bugs.squid-cache.org/],[squid]) +AC_INIT([Squid Web Proxy],[6.5-VCS],[https://bugs.squid-cache.org/],[squid]) AC_PREREQ(2.61) AC_CONFIG_HEADERS([include/autoconf.h]) AC_CONFIG_AUX_DIR(cfgaux) diff --git a/src/mem/old_api.cc b/src/mem/old_api.cc index 2524b016d7..8cf5d7268b 100644 --- a/src/mem/old_api.cc +++ b/src/mem/old_api.cc @@ -414,7 +414,7 @@ memConfigure(void) new_pool_limit = Config.MemPools.limit; else { if (Config.MemPools.limit == 0) - debugs(13, DBG_IMPORTANT, "memory_pools_limit 0 has been chagned to memory_pools_limit none. Please update your config"); + debugs(13, DBG_IMPORTANT, "memory_pools_limit 0 has been changed to memory_pools_limit none. Please update your config"); new_pool_limit = -1; }