Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Reverts #698 and #703 to only one supported MariaDB Version.
Laravel Sail only supports one MySQL version (MySQL 8). The problems which arise with multiple versions of MariaDB, introduce unneeded complexity.
Therefor this PR reverts back to only on supported MariaDB Version, which is now MariaDB 11 instead of MariaDB 10, which it was before the other PRs.
See Issues: #702 and #701
After this is merged and released, I will also revert the changes in the Laravel Sail Server Script: laravel/sail-server#24
How to test the changes:
laravel new sail-test --no-interaction cd sail-test composer config repositories.sail vcs https://github.com/Jubeki/laravel-sail.git composer require laravel/sail:dev-mariadb11 --dev php artisan sail:install --with=mariadb vendor/bin/sail up -d --wait vendor/bin/sail artisan migrate open http://localhost
Please don't forget to stop the docker container after testing: