Commit 3be02287 authored by Geoff Simmons's avatar Geoff Simmons

Update compatibility statement with RE2 versions (through 2017-11-01).

parent 5cc344e0
Pipeline #395 skipped
......@@ -304,9 +304,9 @@ CONTENTS
========
* regex(STRING, BOOL, BOOL, BOOL, INT, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL)
* BOOL match(STRING, STRING, BOOL, BOOL, BOOL, INT, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL)
* STRING backref(INT, STRING)
* STRING namedref(STRING, STRING)
* BOOL match(PRIV_TASK, STRING, STRING, BOOL, BOOL, BOOL, INT, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL)
* STRING backref(PRIV_TASK, INT, STRING)
* STRING namedref(PRIV_TASK, STRING, STRING)
* STRING sub(STRING, STRING, STRING, STRING, BOOL, BOOL, BOOL, INT, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL)
* STRING suball(STRING, STRING, STRING, STRING, BOOL, BOOL, BOOL, INT, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL)
* STRING extract(STRING, STRING, STRING, STRING, BOOL, BOOL, BOOL, INT, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL, BOOL)
......@@ -582,7 +582,7 @@ match
::
BOOL match(STRING pattern, STRING subject, BOOL utf8=0, BOOL posix_syntax=0, BOOL longest_match=0, INT max_mem=8388608, BOOL literal=0, BOOL never_nl=0, BOOL dot_nl=0, BOOL never_capture=0, BOOL case_sensitive=1, BOOL perl_classes=0, BOOL word_boundary=0, BOOL one_line=0)
BOOL match(PRIV_TASK, STRING pattern, STRING subject, BOOL utf8=0, BOOL posix_syntax=0, BOOL longest_match=0, INT max_mem=8388608, BOOL literal=0, BOOL never_nl=0, BOOL dot_nl=0, BOOL never_capture=0, BOOL case_sensitive=1, BOOL perl_classes=0, BOOL word_boundary=0, BOOL one_line=0)
Like the ``regex.match()`` method, return ``true`` if ``pattern``
matches ``subject``, where ``pattern`` is compiled with the given
......@@ -605,7 +605,7 @@ backref
::
STRING backref(INT ref, STRING fallback="**BACKREF FUNCTION FAILED**")
STRING backref(PRIV_TASK, INT ref, STRING fallback="**BACKREF FUNCTION FAILED**")
Returns the `nth` captured subexpression from the most recent
successful call of the ``match()`` function in the current client or
......@@ -644,7 +644,7 @@ namedref
::
STRING namedref(STRING name, STRING fallback="**NAMEDREF FUNCTION FAILED**")
STRING namedref(PRIV_TASK, STRING name, STRING fallback="**NAMEDREF FUNCTION FAILED**")
Returns the captured subexpression designated by ``name`` from the
most recent successful call to the ``match()`` function in the current
......@@ -1344,7 +1344,7 @@ The VMOD requires Varnish version 5.2. See the source repository for
versions of the VMOD that are compatible with other Varnish versions.
It requires the RE2 library, and has been tested against RE2 versions
since 2015-06-01.
2015-06-01 through 2017-11-01.
INSTALLATION
============
......
......@@ -213,7 +213,7 @@ client c1 {
logexpect l1 -wait
varnish v1 -vcl {
import ${vmod_re2};
import re2 from "${vmod_topbuild}/src/.libs/libvmod_re2.so";
backend be { .host = "${bad_ip}"; }
sub vcl_init {
......
......@@ -3,7 +3,7 @@
varnishtest "set.sub() method"
varnish v1 -vcl {
import ${vmod_re2};
import re2 from "${vmod_topbuild}/src/.libs/libvmod_re2.so";
backend be { .host = "${bad_ip}"; }
sub vcl_init {
......
......@@ -1187,7 +1187,7 @@ The VMOD requires Varnish version 5.2. See the source repository for
versions of the VMOD that are compatible with other Varnish versions.
It requires the RE2 library, and has been tested against RE2 versions
since 2015-06-01.
2015-06-01 through 2017-11-01.
INSTALLATION
============
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment