From c9e0c0d1b17531643810a147e3d314c5b3cb2364 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 4 Aug 2023 16:46:00 +0200 Subject: [PATCH 1/2] Small fix for mariadb migrate --- install | 2 +- wo/cli/plugins/stack_migrate.py | 2 +- wo/core/variables.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/install b/install index 7d23ce3..85f8e55 100755 --- a/install +++ b/install @@ -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 diff --git a/wo/cli/plugins/stack_migrate.py b/wo/cli/plugins/stack_migrate.py index 26ab827..f2dbfd2 100644 --- a/wo/cli/plugins/stack_migrate.py +++ b/wo/cli/plugins/stack_migrate.py @@ -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] diff --git a/wo/core/variables.py b/wo/core/variables.py index 95cbe5c..6659de9 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -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" From d54ad0fbf48ea55c87b0263cce363d7fc1b96fa4 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 4 Aug 2023 16:49:22 +0200 Subject: [PATCH 2/2] Update changelog for release --- CHANGELOG.md | 9 ++++++++- config/bash_completion.d/wo_auto.rc | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaad2db..1b3e2df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/config/bash_completion.d/wo_auto.rc b/config/bash_completion.d/wo_auto.rc index eef9c14..082d0d1 100644 --- a/config/bash_completion.d/wo_auto.rc +++ b/config/bash_completion.d/wo_auto.rc @@ -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) ) ;;