diff --git a/CHANGELOG.md b/CHANGELOG.md index a002279..3671056 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }}) + +* Bumped all available MariaDB minor versions. [#56](https://github.com/lando/mariadb/pull/56) + ## v1.3.0 - [April 11, 2024](https://github.com/lando/mariadb/releases/tag/v1.3.0) * Updated available version of Mariadb to 11.3. [#53](https://github.com/lando/mariadb/pull/53) diff --git a/builders/mariadb.js b/builders/mariadb.js index 8dc491f..4c8e521 100644 --- a/builders/mariadb.js +++ b/builders/mariadb.js @@ -11,22 +11,23 @@ module.exports = { version: '10.3', supported: ['11.3', '11.2', '11.1', '11.0', '10.11', '10.10', '10.9', '10.8', '10.7', '10.6', '10.5', '10.4', '10.3', '10.2', '10.1'], - legacy: ['10.10', '10.9', '10.8', '10.7', '10.3', '10.2', '10.1'], + legacy: ['11.0', '10.10', '10.9', '10.8', '10.7', '10.3', '10.2', + '10.1'], pinPairs: { - '11.3': 'bitnami/mariadb:11.3.2-debian-12-r1', - '11.2': 'bitnami/mariadb:11.2.3-debian-12-r4', - '11.1': 'bitnami/mariadb:11.1.4-debian-12-r4', - '11.0': 'bitnami/mariadb:11.0.5-debian-12-r5', - '10.11': 'bitnami/mariadb:10.11.7-debian-12-r6', + '11.3': 'bitnami/mariadb:11.3.2-debian-12-r5', + '11.2': 'bitnami/mariadb:11.2.4-debian-12-r0', + '11.1': 'bitnami/mariadb:11.1.5-debian-12-r0', + '11.0': 'bitnami/mariadb:11.0.6-debian-12-r0', + '10.11': 'bitnami/mariadb:10.11.8-debian-12-r0', '10.10': 'bitnami/mariadb:10.10.7-debian-11-r6', '10.9': 'bitnami/mariadb:10.9.8-debian-11-r22', '10.8': 'bitnami/mariadb:10.8.8-debian-11-r5', '10.7': 'bitnami/mariadb:10.7.8-debian-11-r6', - '10.6': 'bitnami/mariadb:10.6.5-debian-10-r30', - '10.5': 'bitnami/mariadb:10.5.8-debian-10-r74', - '10.4': 'bitnami/mariadb:10.4.17-debian-10-r84', - '10.3': 'bitnami/mariadb:10.3.27-debian-10-r84', - '10.2': 'bitnami/mariadb:10.2.36-debian-10-r83', + '10.6': 'bitnami/mariadb:10.6.18-debian-12-r0', + '10.5': 'bitnami/mariadb:10.5.25-debian-12-r0', + '10.4': 'bitnami/mariadb:10.4.34-debian-12-r0', + '10.3': 'bitnami/mariadb:10.3.39-debian-11-r5', + '10.2': 'bitnami/mariadb:10.2.44-debian-11-r9', '10.1': 'bitnami/mariadb:10.1.47-debian-10-r13', }, patchesSupported: true, diff --git a/examples/10.10/README.md b/examples/10.10/README.md index e5a123a..34e2910 100644 --- a/examples/10.10/README.md +++ b/examples/10.10/README.md @@ -23,13 +23,13 @@ Run the following commands to validate things are rolling as they should. ```bash # Should use 10.10.7 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.10.7" +lando ssh -s defaults -c "mariadb -V | grep 10.10.7" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.10.7" +lando ssh -s patch -c "mariadb -V | grep 10.10.7" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/10.11/README.md b/examples/10.11/README.md index 87189c4..f7add66 100644 --- a/examples/10.11/README.md +++ b/examples/10.11/README.md @@ -22,14 +22,14 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 10.11.7 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.11.7" +# Should use 10.11.8 as the default version +lando ssh -s defaults -c "mariadb -V | grep 10.11.8" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.11.7" +lando ssh -s patch -c "mariadb -V | grep 10.11.7" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/10.2/README.md b/examples/10.2/README.md index 6f32b86..7de56db 100644 --- a/examples/10.2/README.md +++ b/examples/10.2/README.md @@ -22,8 +22,8 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 10.2.36 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.2.36" +# Should use 10.2.44 as the default version +lando ssh -s defaults -c "mysql -V | grep 10.2.44" # Should use the patch version when set by the user lando ssh -s patch -c "mysql -V | grep 10.2.40" diff --git a/examples/10.3/README.md b/examples/10.3/README.md index 95e6de7..cfe3483 100644 --- a/examples/10.3/README.md +++ b/examples/10.3/README.md @@ -22,8 +22,8 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 10.3.27 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.3.27" +# Should use 10.3.39 as the default version +lando ssh -s defaults -c "mysql -V | grep 10.3.39" # Should use the patch version when set by the user lando ssh -s patch -c "mysql -V | grep 10.3.32" diff --git a/examples/10.4/README.md b/examples/10.4/README.md index 886a92a..487781d 100644 --- a/examples/10.4/README.md +++ b/examples/10.4/README.md @@ -22,14 +22,14 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 10.4.17 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.4.17" +# Should use 10.4.34 as the default version +lando ssh -s defaults -c "mariadb -V | grep 10.4.34" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.4.22" +lando ssh -s patch -c "mariadb -V | grep 10.4.22" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/10.5/README.md b/examples/10.5/README.md index 149af11..4ba765a 100644 --- a/examples/10.5/README.md +++ b/examples/10.5/README.md @@ -22,14 +22,14 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 10.5.8 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.5.8" +# Should use 10.5.25 as the default version +lando ssh -s defaults -c "mariadb -V | grep 10.5.25" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.5.13" +lando ssh -s patch -c "mariadb -V | grep 10.5.13" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/10.6/README.md b/examples/10.6/README.md index 4080dfc..a0637c1 100644 --- a/examples/10.6/README.md +++ b/examples/10.6/README.md @@ -22,14 +22,14 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 10.5.8 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.6.5" +# Should use 10.6.18 as the default version +lando ssh -s defaults -c "mariadb -V | grep 10.6.18" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.6.4" +lando ssh -s patch -c "mariadb -V | grep 10.6.4" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/10.7/README.md b/examples/10.7/README.md index b00eb58..6ff7d81 100644 --- a/examples/10.7/README.md +++ b/examples/10.7/README.md @@ -23,13 +23,13 @@ Run the following commands to validate things are rolling as they should. ```bash # Should use 10.7.8 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.7.8" +lando ssh -s defaults -c "mariadb -V | grep 10.7.8" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.7.8" +lando ssh -s patch -c "mariadb -V | grep 10.7.8" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/10.8/README.md b/examples/10.8/README.md index adddb35..f8a9b1e 100644 --- a/examples/10.8/README.md +++ b/examples/10.8/README.md @@ -23,13 +23,13 @@ Run the following commands to validate things are rolling as they should. ```bash # Should use 10.8.8 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.8.8" +lando ssh -s defaults -c "mariadb -V | grep 10.8.8" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.8.8" +lando ssh -s patch -c "mariadb -V | grep 10.8.8" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/10.9/README.md b/examples/10.9/README.md index aec96c5..bf50f16 100644 --- a/examples/10.9/README.md +++ b/examples/10.9/README.md @@ -23,13 +23,13 @@ Run the following commands to validate things are rolling as they should. ```bash # Should use 10.9.8 as the default version -lando ssh -s defaults -c "mysql -V | grep 10.9.8" +lando ssh -s defaults -c "mariadb -V | grep 10.9.8" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 10.9.8" +lando ssh -s patch -c "mariadb -V | grep 10.9.8" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/11.0/README.md b/examples/11.0/README.md index 8e002f8..3667cf2 100644 --- a/examples/11.0/README.md +++ b/examples/11.0/README.md @@ -22,14 +22,14 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 11.0.5 as the default version -lando ssh -s defaults -c "mysql -V | grep 11.0.5" +# Should use 11.0.6 as the default version +lando ssh -s defaults -c "mariadb -V | grep 11.0.6" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 11.0.5" +lando ssh -s patch -c "mariadb -V | grep 11.0.5" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/11.1/README.md b/examples/11.1/README.md index 48c53d9..42a7708 100644 --- a/examples/11.1/README.md +++ b/examples/11.1/README.md @@ -22,14 +22,14 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 11.1.4 as the default version -lando ssh -s defaults -c "mysql -V | grep 11.1.4" +# Should use 11.1.5 as the default version +lando ssh -s defaults -c "mariadb -V | grep 11.1.5" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 11.1.4" +lando ssh -s patch -c "mariadb -V | grep 11.1.4" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/11.2/README.md b/examples/11.2/README.md index f68acfa..64d1155 100644 --- a/examples/11.2/README.md +++ b/examples/11.2/README.md @@ -22,14 +22,14 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should use 11.2.3 as the default version -lando ssh -s defaults -c "mysql -V | grep 11.2.3" +# Should use 11.2.4 as the default version +lando ssh -s defaults -c "mariadb -V | grep 11.2.4" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 11.2.3" +lando ssh -s patch -c "mariadb -V | grep 11.2.3" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests diff --git a/examples/11.3/README.md b/examples/11.3/README.md index 1c6e01c..96b9f3e 100644 --- a/examples/11.3/README.md +++ b/examples/11.3/README.md @@ -23,13 +23,13 @@ Run the following commands to validate things are rolling as they should. ```bash # Should use 11.3.2 as the default version -lando ssh -s defaults -c "mysql -V | grep 11.3.2" +lando ssh -s defaults -c "mariadb -V | grep 11.3.2" # Should use the patch version when set by the user -lando ssh -s patch -c "mysql -V | grep 11.3.2" +lando ssh -s patch -c "mariadb -V | grep 11.3.2" # Should use the correct default user pass db -lando ssh -s defaults -c "mysql -umariadb -pmariadb database -e quit" +lando ssh -s defaults -c "mariadb -umariadb -pmariadb database -e quit" ``` Destroy tests