From e027d9cce97c532f7df76cfe5fdf0eb2d9be92bc Mon Sep 17 00:00:00 2001 From: Aaron Feledy Date: Tue, 24 Feb 2026 07:13:34 -0600 Subject: [PATCH 1/2] fix: remove mysqldump config from MariaDB compat script The [mysqldump] block with loose-skip-column-statistics was causing warnings on MariaDB 11.4/11.8 because mariadb-dump doesn't support the loose- prefix. This option is only needed for MySQL 8's mysqldump, which is already handled in mysql-client-install.sh. Fixes #237 --- scripts/mariadb-compat-install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/mariadb-compat-install.sh b/scripts/mariadb-compat-install.sh index af962a28..b3275baf 100755 --- a/scripts/mariadb-compat-install.sh +++ b/scripts/mariadb-compat-install.sh @@ -34,9 +34,6 @@ default-character-set=utf8mb4 # Prevent SSL errors when connecting to servers without SSL disable-ssl-verify-server-cert -[mysqldump] -# MySQL 8 uses this; MariaDB safely ignores it via loose- prefix -loose-skip-column-statistics MYCNF echo "MariaDB compatibility wrappers installed" From bcb296f9439f74da2465cafc7ae5bbc89cbef41b Mon Sep 17 00:00:00 2001 From: Aaron Feledy Date: Tue, 24 Feb 2026 07:16:43 -0600 Subject: [PATCH 2/2] docs: update CHANGELOG.md with unreleased fix for #237 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e13a00c..00a38bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }}) +* Fixed `mysqldump` warning for unknown option on MariaDB 11.4/11.8 [#237](https://github.com/lando/php/issues/237) * Updated to [@lando/nginx@1.6.0](https://github.com/lando/nginx/releases/tag/v1.6.0) ## v1.11.1 - [February 20, 2026](https://github.com/lando/php/releases/tag/v1.11.1)