From fd8e0ccf1d2036aaa26ef4af6c6d992761f6556a Mon Sep 17 00:00:00 2001 From: Frank Bergkemper Date: Mon, 7 Nov 2022 13:37:34 +0100 Subject: webui: patch zf2 to eliminate a php warning caused by zend-stdlib Use break instead of continue inside switch. See: https://github.com/zendframework/zend-stdlib/commit/d0cd1d043ba70feb503fb1015fbc94a6ca414056 --- webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php b/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php index e890084d0..1e93ba0f2 100644 --- a/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php +++ b/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php @@ -423,7 +423,7 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Serializable, Count $this->setIteratorClass($v); break; case 'protectedProperties': - continue; + break; default: $this->__set($k, $v); } -- cgit v1.2.3 From 41d7db3abf0601bc7739d7a5898353500ac58dd3 Mon Sep 17 00:00:00 2001 From: Bruno Friedmann Date: Tue, 8 Nov 2022 15:52:48 +0100 Subject: update CHANGELOG.md Signed-off-by: Bruno Friedmann --- CHANGELOG.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1dcb44cd..6afa8c834 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,7 +45,7 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https: - core/platform: Adding Bareos firewalld service xml files [PR #1237] - dird: Added `FS Type = vfat` in LinuxAll.conf for UEFI partition [PR #1236] - bareos tools: reintegrate testfind binary [PR #1176] -- fd: add support for role switching on PostgreSQL add-on [Issue #4607] [PR #1178] +- fd: add support for role switching on PostgreSQL add-on [Issue #1456] [PR #1178] - build: switch from FreeBSD 13.0 to 13.1 [PR #1253] - stored: dird: added backup checkpoints that save backup metadata to the Catalog during the execution of the backup. [PR #1074] - stored: dird: add backup checkpoints that save backup metadata to the Catalog during the execution of the backup. [PR #1074] @@ -105,8 +105,10 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https: - stored: systemtests: docs: checkpoints improvements [PR #1277] - winbareos.nsi: fix working directory in configure.sed [PR #1288] - core: BareosDb::FindLastJobStartTimeForJobAndClient: take into account Running job [PR #1265] [Issue #1466] +- core: BareosDb::FindLastJobStartTimeForJobAndClient: take into account Running job [Issue #1466] [PR #1265] - backup.cc: fail backup when `Write Bootstrap` to pipe fails [PR #1296] -- webui: fix pool link in job details formatter [PR 1306] [BUG #1489] +- webui: fix pool link in job details formatter [Issue #1489] [PR #1303] +- webui: patch zf2 to eliminate a php warning caused by zend-stdlib [PR #1305] ### Changed - contrib: rename Python modules to satisfy PEP8 [PR #768] @@ -208,10 +210,11 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https: [Issue #1445]: https://bugs.bareos.org/view.php?id=1445 [Issue #1450]: https://bugs.bareos.org/view.php?id=1450 [Issue #1452]: https://bugs.bareos.org/view.php?id=1452 +[Issue #1456]: https://bugs.bareos.org/view.php?id=1456 [Issue #1466]: https://bugs.bareos.org/view.php?id=1466 [Issue #1477]: https://bugs.bareos.org/view.php?id=1477 [Issue #1480]: https://bugs.bareos.org/view.php?id=1480 -[Issue #4607]: https://bugs.bareos.org/view.php?id=4607 +[Issue #1489]: https://bugs.bareos.org/view.php?id=1489 [PR #698]: https://github.com/bareos/bareos/pull/698 [PR #768]: https://github.com/bareos/bareos/pull/768 [PR #1010]: https://github.com/bareos/bareos/pull/1010 @@ -358,4 +361,6 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https: [PR #1296]: https://github.com/bareos/bareos/pull/1296 [PR #1298]: https://github.com/bareos/bareos/pull/1298 [PR #1300]: https://github.com/bareos/bareos/pull/1300 +[PR #1303]: https://github.com/bareos/bareos/pull/1303 +[PR #1305]: https://github.com/bareos/bareos/pull/1305 [unreleased]: https://github.com/bareos/bareos/tree/master -- cgit v1.2.3