From 56bda618d11e14cfdd1f201269578feaa4fd61ce Mon Sep 17 00:00:00 2001 From: heitbaum Date: Wed, 17 Feb 2021 07:06:14 +0000 Subject: [PATCH 1/2] librelp: update to 1.10.0 update 1.9.0 (2020-11-20) to 1.10.0 (2021-02-16) Version 1.10.0 - 2021-02-16 - TLS handling bugfix When the client tried to conntect to the server, custom cipherstrings (Set by tlscommands feature) were not used. This could lead to the negotiation of different and potentially weaker ciphers. Other custom tlscommands settings like Protocol where not affected. We do not overwrite the custom ciphers anymore if they are set by tlscommands. Another problem only related to the relp receiver (server) was, that the custom tlscommands/priority string where not applied on the accepted client connections. This could lead to the same problem as the default ciphers were used. Besides the main problem, the following changes were applied: - Add new testcase for setting custom tls ciphers in tlscommand. - Add support to use semicolon (;) as tlscommand seperator (See new testcase) - Fix GCC9 "destination size" warning in offers.c closes: https://github.com/rsyslog/librelp/issues/224 --- .../addons/addon-depends/rsyslog-depends/librelp/package.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/addons/addon-depends/rsyslog-depends/librelp/package.mk b/packages/addons/addon-depends/rsyslog-depends/librelp/package.mk index ee6d5ba480..63fb680151 100644 --- a/packages/addons/addon-depends/rsyslog-depends/librelp/package.mk +++ b/packages/addons/addon-depends/rsyslog-depends/librelp/package.mk @@ -2,8 +2,8 @@ # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) PKG_NAME="librelp" -PKG_VERSION="1.9.0" -PKG_SHA256="24ee9e843960d1400a44ffaedb0b1ec91463df8f8acca869cc027ed25ee6bf33" +PKG_VERSION="1.10.0" +PKG_SHA256="148db4e4d1a23e8136e9ec08810929a55faf5d45e24c2e3186d5ab34355dab31" PKG_LICENSE="GPL" PKG_SITE="https://www.rsyslog.com/category/librelp/" PKG_URL="http://download.rsyslog.com/librelp/${PKG_NAME}-${PKG_VERSION}.tar.gz" From b8c0473ad3265324b64e9deb515d529c54865101 Mon Sep 17 00:00:00 2001 From: heitbaum Date: Sun, 21 Feb 2021 01:32:11 +0000 Subject: [PATCH 2/2] rsyslog: update to 8.2102.0 and addon to (107) update 8.2012.0 to 8.2102.0 addon changes: - librelp: update to 1.10.0 - https://www.adiscon.com/news/librelp-1-10-0-released/ - rsyslog: update to 8.2102.0 changelog: https://github.com/rsyslog/rsyslog/blob/v8-stable/ChangeLog --- packages/addons/service/rsyslog/changelog.txt | 4 ++++ packages/addons/service/rsyslog/package.mk | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/packages/addons/service/rsyslog/changelog.txt b/packages/addons/service/rsyslog/changelog.txt index 43499e61d6..43c36a1946 100755 --- a/packages/addons/service/rsyslog/changelog.txt +++ b/packages/addons/service/rsyslog/changelog.txt @@ -1,3 +1,7 @@ +107 +- librelp: update to 1.10.0 +- rsyslog: update to 8.2102.0 + 106 - libfastjson: update to 0.99.9 diff --git a/packages/addons/service/rsyslog/package.mk b/packages/addons/service/rsyslog/package.mk index 2d8a4129a2..ebabadf330 100644 --- a/packages/addons/service/rsyslog/package.mk +++ b/packages/addons/service/rsyslog/package.mk @@ -2,9 +2,9 @@ # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) PKG_NAME="rsyslog" -PKG_VERSION="8.2012.0" -PKG_SHA256="d74cf571e6bcdf8a4c19974afd5e78a05356191390c2f80605a9004d1c587a0e" -PKG_REV="106" +PKG_VERSION="8.2102.0" +PKG_SHA256="94ee0d0312c2edea737665594cbe4a9475e4e3b593e12b5b8ae3a743ac9c72a7" +PKG_REV="107" PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="https://github.com/rsyslog"