We just released v1.0.3 for Flarum to resolve an issue caused by the upstream Laravel filesystem package. This version ships some additional changes:
Changed
- Removed [forum] prefix from Request Password and Email Confirmation emails (a4a81c0)
- Adopt huntr.dev for handling our security vulnerability reports (flarum/core2918)
- Maintenance handler can now be replaced through the service container (ioc) (4acff91)
- The colors on the auto generated avatars are now based on the Display Name of the user (flarum/core2873)
Fixed
- Avatar in notifications list are incorrectly aligned (flarum/core2906)
- FilesystemManager is not compatible with upstream Laravel implementation (flarum/core2936)
In case you ran the commands similar to the following to downgrade the illuminate packages:
composer require illuminate/filesystem:"8.47.*" -W
composer require illuminate/support:"8.47.*" -W
Make sure to remove those again using this command:
composer remove --no-install illuminate/filesystem illuminate/support
(feel free to ignore the errors throw by composer in the above step)
Then run an update on Flarum:
composer update flarum/core -W --prefer-dist -a --no-dev
Cache clear and migrate:
php flarum migrate
php flarum cache:clear
In case you run into any issues, open a discussion under the support tag.