Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 7.6.1 #4225

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AC_COPYRIGHT([Copyright (c) 2006 Verdens Gang AS
Copyright (c) 2006-2024 Varnish Software
Copyright 2010-2024 UPLEX - Nils Goroll Systemoptimierung])
AC_REVISION([$Id$])
AC_INIT([Varnish], [7.6.0], [varnish-dev@varnish-cache.org])
AC_INIT([Varnish], [7.6.1], [varnish-dev@varnish-cache.org])
AC_CONFIG_SRCDIR(include/miniobj.h)
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
24 changes: 24 additions & 0 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,30 @@ http://varnish-cache.org/docs/trunk/whats-new/index.html and via
individual releases. These documents are updated as part of the
release process.

================================
Varnish Cache 7.6.1 (2024-11-08)
================================

* Fixed a bug introduced in 7.6.0 that could trigger a panic when using dynamic
backends (4183_).

* Resolved a race condition that caused Varnish to exceed the connection limit
set to a backend with the `.max_connections` attribute (4154_).

* Fixed an assertion that was added in 7.6.0 and that could lead to a panic in
the waiter code under certain conditions (4204_).

* Removed an assertion on the pid value of varnishd that could trigger a panic in
container environments.

* Added attempt to raise RLIMIT_MEMLOCK to infinity on startup and improved logging
for VSM mlock() errors. (4193_)

.. _4183: https://github.com/varnishcache/varnish-cache/issues/4183
.. _4154: https://github.com/varnishcache/varnish-cache/pull/4154
.. _4204: https://github.com/varnishcache/varnish-cache/issues/4204
.. _4193: https://github.com/varnishcache/varnish-cache/issues/4193

================================
Varnish Cache 7.6.0 (2024-09-13)
================================
Expand Down