Prepare for release 3.15.3

This commit is contained in:
VirtuBox
2022-10-24 17:06:13 +02:00
parent 917f13d708
commit 873b70c8d5
5 changed files with 16 additions and 10 deletions

View File

@@ -8,19 +8,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### v3.16.0 - [Unreleased] ### v3.16.0 - [Unreleased]
### v3.15.3 - 2022-10-24
#### Added
- Support for Debian 10/11
#### Changed #### Changed
- Install redis from official repository - Install redis from official repository
- Redis version bump to 7.0.5 - Redis version bump to 7.0.5
- WP-CLI version bump to 2.7.1 - WP-CLI version bump to 2.7.1
- Outdated Nginx directives removed by @nsgoyat - Remove outdated Nginx directives
- Updated repository GPG Key - Updated repository GPG Key
- UFW stack detect proftpd during install
#### Fixed #### Fixed
- Netdata upgrade failure on old servers - Netdata upgrade failure on old servers
- MariaDB service disabled after upgrade with `wo stack migrate --mariadb` - MariaDB service disabled after upgrade with `wo stack migrate --mariadb`
- Proftpd install on Ubuntu 22.04 - Proftpd install on Ubuntu 22.04 and Debian 11
### v3.15.2 - 2022-09-23 ### v3.15.2 - 2022-09-23

View File

@@ -66,11 +66,11 @@
#### Also compatible #### Also compatible
- Debian 10 (Buster) - Debian 10 (Buster)
- Raspbian 10 (Buster) - Debian 11 (Bullseye)
#### For testing purpose only #### For testing purpose only
- Debian 11 (Bullseye) - Raspbian 10 (Buster)
- Raspbian 11 (Bullseye) - Raspbian 11 (Bullseye)
## Getting Started ## Getting Started
@@ -124,10 +124,9 @@ wo site create example.com --wpsubdomain --wpce # install wpmu-subdomain + C
wo site create example.com --html # create example.com for static/html sites 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 --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 --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 --php81 # create example.com with php 8.1 support
wo site create example.com --mysql # create example.com with php 8.0 & 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 --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 wo site create example.com --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy
``` ```
@@ -195,7 +194,7 @@ Third-party debian packages shipped with WordOps :
- [Nginx-wo by WordOps](https://build.opensuse.org/package/show/home:virtubox:WordOps/nginx) - [Nginx-wo by WordOps](https://build.opensuse.org/package/show/home:virtubox:WordOps/nginx)
- [PHP by Ondřej Surý](https://launchpad.net/~ondrej/+archive/ubuntu/php) - [PHP by Ondřej Surý](https://launchpad.net/~ondrej/+archive/ubuntu/php)
- [Redis by Chris Lea](https://launchpad.net/~chris-lea/+archive/ubuntu/redis-server) - [Redis](https://redis.io/docs/getting-started/installation/install-redis-on-linux/)
WordPress Cache Plugins supported by WordOps : WordPress Cache Plugins supported by WordOps :

View File

@@ -9,7 +9,7 @@
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo # wget -qO wo wops.cc && sudo -E bash wo
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# Version 3.15.2 - 2022-09-23 # Version 3.15.3 - 2022-10-24
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# CONTENTS # CONTENTS

View File

@@ -27,7 +27,7 @@ if os.geteuid() == 0:
os.makedirs('/var/lib/wo/tmp/') os.makedirs('/var/lib/wo/tmp/')
setup(name='wordops', setup(name='wordops',
version='3.15.2', version='3.15.3',
description='An essential toolset that eases server administration', description='An essential toolset that eases server administration',
long_description=LONG, long_description=LONG,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',

View File

@@ -15,7 +15,7 @@ class WOVar():
"""Intialization of core variables""" """Intialization of core variables"""
# WordOps version # WordOps version
wo_version = "3.15.2" wo_version = "3.15.3"
# WordOps packages versions # WordOps packages versions
wo_wp_cli = "2.7.1" wo_wp_cli = "2.7.1"
wo_adminer = "4.8.1" wo_adminer = "4.8.1"