Skip to content

Commit

Permalink
6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
squidadm authored and yadij committed Nov 6, 2023
1 parent 2f3efe5 commit 03c8a93
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/mem/old_api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 03c8a93

Please sign in to comment.