From 43d741fa664fb7e92590da54c949db4a463db104 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Sun, 20 Oct 2019 19:17:16 +0200 Subject: [PATCH 1/2] Reduce log spam --- Core/Frameworks/Baikal/Core/Server.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/Frameworks/Baikal/Core/Server.php b/Core/Frameworks/Baikal/Core/Server.php index b62d0aa..b5792ba 100644 --- a/Core/Frameworks/Baikal/Core/Server.php +++ b/Core/Frameworks/Baikal/Core/Server.php @@ -193,7 +193,8 @@ class Server { if ($e instanceof \Sabre\DAV\Exception\NotAuthenticated) { // Applications may make their first call without auth so don't log these attempts // Pattern from sabre/dav/lib/DAV/Auth/Backend/AbstractDigest.php - if (strpos($e->getMessage(), "No 'Authorization: Digest' header found.") === false) { + if (strpos($e->getMessage(), "No 'Authorization: Digest' header found.") === false + && strpos($e->getMessage(), "No 'Authorization: Basic' header found.") === false) { error_log('user not authorized: Baikal DAV: ' . $e->getMessage()); } } else { From e0350695dbb8b59de5a10623ad659e9d3197ce49 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Wed, 13 Nov 2019 20:57:56 +0100 Subject: [PATCH 2/2] Bumped version to 0.6.1 --- CHANGELOG.md | 6 ++++++ Core/Distrib.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f9e378..49a44d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ ChangeLog ========= +0.6.1 (2019-11-13) +------------------ + +* Fixed sync issues with Thunderbird +* Ships with sabre/dav 4.0.2 + 0.6.0 (2019-08-25) ------------------ diff --git a/Core/Distrib.php b/Core/Distrib.php index 18af561..3b49278 100644 --- a/Core/Distrib.php +++ b/Core/Distrib.php @@ -24,5 +24,5 @@ # This copyright notice MUST APPEAR in all copies of the script! ################################################################# -define("BAIKAL_VERSION", "0.6.0"); +define("BAIKAL_VERSION", "0.6.1"); define("BAIKAL_HOMEPAGE", "http://sabre.io/baikal/");