From 7277d3e56545a44fbd4323da6019811a1faa6764 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Mon, 23 May 2022 13:48:00 +0200 Subject: [PATCH 01/16] Add support for Ubuntu 22.04 & Debian 11 --- install | 10 +++++++--- wo/core/variables.py | 10 +++++++--- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/install b/install index 1203688..8d0f98a 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.14.2 - 2022-04-29 +# Version 3.15.0 - 2022-05-23 # ------------------------------------------------------------------------- # CONTENTS @@ -167,9 +167,9 @@ wo_check_distro() { wo_lib_echo_fail "Feel free to open a pull-request if you want to add support for another Linux distributions" exit 100 else - check_wo_linux_distro=$(lsb_release -sc | grep -E "xenial|bionic|jessie|stretch|buster|focal") + check_wo_linux_distro=$(lsb_release -sc | grep -E "bionic|stretch|buster|focal|jammy|bullseye") if [ -z "$check_wo_linux_distro" ]; then - wo_lib_echo_fail "WordOps (wo) only supports Ubuntu 16.04/18.04/20.04 LTS, Debian 9.x/10.x and Raspbian 9.x/10x.\n + wo_lib_echo_fail "WordOps (wo) only supports Ubuntu 18.04/20.04/22.04 LTS, Debian 10.x/11.x and Raspbian 10x./11.x \n You can bypass this warning by adding the flag --force to the install command" exit 100 fi @@ -455,6 +455,8 @@ wo_install() { if [ "$wo_linux_distro" = "Debian" ] || [ "$wo_linux_distro" = "Raspbian" ]; then if [ "$wo_distro_codename" = "stretch" ]; then python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@1.4.y#egg=python-apt + elif [ "$wo_distro_codename" = "bullseye" ]; then + python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@2.2.1#egg=python-apt else python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@1.8.4.y#egg=python-apt fi @@ -463,6 +465,8 @@ wo_install() { python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@2.0.0#egg=python-apt elif [ "$wo_distro_codename" = "bionic" ]; then python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@1.6.y#egg=python-apt + elif [ "$wo_distro_codename" = "jammy" ]; then + python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@2.2.1#egg=python-apt else python3 -m pip install git+https://salsa.debian.org/apt-team/python-apt.git@1.1.y-xenial#egg=python-apt fi diff --git a/wo/core/variables.py b/wo/core/variables.py index 8066caa..a3fc51b 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -14,7 +14,7 @@ class WOVar(): """Intialization of core variables""" # WordOps version - wo_version = "3.14.2" + wo_version = "3.15.0" # WordOps packages versions wo_wp_cli = "2.6.0" wo_adminer = "4.8.1" @@ -123,11 +123,15 @@ class WOVar(): wo_deb_repo = "Debian_9.0" elif wo_platform_codename == 'buster': wo_deb_repo = "Debian_10" + elif wo_platform_codename == 'bullseye': + wo_deb_repo = "Debian_11" elif wo_distro == 'raspbian': if wo_platform_codename == 'stretch': wo_deb_repo = "Raspbian_9.0" elif wo_platform_codename == 'buster': wo_deb_repo = "Raspbian_10" + elif wo_platform_codename == 'bullseye': + wo_deb_repo = "Raspbian_11" # debian/raspbian nginx repository wo_nginx_repo = ("deb http://download.opensuse.org" "/repositories/home:" @@ -171,7 +175,7 @@ class WOVar(): else: mariadb_ver = '10.3' else: - mariadb_ver = '10.5' + mariadb_ver = '10.6' wo_mysql = wo_mysql + ["mariadb-backup"] wo_mysql_client = ["mariadb-client", "python3-mysqldb"] @@ -183,7 +187,7 @@ class WOVar(): # APT repositories wo_mysql_repo = ("deb [arch=amd64,arm64,ppc64el] " "http://mariadb.mirrors.ovh.net/MariaDB/repo/" - "10.5/{distro} {codename} main" + "10.6/{distro} {codename} main" .format(distro=wo_distro, codename=wo_platform_codename)) if wo_distro == 'ubuntu': From 33321de2300f916898a09bc4108d817437913ca0 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Mon, 23 May 2022 16:10:39 +0200 Subject: [PATCH 02/16] Set back MariaDB 10.5 waiting for package for Ubuntu 22.04 --- wo/core/variables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wo/core/variables.py b/wo/core/variables.py index a3fc51b..39bba81 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -175,7 +175,7 @@ class WOVar(): else: mariadb_ver = '10.3' else: - mariadb_ver = '10.6' + mariadb_ver = '10.5' wo_mysql = wo_mysql + ["mariadb-backup"] wo_mysql_client = ["mariadb-client", "python3-mysqldb"] @@ -187,7 +187,7 @@ class WOVar(): # APT repositories wo_mysql_repo = ("deb [arch=amd64,arm64,ppc64el] " "http://mariadb.mirrors.ovh.net/MariaDB/repo/" - "10.6/{distro} {codename} main" + "10.5/{distro} {codename} main" .format(distro=wo_distro, codename=wo_platform_codename)) if wo_distro == 'ubuntu': From cdbdf2cc22e54a183ad6c12e60a00256b3c31629 Mon Sep 17 00:00:00 2001 From: Hamada Habib <24924319+ihfbib@users.noreply.github.com> Date: Tue, 12 Jul 2022 08:33:01 +0200 Subject: [PATCH 03/16] Update distro.linux_distribution & mariadb_ver [10.8] Fix: DeprecationWarning: distro.linux_distribution() is deprecated Deprecated since version 3.5, removed in version 3.7. Update: OVH MariaDB mirror has been updated and support Ubuntu 22.04 [jammy] --- wo/core/variables.py | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/wo/core/variables.py b/wo/core/variables.py index 8066caa..1bf5f9e 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -1,12 +1,13 @@ """WordOps core variable module""" import configparser import os +import sys from datetime import datetime from re import match from socket import getfqdn from shutil import copy2 -from distro import linux_distribution +from distro import distro, linux_distribution from sh import git @@ -30,13 +31,19 @@ class WOVar(): # WordOps core variables # linux distribution - wo_distro = linux_distribution( - full_distribution_name=False)[0].lower() - wo_platform_version = linux_distribution( - full_distribution_name=False)[1].lower() - # distro codename (bionic, xenial, stretch ...) - wo_platform_codename = linux_distribution( - full_distribution_name=False)[2].lower() + if sys.version_info <= (3, 7): + wo_distro = linux_distribution( + full_distribution_name=False)[0].lower() + wo_platform_version = linux_distribution( + full_distribution_name=False)[1].lower() + # distro codename (bionic, xenial, stretch ...) + wo_platform_codename = linux_distribution( + full_distribution_name=False)[2].lower() + else: + wo_distro = distro.id() + wo_platform_version = distro.version() + # distro codename (bionic, xenial, stretch ...) + wo_platform_codename = distro.codename() # Get timezone of system if os.path.isfile('/etc/timezone'): @@ -171,7 +178,10 @@ class WOVar(): else: mariadb_ver = '10.3' else: - mariadb_ver = '10.5' + if wo_platform_codename == 'jammy': + mariadb_ver = '10.8' + else: + mariadb_ver = '10.5' wo_mysql = wo_mysql + ["mariadb-backup"] wo_mysql_client = ["mariadb-client", "python3-mysqldb"] @@ -183,8 +193,9 @@ class WOVar(): # APT repositories wo_mysql_repo = ("deb [arch=amd64,arm64,ppc64el] " "http://mariadb.mirrors.ovh.net/MariaDB/repo/" - "10.5/{distro} {codename} main" - .format(distro=wo_distro, + "{version}/{distro} {codename} main" + .format(version=mariadb_ver, + distro=wo_distro, codename=wo_platform_codename)) if wo_distro == 'ubuntu': wo_php_repo = "ppa:ondrej/php" From bcf8a3e34cc9a6c4517829beadd486261d6d7bb4 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Thu, 21 Jul 2022 16:42:42 +0200 Subject: [PATCH 04/16] Fix netdata stack upgrade --- wo/cli/plugins/stack_upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wo/cli/plugins/stack_upgrade.py b/wo/cli/plugins/stack_upgrade.py index ee0ff5e..43293bf 100644 --- a/wo/cli/plugins/stack_upgrade.py +++ b/wo/cli/plugins/stack_upgrade.py @@ -204,7 +204,7 @@ class WOStackUpgradeController(CementBaseController): # detect static binaries install if os.path.isdir('/opt/netdata'): packages = packages + [[ - 'https://my-netdata.io/kickstart-static64.sh', + 'https://my-netdata.io/kickstart.sh', '/var/lib/wo/tmp/kickstart.sh', 'Netdata']] # detect install from source elif os.path.isdir('/etc/netdata'): From 0ffc52e0d5d0992b25090ab8b8af54f50eafe169 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Thu, 8 Sep 2022 20:49:35 +0200 Subject: [PATCH 05/16] Update to MariaDB 10.6 --- CHANGELOG.md | 13 ++++++++++++- README.md | 4 ++-- install | 2 +- setup.py | 2 +- wo/cli/plugins/stack_pref.py | 3 ++- wo/core/variables.py | 2 +- 6 files changed, 19 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f915e39..8a6a78e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Releases -### v3.15.0 - [Unreleased] +### v3.15.1 - [Unreleased] + +### v3.15.0 - 2022-05-26 + +#### Changed + +- New Nginx package based on latest Nginx stable release 1.20.2 +- Better Referrer-Policy ([PR #434](https://github.com/WordOps/WordOps/pull/434)) + +#### Fixed + +- `wo log reset --all` ([PR #438](https://github.com/WordOps/WordOps/pull/438)) ### v3.14.2 - 2022-04-29 diff --git a/README.md b/README.md index 418220c..1645fc1 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ - **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.18.0 - TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli support -- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0 & 8.1 - MariaDB 10.5 & Redis 6.0 +- **Custom Nginx build** : Nginx 1.22.0 - TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli support +- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0 & 8.1 - MariaDB 10.6 & Redis 6.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 diff --git a/install b/install index 8d0f98a..dbdeef2 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.15.0 - 2022-05-23 +# Version 3.15.0 - 2022-05-26 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 5b8c0ad..ad2e311 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ if os.geteuid() == 0: os.makedirs('/var/lib/wo/tmp/') setup(name='wordops', - version='3.14.2', + version='3.15.0', description='An essential toolset that eases server administration', long_description=LONG, long_description_content_type='text/markdown', diff --git a/wo/cli/plugins/stack_pref.py b/wo/cli/plugins/stack_pref.py index 3d13abb..597c0d7 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -1279,7 +1279,8 @@ def post_pref(self, apt_packages, packages, upgrade=False): msg="Adding MySQL into Git") elif os.path.exists('/etc/mysql/conf.d/my.cnf'): if ((WOAptGet.is_installed( - self, 'mariadb-server-10.5')) and + self, + 'mariadb-server-{0}').format(WOVar.mariadb_ver)) and not (WOFileUtils.grepcheck( self, '/etc/mysql/conf.d/my.cnf', 'socket'))): try: diff --git a/wo/core/variables.py b/wo/core/variables.py index 39bba81..08d5c40 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -187,7 +187,7 @@ class WOVar(): # APT repositories wo_mysql_repo = ("deb [arch=amd64,arm64,ppc64el] " "http://mariadb.mirrors.ovh.net/MariaDB/repo/" - "10.5/{distro} {codename} main" + "10.6/{distro} {codename} main" .format(distro=wo_distro, codename=wo_platform_codename)) if wo_distro == 'ubuntu': From af2a42c434a4250ab9cec3515a1777b7f06eb670 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Thu, 8 Sep 2022 21:03:59 +0200 Subject: [PATCH 06/16] Remove useless conditions about old distro --- wo/cli/plugins/stack_pref.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/wo/cli/plugins/stack_pref.py b/wo/cli/plugins/stack_pref.py index 597c0d7..e2a9317 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -126,10 +126,6 @@ def pre_pref(self, apt_packages): if WOVar.wo_platform_codename == 'bionic': Log.debug(self, 'Adding ppa for nano') WORepo.add(self, ppa=WOVar.wo_ubuntu_backports) - elif WOVar.wo_platform_codename == 'xenial': - Log.debug(self, 'Adding ppa for nano') - WORepo.add_key(self, WOVar.wo_nginx_key) - WORepo.add(self, repo_url=WOVar.wo_extra_repo) else: if (not WOFileUtils.grepcheck( self, '/etc/apt/sources.list/wo-repo.list', @@ -2008,7 +2004,9 @@ def pre_stack(self): # use tcp_bbr congestion algorithm only on new kernels if (WOVar.wo_platform_codename == 'bionic' or WOVar.wo_platform_codename == 'focal' or - WOVar.wo_platform_codename == 'buster'): + WOVar.wo_platform_codename == 'buster' or + WOVar.wo_platform_codename == 'jammy' or + WOVar.wo_platform_codename == 'bullseye'): try: WOShellExec.cmd_exec( self, 'modprobe tcp_bbr') From 426fb7ce5283674e1bfd3309131865681fde7fe9 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Thu, 8 Sep 2022 21:18:42 +0200 Subject: [PATCH 07/16] Fix MariaDB conf --- wo/cli/plugins/stack_pref.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wo/cli/plugins/stack_pref.py b/wo/cli/plugins/stack_pref.py index e2a9317..0498800 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -1347,7 +1347,7 @@ def post_pref(self, apt_packages, packages, upgrade=False): # set innodb_buffer_pool_instances depending # on the amount of RAM - WOService.restart_service(self, 'mysql') + WOService.restart_service(self, 'mariadb') # WOFileUtils.mvfile(self, '/var/lib/mysql/ib_logfile0', # '/var/lib/mysql/ib_logfile0.bak') From 0b08eb1db89f0353dd2638e5b312f06561f0b29c Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 10:44:34 +0200 Subject: [PATCH 08/16] Fix MariaDB bind to localhost --- wo/cli/templates/my.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wo/cli/templates/my.mustache b/wo/cli/templates/my.mustache index 15300b9..9880026 100644 --- a/wo/cli/templates/my.mustache +++ b/wo/cli/templates/my.mustache @@ -45,7 +45,7 @@ skip-external-locking # # Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. -bind-address = ::ffff:127.0.0.1 +bind-address = localhost # # * Fine Tuning # From 12a3c762f30e977e00c1fc7cd4d77f3c5c6486b2 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 10:51:08 +0200 Subject: [PATCH 09/16] Set MariaDB 10.6 properly --- wo/core/variables.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wo/core/variables.py b/wo/core/variables.py index 10833bc..3bf07b7 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -182,10 +182,7 @@ class WOVar(): else: mariadb_ver = '10.3' else: - if wo_platform_codename == 'jammy': - mariadb_ver = '10.8' - else: - mariadb_ver = '10.5' + mariadb_ver = '10.6' wo_mysql = wo_mysql + ["mariadb-backup"] wo_mysql_client = ["mariadb-client", "python3-mysqldb"] From c57ca89d7ec79db54fa9fde479b49e2961f2cfbe Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 11:00:14 +0200 Subject: [PATCH 10/16] Fix http2_max deprecated Nginx directive --- wo/cli/templates/tweaks.mustache | 3 --- 1 file changed, 3 deletions(-) diff --git a/wo/cli/templates/tweaks.mustache b/wo/cli/templates/tweaks.mustache index 8e16422..8e7a86f 100644 --- a/wo/cli/templates/tweaks.mustache +++ b/wo/cli/templates/tweaks.mustache @@ -1,9 +1,6 @@ # NGINX Tweaks - WordOps {{release}} directio 4m; directio_alignment 512; - #http2_max_field_size 16k; - #http2_max_header_size 32k; - large_client_header_buffers 8 64k; postpone_output 1460; From e9b29820d59e70a68bcf10dcf2ef2e93c15ff50e Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 11:18:14 +0200 Subject: [PATCH 11/16] Fix MariaDB version --- wo/cli/plugins/stack_pref.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wo/cli/plugins/stack_pref.py b/wo/cli/plugins/stack_pref.py index 0498800..1b0cd09 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -1276,7 +1276,7 @@ def post_pref(self, apt_packages, packages, upgrade=False): elif os.path.exists('/etc/mysql/conf.d/my.cnf'): if ((WOAptGet.is_installed( self, - 'mariadb-server-{0}').format(WOVar.mariadb_ver)) and + 'mariadb-server-{0}'.format(WOVar.mariadb_ver))) and not (WOFileUtils.grepcheck( self, '/etc/mysql/conf.d/my.cnf', 'socket'))): try: From 03ac2c50dacf4726c3a6aa89c524a234bd4012bf Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 11:50:58 +0200 Subject: [PATCH 12/16] Update GitHub actions for multi distro testing --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee1c271..9dccccd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,10 @@ on: jobs: my_job: name: test WordOps - runs-on: ubuntu-18.04 + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, ubuntu-18.04, ubuntu-20.04] steps: - uses: actions/checkout@v2 From 1836fe66d554fbf940c12ba7c17ff4281b311eec Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 11:56:33 +0200 Subject: [PATCH 13/16] Add Ubuntu 22.04 LTS to GitHub Actions --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9dccccd..5c5dc64 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, ubuntu-18.04, ubuntu-20.04] + os: [ubuntu-latest, ubuntu-18.04, ubuntu-22.04] steps: - uses: actions/checkout@v2 From 62e453c6c7ac797d7d2bbb581f38597905a5aad2 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 12:14:24 +0200 Subject: [PATCH 14/16] Keep only Ubuntu 20.04 & 18.04 for GitHub Actions --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5c5dc64..88477c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, ubuntu-18.04, ubuntu-22.04] + os: [ubuntu-20.04, ubuntu-18.04] steps: - uses: actions/checkout@v2 From 0a8ca06b8e6a67606ca8a31f986122d998b5729c Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 14:20:20 +0200 Subject: [PATCH 15/16] Prepare for release v3.15.0 --- CHANGELOG.md | 11 +++++++++-- README.md | 10 +++++++--- install | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a6a78e..57185cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,16 +8,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.15.1 - [Unreleased] -### v3.15.0 - 2022-05-26 +### v3.15.0 - 2022-09-09 + +#### Added + +- Ubuntu 22.04 LTS Support #### Changed -- New Nginx package based on latest Nginx stable release 1.20.2 +- 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 #### Fixed - `wo log reset --all` ([PR #438](https://github.com/WordOps/WordOps/pull/438)) +- Outdated Nginx directives +- Netdata stack upgrade([PR #439](https://github.com/WordOps/WordOps/pull/439)) ### v3.14.2 - 2022-04-29 diff --git a/README.md b/README.md index 1645fc1..24fdbe0 100644 --- a/README.md +++ b/README.md @@ -58,16 +58,20 @@ #### Recommended +- Ubuntu 22.04 LTS (Jammy) - Ubuntu 20.04 LTS (Focal) - Ubuntu 18.04 LTS (Bionic) #### Also compatible -- Debian 9 (Stretch) - Debian 10 (Buster) -- Raspbian 9 (Stretch) - Raspbian 10 (Buster) +#### For testing purpose only + +- Debian 11 (Bullseye) +- Raspbian 11 (Bullseye) + ## Getting Started ```bash @@ -121,7 +125,7 @@ wo site create example.com --html # create example.com for static/html sites wo site create example.com --php # create example.com with php 8.0 support wo site create example.com --php80 # create example.com with php 8.0 support wo site create example.com --php74 # create example.com with php 7.4 support -wo site create example.com --mysql # create example.com with php 7.3 & mysql support +wo site create example.com --mysql # create example.com with php 8.0 & mysql support wo site create example.com --mysql --php81 # create example.com with php 8.1 & mysql support wo site create example.com --mysql --php73 # create example.com with php 7.3 & mysql support wo site create example.com --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy diff --git a/install b/install index dbdeef2..e8b2438 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.15.0 - 2022-05-26 +# Version 3.15.0 - 2022-09-09 # ------------------------------------------------------------------------- # CONTENTS From 98cf64b85c68005b1929a37884e0388c237fa218 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 14:28:42 +0200 Subject: [PATCH 16/16] Update phpmyadmin to 5.2.0 --- wo/core/variables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wo/core/variables.py b/wo/core/variables.py index 3bf07b7..8fd8669 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -19,7 +19,7 @@ class WOVar(): # WordOps packages versions wo_wp_cli = "2.6.0" wo_adminer = "4.8.1" - wo_phpmyadmin = "5.0.2" + wo_phpmyadmin = "5.2.0" wo_extplorer = "2.1.13" wo_dashboard = "1.2"