[master] 2adcd88 Update

Federico G. Schwindt fgsch at lodoss.net
Mon Mar 13 12:12:06 CET 2017


commit 2adcd88f214c0735dfb91f241bb02c532bc5e473
Author: Federico G. Schwindt <fgsch at lodoss.net>
Date:   Mon Mar 13 11:10:49 2017 +0000

    Update

diff --git a/doc/changes.rst b/doc/changes.rst
index dcc5cd2..1406c17 100644
--- a/doc/changes.rst
+++ b/doc/changes.rst
@@ -5,7 +5,7 @@ Varnish Cache 5.1.0 (unreleased)
 * Added varnishd command-line options -I, -x and -?, and tightened
   restrictions on permitted combinations of options.
 
-* More progess on support for HTTP/2.
+* More progress on support for HTTP/2.
 
 * Add ``return(fail)`` to almost all VCL subroutines.
 
@@ -58,6 +58,8 @@ Varnish Cache 5.1.0 (unreleased)
 
 * DURATION types may be used in boolean contexts.
 
+* INT, DURATION and REAL values can now be negative.
+
 * Response codes 1000 or greater may now be set in VCL internally.
   resp.status is delivered modulo 1000 in client responses.
 
@@ -71,7 +73,7 @@ Varnish Cache 5.1.0 (unreleased)
 
 * req.ttl is deprecated.
 
-* Added std.getenv() and std.late_100_continue(BOOL).
+* Added std.getenv() and std.late_100_continue().
 
 * The fetch_failed stat is incremented for any kind of fetch failure.
 
diff --git a/doc/sphinx/whats-new/upgrading-5.1.rst b/doc/sphinx/whats-new/upgrading-5.1.rst
index 98e4425..2accfdc 100644
--- a/doc/sphinx/whats-new/upgrading-5.1.rst
+++ b/doc/sphinx/whats-new/upgrading-5.1.rst
@@ -127,6 +127,8 @@ Other notes on data types:
   false when the duration is less than or equal to zero, true
   otherwise.
 
+* INT, DURATION and REAL values can now be negative.
+
 Response codes
 ~~~~~~~~~~~~~~
 
@@ -214,12 +216,12 @@ Now ``beresp.storage`` is initialized with a storage backend before
 ``beresp.storage`` after its execution will be used. The configured
 nuke limit is used in all cases.
 
-VMOD std
+vmod_std
 ~~~~~~~~
 
 * Added ``std.getenv()``, see :ref:`func_getenv`.
 
-* Added ``std.late_100_continue(BOOL)``, see :ref:`func_late_100_continue`.
+* Added ``std.late_100_continue()``, see :ref:`func_late_100_continue`.
 
 Other changes
 =============
diff --git a/include/tbl/vsc_f_main.h b/include/tbl/vsc_f_main.h
index fd26c19..206cd03 100644
--- a/include/tbl/vsc_f_main.h
+++ b/include/tbl/vsc_f_main.h
@@ -574,7 +574,7 @@ VSC_FF(bans_lurker_tests_tested,	uint64_t, 0, 'c', 'i', diag,
     "Ban tests tested against objects (lurker)",
 	"Count of how many tests and objects have been tested against"
 	" each other by the ban-lurker."
-	"  'ban req.url == foo && req.http.host == bar'"
+	" 'ban req.url == foo && req.http.host == bar'"
 	" counts as one in 'bans_tested' and as two in 'bans_tests_tested'"
 )
 



More information about the varnish-commit mailing list