varnish-cache:6.1

Last commit made on 2020-10-31
Get this branch:
git clone -b 6.1 https://git.launchpad.net/varnish-cache

Branch merges

Branch information

Name:
6.1
Repository:
lp:varnish-cache

Recent commits

f326a87... by Poul-Henning Kamp <email address hidden>

Make this compile with modern CLANG

2f23870... by Guillaume Quintard <email address hidden>

Fix gensequences for BusyBox awk

I never thought that I'd have to fix a string concatenation problem in
a BusyBox awk program to generate VT100 code in a container, but here we
are:

echo | awk 'END {print "foo" "" ++a, "foo" ++a}'

should output "foo0 foo1", and for all the ?awk I tested, it does,
except for BusyBox awk who thought funny to output "0 foo1", breaking the
teken_state.h file.

efc2f6c... by Nils Goroll <email address hidden>

fix vmod object constructor documentation

The vmod name got lost in e7c0497404a5b4aadda71aead3b0e7fe946d6993

example before/after diff:

- new xshard_param = shard_param()
+ new xshard_param = directors.shard_param()

93212f7... by =?utf-8?q?P=C3=A5l_Hermunn_Johansen?= <email address hidden>

Prepare for 6.1.1

acefd09... by =?utf-8?q?P=C3=A5l_Hermunn_Johansen?= <email address hidden>

Fixup previous commit

a3e0902... by =?utf-8?q?P=C3=A5l_Hermunn_Johansen?= <email address hidden>

Change log entries for 6.1.1

This should add changes that were not already added by previous
commits.

391394a... by Poul-Henning Kamp <email address hidden>

Also look for versioned rst2man scripts

48a3b8d... by Poul-Henning Kamp <email address hidden>

Hunt for py-specific variants of sphinx-build program

3fdf117... by Nils Goroll <email address hidden>

use monotonic time for the watchdog

2e336c0... by Nils Goroll <email address hidden>

keep the dog in the kennel unless there's a queue

As long as we are not queuing any threads, there is no queue to
move. We record the queue marker the first time we notice queuing and
only then see if it doesn't move.

Fixes #2794