Merge pull request #551 from WordOps/updating-configuration

Minor MariaDB fix
This commit is contained in:
VirtuBox
2023-08-04 17:16:14 +02:00
committed by GitHub
5 changed files with 13 additions and 6 deletions

View File

@@ -6,11 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## Releases
### v3.17.0 - [Unreleased]
### v3.18.0 - [Unreleased]
### v3.17.0 - 2023-08-04
#### Added
- Debian 12 support
#### Changed
- MariaDB default version is now 10.11
- `wo stack migrate --mariadb` improved to properly upgrade mariadb
- New Nginx package based on latest Nginx stable release 1.24.0
- Update memory limit to WooCommerce recommended requirements ([PR #512](https://github.com/WordOps/WordOps/pull/512)) @yogeshbeniwal

View File

@@ -53,7 +53,7 @@ _wo_complete()
"info")
COMPREPLY=( $(compgen \
-W "--mysql --php --php73 --php74 --nginx" \
-W "--mysql --php --php72 --php73 --php74 --php80 --php81 --nginx" \
-- $cur) )
;;

View File

@@ -9,7 +9,7 @@
# -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo
# -------------------------------------------------------------------------
# Version 3.17.0 - 2023-07-21
# Version 3.17.0 - 2023-08-04
# -------------------------------------------------------------------------
# CONTENTS

View File

@@ -44,7 +44,7 @@ class WOStackMigrateController(CementBaseController):
if wo_mysql_current_repo:
current_mysql_version = wo_mysql_current_repo.split('/')
else:
Log.error(self, "MariaDB is not installed yet")
Log.error(self, "MariaDB is not installed from repository yet")
if 'repo' in current_mysql_version:
current_mysql_version = current_mysql_version[5]

View File

@@ -15,9 +15,9 @@ class WOVar():
"""Intialization of core variables"""
# WordOps version
wo_version = "3.16.4"
wo_version = "3.17.0"
# WordOps packages versions
wo_wp_cli = "2.7.1"
wo_wp_cli = "2.8.1"
wo_adminer = "4.8.1"
wo_phpmyadmin = "5.2.0"
wo_extplorer = "2.1.15"