Update MariaDB to latest LTS version

This commit is contained in:
Yogesh Beniwal
2023-04-03 16:11:04 +08:00
parent 3bd80047fd
commit c922613841
4 changed files with 4 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- New Nginx package based on latest Nginx stable release 1.22.2
- Better Referrer-Policy ([PR #434](https://github.com/WordOps/WordOps/pull/434))
- MariaDB default version is now 10.6
- MariaDB default version is now 10.11
#### Fixed

View File

@@ -42,7 +42,7 @@
- **Easy to install** : One step automated installer with migration from EasyEngine v3 support
- **Fast deployment** : Fast and automated WordPress, Nginx, PHP, MySQL & Redis installation
- **Custom Nginx build** : Nginx 1.22.1 - TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli support
- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0, 8.1 & 8.2 - MariaDB 10.6 & Redis 7.0
- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0, 8.1 & 8.2 - MariaDB 10.11 & Redis 7.0
- **Secured** : Hardened WordPress security with strict Nginx location directives
- **Powerful** : Optimized Nginx configurations with multiple cache backends support
- **SSL** : Domain, Subdomain & Wildcard Let's Encrypt SSL certificates with DNS API support

View File

@@ -84,7 +84,7 @@ version = 8.1
[mariadb]
### Default MariaDB release
release = 10.6
release = 10.11
[update]

View File

@@ -185,7 +185,7 @@ class WOVar():
else:
mariadb_ver = '10.3'
else:
mariadb_ver = '10.6'
mariadb_ver = '10.11'
wo_mysql = wo_mysql + ["mariadb-backup"]
wo_mysql_client = ["mariadb-client", "python3-mysqldb"]