aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2020-03-03 08:55:40 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2020-03-03 08:57:29 +0200
commitbe960ccd030ba4091338604e7d6b1b120ab2da7c (patch)
tree513f353154c97c095c0d1659ed3c31acf185c84c
parent45f329477f5bc8b2259cf11b489095ac94b0a813 (diff)
downloadvmod-dbrw-be960ccd030ba4091338604e7d6b1b120ab2da7c.tar.gz
vmod-dbrw-be960ccd030ba4091338604e7d6b1b120ab2da7c.tar.bz2
Support for Varnish 6.3.1v2.6
-rw-r--r--NEWS7
-rw-r--r--configure.ac6
-rw-r--r--doc/vmod-dbrw.36
-rw-r--r--doc/vmod-dbrw.texi2
-rw-r--r--src/vmod_dbrw.c4
-rw-r--r--src/vmod_dbrw.vcc4
6 files changed, 17 insertions, 12 deletions
diff --git a/NEWS b/NEWS
index 06d58b3..d7d5f09 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
-vmod-dbrw -- history of user-visible changes. 2019-02-15
+vmod-dbrw -- history of user-visible changes. 2020-03-03
See the end of file for copying conditions.
Please send vmod-dbrw bug reports to <gray@gnu.org>
+Version 2.6, 2020-03-03
+
+* Builds with Varnish 6.3.1
+
+
Version 2.5, 2019-02-15
* req.http.X-VMOD-DBRW-Error
diff --git a/configure.ac b/configure.ac
index b226b87..b9b0845 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# This file is part of vmod-dbrw -*- autoconf -*-
-# Copyright (C) 2013-2019 Sergey Poznyakoff
+# Copyright (C) 2013-2020 Sergey Poznyakoff
#
# Vmod-dbrw is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with vmod-dbrw. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.69)
-AC_INIT([vmod-dbrw], 2.5, [gray@gnu.org])
+AC_INIT([vmod-dbrw], 2.6, [gray@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_dbrw.vcc)
@@ -43,7 +43,7 @@ AC_PROG_MAKE_SET
AC_HEADER_STDC
AC_CHECK_HEADERS([sys/stdlib.h])
-AM_VARNISHAPI([4.1],[6.0.2])
+AM_VARNISHAPI([4.1],[6.3.1])
AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
[Varnish API major version number])
diff --git a/doc/vmod-dbrw.3 b/doc/vmod-dbrw.3
index 67aad5f..074565a 100644
--- a/doc/vmod-dbrw.3
+++ b/doc/vmod-dbrw.3
@@ -1,5 +1,5 @@
.\" This file is part of Vmod-dbrw -*- nroff -*-
-.\" Copyright (C) 2013-2018 Sergey Poznyakoff
+.\" Copyright (C) 2013-2020 Sergey Poznyakoff
.\"
.\" Vmod-dbrw is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
@@ -13,7 +13,7 @@
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with vmod-dbrw. If not, see <http://www.gnu.org/licenses/>.
-.TH VMOD-DBRW 3 "February 13, 2019" "VMOD-DBRW" "User Reference"
+.TH VMOD-DBRW 3 "March 3, 2020" "VMOD-DBRW" "User Reference"
.SH NAME
vmod-dbrw \- Database-driven rewrite rules for Varnish Cache
.SH SYNOPSIS
@@ -318,7 +318,7 @@ sub vcl_synth {
.\" for man-based doc pages.
.if "\V[MANCGI]"WEBDOC" \{\
. ds package vmod-dbrw
-. ds version 2.5
+. ds version 2.6
. so download.inc
\}
.SH "SEE ALSO"
diff --git a/doc/vmod-dbrw.texi b/doc/vmod-dbrw.texi
index 6a987ed..200ca0d 100644
--- a/doc/vmod-dbrw.texi
+++ b/doc/vmod-dbrw.texi
@@ -30,7 +30,7 @@ Published by the Free Software Foundation,
51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301 USA
-Copyright @copyright{} 2013-2018 Sergey Poznyakoff
+Copyright @copyright{} 2013-2020 Sergey Poznyakoff
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
diff --git a/src/vmod_dbrw.c b/src/vmod_dbrw.c
index beeb9af..4f48113 100644
--- a/src/vmod_dbrw.c
+++ b/src/vmod_dbrw.c
@@ -1,5 +1,5 @@
/* This file is part of vmod-dbrw
- Copyright (C) 2013-2019 Sergey Poznyakoff
+ Copyright (C) 2013-2020 Sergey Poznyakoff
Vmod-dbrw is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -121,7 +121,7 @@ disconnect(void)
}
int
-dbrw_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
+vmod_dbrw_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
{
switch (e) {
case VCL_EVENT_LOAD:
diff --git a/src/vmod_dbrw.vcc b/src/vmod_dbrw.vcc
index 9a15af1..479ca66 100644
--- a/src/vmod_dbrw.vcc
+++ b/src/vmod_dbrw.vcc
@@ -1,5 +1,5 @@
# This file is part of vmod-dbrw
-# Copyright (C) 2013-2016 Sergey Poznyakoff
+# Copyright (C) 2013-2020 Sergey Poznyakoff
#
# Vmod-dbrw is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with vmod-dbrw. If not, see <http://www.gnu.org/licenses/>.
-$Module dbrw 3 Database-driven rewrite rules for Varnish Cache
+$Module dbrw 3 "Database-driven rewrite rules for Varnish Cache"
COLOPHON
========

Return to:

Send suggestions and report system problems to the System administrator.