Merge pull request #551 from WordOps/updating-configuration
Minor MariaDB fix
This commit is contained in:
@@ -6,11 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
## Releases
|
## Releases
|
||||||
|
|
||||||
### v3.17.0 - [Unreleased]
|
### v3.18.0 - [Unreleased]
|
||||||
|
|
||||||
|
### v3.17.0 - 2023-08-04
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
- Debian 12 support
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
- MariaDB default version is now 10.11
|
- 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
|
- 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
|
- Update memory limit to WooCommerce recommended requirements ([PR #512](https://github.com/WordOps/WordOps/pull/512)) @yogeshbeniwal
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ _wo_complete()
|
|||||||
|
|
||||||
"info")
|
"info")
|
||||||
COMPREPLY=( $(compgen \
|
COMPREPLY=( $(compgen \
|
||||||
-W "--mysql --php --php73 --php74 --nginx" \
|
-W "--mysql --php --php72 --php73 --php74 --php80 --php81 --nginx" \
|
||||||
-- $cur) )
|
-- $cur) )
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|||||||
2
install
2
install
@@ -9,7 +9,7 @@
|
|||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# wget -qO wo wops.cc && sudo -E bash wo
|
# wget -qO wo wops.cc && sudo -E bash wo
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Version 3.17.0 - 2023-07-21
|
# Version 3.17.0 - 2023-08-04
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
# CONTENTS
|
# CONTENTS
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ class WOStackMigrateController(CementBaseController):
|
|||||||
if wo_mysql_current_repo:
|
if wo_mysql_current_repo:
|
||||||
current_mysql_version = wo_mysql_current_repo.split('/')
|
current_mysql_version = wo_mysql_current_repo.split('/')
|
||||||
else:
|
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:
|
if 'repo' in current_mysql_version:
|
||||||
current_mysql_version = current_mysql_version[5]
|
current_mysql_version = current_mysql_version[5]
|
||||||
|
|
||||||
|
|||||||
@@ -15,9 +15,9 @@ class WOVar():
|
|||||||
"""Intialization of core variables"""
|
"""Intialization of core variables"""
|
||||||
|
|
||||||
# WordOps version
|
# WordOps version
|
||||||
wo_version = "3.16.4"
|
wo_version = "3.17.0"
|
||||||
# WordOps packages versions
|
# WordOps packages versions
|
||||||
wo_wp_cli = "2.7.1"
|
wo_wp_cli = "2.8.1"
|
||||||
wo_adminer = "4.8.1"
|
wo_adminer = "4.8.1"
|
||||||
wo_phpmyadmin = "5.2.0"
|
wo_phpmyadmin = "5.2.0"
|
||||||
wo_extplorer = "2.1.15"
|
wo_extplorer = "2.1.15"
|
||||||
|
|||||||
Reference in New Issue
Block a user