]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Bump statistics channels versions
authorMichał Kępień <michal@isc.org>
Fri, 3 Feb 2023 08:38:25 +0000 (09:38 +0100)
committerMichał Kępień <michal@isc.org>
Fri, 3 Feb 2023 08:38:25 +0000 (09:38 +0100)
GL !7412 updated the set of counters exposed via the XML & JSON
statistics channels.  Apply a corresponding version bump, which was
not included in that merge request.

bin/named/bind9.xsl
bin/named/statschannel.c

index d57338b4f910c0520e49bb6c3f6620aca69723e5..f86bf871412b7b770427705315af8f932c62bda8 100644 (file)
@@ -15,7 +15,7 @@
   <xsl:output method="html" indent="yes" version="4.0"/>
   <!-- the version number **below** must match version in bin/named/statschannel.c -->
   <!-- don't forget to update "/xml/v<STATS_XML_VERSION_MAJOR>" in the HTTP endpoints listed below -->
-  <xsl:template match="statistics[@version=&quot;3.13&quot;]">
+  <xsl:template match="statistics[@version=&quot;3.14&quot;]">
     <html>
       <head>
         <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
index 4f45b1be300a9c37821f382dabbbe4ac0951f0c8..acf45e5bc7e0b3cbfc5a726623f91bc3d121c783 100644 (file)
 #include "xsl_p.h"
 
 #define STATS_XML_VERSION_MAJOR "3"
-#define STATS_XML_VERSION_MINOR "13"
+#define STATS_XML_VERSION_MINOR "14"
 #define STATS_XML_VERSION      STATS_XML_VERSION_MAJOR "." STATS_XML_VERSION_MINOR
 
 #define STATS_JSON_VERSION_MAJOR "1"
-#define STATS_JSON_VERSION_MINOR "7"
+#define STATS_JSON_VERSION_MINOR "8"
 #define STATS_JSON_VERSION      STATS_JSON_VERSION_MAJOR "." STATS_JSON_VERSION_MINOR
 
 #define CHECK(m)                               \