diff --git a/CHANGELOG.md b/CHANGELOG.md index 722cd07c0..b6d8a6f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,11 @@ release channel, you can take advantage of these new features and fixes. ## Bug Fixes -There have been no new bug fixes since the last stable release. +- Performance should be improved on several site components that previously were supposed to "lazy-load" their sub-items + but did not properly do so. + +- The incidence of "Malformed URI" exceptions should be greatly reduced, and if they occur the system will log what URL + is causing the problem. --- diff --git a/src/Enums/SupportedLocales.php b/src/Enums/SupportedLocales.php index 71ba68288..5b3e4f306 100644 --- a/src/Enums/SupportedLocales.php +++ b/src/Enums/SupportedLocales.php @@ -8,9 +8,6 @@ namespace App\Enums; use App\Environment; use App\Http\ServerRequest; -use Gettext\GettextTranslator; -use Gettext\TranslatorFunctions; -use Gettext\TranslatorInterface; use Locale; use PhpMyAdmin\MoTranslator\Loader; use Psr\Http\Message\ServerRequestInterface;