This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via 4b25f1d86dcea9d4fab3590294e5346c399b22ab (commit) via 9e1f2150dfdb499f9d964501e023e9e5c2629a18 (commit) via d3d2261c65f9c2399f3c1ec64b161fe799bf26ed (commit) via 5e99660d7d16b91914ecf1742c8302b3f6b8b2c4 (commit) via 6239e587f047e6d1f73ede8c7562b5ec6b26815d (commit) from de6fd0881fbc2d86be7ee7d51f56602751817eee (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 4b25f1d86dcea9d4fab3590294e5346c399b22ab Author: Matthias Fischer matthias.fischer@ipfire.org Date: Sun Jun 20 14:18:13 2021 +0200
nano: Update to 5.8
For details see: https://www.nano-editor.org/news.php
Signed-off-by: Matthias Fischer matthias.fischer@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 9e1f2150dfdb499f9d964501e023e9e5c2629a18 Author: Matthias Fischer matthias.fischer@ipfire.org Date: Sun Jun 20 14:15:20 2021 +0200
knot: Update to 3.0.7
For details see: https://www.knot-dns.cz/2021-06-16-version-307.html
Features:
knotd: new configuration policy option for CDS digest algorithm setting #738 keymgr: new command for primary SOA serial manipulation in on-secondary signing mode
Improvements:
knotd: improved algorithm rollover to shorten the last step of old RRSIG publication
Bugfixes:
knotd: zone is flushed upon server start, despite DNSSEC signing is up-to-date knotd: wildcard nonexistence is proved on empty-non-terminal query knotd: redundant wildcard proof for non-authoritative data in a reply knotd: missing wildcard proofs in a wildcard-cname loop reply knotd: incorrectly synthesized CNAME owner from a wildcard record #715 knotd: zone-in-journal changeset ignores journal-max-usage limit #736 knotd: incorrect processing of zone-in-journal changeset with SOA serial 0 knotd: broken initialization of processing workers if SO_REUSEPORT(_LB) not available kjournalprint: reported journal usage is incorrect #736 keymgr: cannot parse algorithm name ed448 #739 keymgr: default key size not set properly kdig: failed to process huge DoH responses libknot/probe: some corner-case bugs
Signed-off-by: Matthias Fischer matthias.fischer@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit d3d2261c65f9c2399f3c1ec64b161fe799bf26ed Author: Peter Müller peter.mueller@ipfire.org Date: Sun Jun 20 12:49:17 2021 +0200
Tor: update to 0.4.6.5
Please refer to the .tar.gz's ReleaseNote file for the full changelog since version 0.4.5.8; it is too large to include it here.
Signed-off-by: Peter Müller peter.mueller@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 5e99660d7d16b91914ecf1742c8302b3f6b8b2c4 Author: Stefan Schantl stefan.schantl@ipfire.org Date: Sat Jun 19 16:03:14 2021 +0200
speed.cgi: Add requirement for general-functions.pl.
The CGI now requires the general-functions library, because the get_red_interface() function is used.
Signed-off-by: Stefan Schantl stefan.schantl@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 6239e587f047e6d1f73ede8c7562b5ec6b26815d Author: Stefan Schantl stefan.schantl@ipfire.org Date: Sat Jun 19 15:52:34 2021 +0200
memory.cgi: Fix missing qoutes.
Signed-off-by: Stefan Schantl stefan.schantl@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: html/cgi-bin/memory.cgi | 2 +- html/cgi-bin/speed.cgi | 2 ++ lfs/knot | 4 ++-- lfs/nano | 8 ++++---- lfs/tor | 6 +++--- 5 files changed, 12 insertions(+), 10 deletions(-)
Difference in files: diff --git a/html/cgi-bin/memory.cgi b/html/cgi-bin/memory.cgi index dea7e3668..441b1d4e7 100644 --- a/html/cgi-bin/memory.cgi +++ b/html/cgi-bin/memory.cgi @@ -56,7 +56,7 @@ if ( $querry[0] =~ "memory"){ &Graphs::makegraphbox("memory.cgi","memory","day"); &Header::closebox();
- if (-f $mainsettings{'RRDLOG'}/collectd/localhost/swap) { + if (-f "$mainsettings{'RRDLOG'}/collectd/localhost/swap") { &Header::openbox('100%', 'center', "Swap $Lang::tr{'graph'}"); &Graphs::makegraphbox("memory.cgi","swap","day"); &Header::closebox(); diff --git a/html/cgi-bin/speed.cgi b/html/cgi-bin/speed.cgi index 8acdb2bd8..b550fda52 100644 --- a/html/cgi-bin/speed.cgi +++ b/html/cgi-bin/speed.cgi @@ -19,6 +19,8 @@ # # ###############################################################################
+require '/var/ipfire/general-functions.pl'; + my $data_last = $ENV{'QUERY_STRING'}; my $rxb_last = 0; my $txb_last = 0; diff --git a/lfs/knot b/lfs/knot index ec6ec4deb..7e8bbc202 100644 --- a/lfs/knot +++ b/lfs/knot @@ -24,7 +24,7 @@
include Config
-VER = 3.0.6 +VER = 3.0.7
THISAPP = knot-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 0d8aaa8e5214623c12123c67b5f2c460 +$(DL_FILE)_MD5 = a7ac9e92989184437a45578d0e23990a
install : $(TARGET)
diff --git a/lfs/nano b/lfs/nano index 70d605601..3bb7806aa 100644 --- a/lfs/nano +++ b/lfs/nano @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2020 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2021 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@
include Config
-VER = 5.7 +VER = 5.8
THISAPP = nano-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nano -PAK_VER = 37 +PAK_VER = 38
DEPS = ""
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = c2d6540a33248edc31a5830861b4b4ea +$(DL_FILE)_MD5 = d2249e3dd108c830df00efd7c1b79d86
install : $(TARGET)
diff --git a/lfs/tor b/lfs/tor index c6bc5c43f..97f2cf04e 100644 --- a/lfs/tor +++ b/lfs/tor @@ -24,7 +24,7 @@
include Config
-VER = 0.4.5.8 +VER = 0.4.6.5
THISAPP = tor-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = tor -PAK_VER = 61 +PAK_VER = 62
DEPS = libseccomp
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = a39d9b930a19936b57f097051c0ad509 +$(DL_FILE)_MD5 = 5a678a32c5a8b4bf97c9cb541df22b71
install : $(TARGET)
hooks/post-receive -- IPFire 2.x development tree