From: Tim Düsterhus Date: Fri, 13 Aug 2021 08:57:28 +0000 (+0200) Subject: Document the replacement of Zend/ProgressBar (#215) X-Git-Tag: 5.6.final~174 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ce08ae44b741f53a3fcfb6b609d0d85b5dbbf4d6;p=GitHub%2FWoltLab%2Fwoltlab.github.io.git Document the replacement of Zend/ProgressBar (#215) see WoltLab/WCF#4460 Co-authored-by: Alexander Ebert --- diff --git a/docs/migration/wsc54/libraries.md b/docs/migration/wsc54/libraries.md index 9aff2455..ba04c5d5 100644 --- a/docs/migration/wsc54/libraries.md +++ b/docs/migration/wsc54/libraries.md @@ -18,3 +18,15 @@ To preserve backward-compatibility, we also keep copies of `codemirror.js` and ` These files are, however, considered deprecated and you should migrate to using `require()` (see `codemirror` ACP template). See [WoltLab/WCF#4277](https://github.com/WoltLab/WCF/pull/4277) for details. + +## Zend/ProgressBar + +The old bundled version of Zend/ProgressBar was replaced by a current version of laminas-progressbar. + +Due to laminas-zendframework-bridge this update is a drop-in replacement. +Existing code should continue to work as-is. + +It is recommended to cleanly migrate to laminas-progressbar to allow for a future removal of the bridge. +Updating the `use` imports should be sufficient to switch to the laminas-progressbar. + +See [WoltLab/WCF#4460](https://github.com/WoltLab/WCF/pull/4460) for details.