diff --git a/CHANGELOG.md b/CHANGELOG.md index 72a6ba8..eaad2db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.17.0 - [Unreleased] +#### Changed + +- MariaDB default version is now 10.11 +- 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 + ### v3.16.3 - 2023-01-29 #### Fixed @@ -106,7 +112,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - 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.11 +- MariaDB default version is now 10.6 #### Fixed diff --git a/README.md b/README.md index 7d85076..1776947 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,12 @@
@@ -41,8 +39,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.22.1 - TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli support -- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0, 8.1 & 8.2 - MariaDB 10.11 & Redis 7.0 +- **Custom Nginx build** : Nginx 1.24.0 - TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli support +- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0, 8.1 & 8.2 - MariaDB 10.11 LTS & Redis 7.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 @@ -61,7 +59,6 @@ - Ubuntu 22.04 LTS (Jammy) - Ubuntu 20.04 LTS (Focal) -- Ubuntu 18.04 LTS (Bionic) #### Also compatible @@ -122,10 +119,10 @@ wo site create example.com --wpsubdomain --wpce # install wpmu-subdomain + C ```bash 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.1 support wo site create example.com --php80 # create example.com with php 8.0 support wo site create example.com --php81 # create example.com with php 8.1 support -wo site create example.com --php82 # create example.com with php 8.1 support +wo site create example.com --php82 # create example.com with php 8.2 support wo site create example.com --mysql # 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 --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy diff --git a/requirements.txt b/requirements.txt index 982fe99..c250852 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ cement==2.10.12 -pynginxconfig>=0.3.4 -PyMySQL>=0.10.1 -psutil>=5.9.4 -sh>=1.14.3 -SQLAlchemy>=1.4.46 -requests>=2.28.1 -distro>=1.7.0 -argcomplete>=1.12.0 -colorlog>=4.6.2 +pynginxconfig==0.3.4 +PyMySQL==0.10.1 +psutil==5.9.4 +sh==1.14.3 +SQLAlchemy==1.4.46 +requests>=2.20.0 +distro==1.7.0 +argcomplete==1.12.0 +colorlog==4.6.2 diff --git a/setup.py b/setup.py index 706cd4f..11f9dce 100644 --- a/setup.py +++ b/setup.py @@ -62,16 +62,16 @@ setup(name='wordops', # "Sphinx >= 1.0", # Required to function 'cement == 2.10.12', - 'pystache >= 0.5.4', - 'pynginxconfig >= 0.3.4', - 'PyMySQL >= 0.10.1', - 'psutil >= 5.9.4', - 'sh >= 1.14.3', - 'SQLAlchemy == 1.4.48', - 'requests >= 2.28.1', - 'distro >= 1.7.0', - 'argcomplete >= 1.12.0', - 'colorlog >= 4.6.2', + 'pystache', + 'pynginxconfig', + 'PyMySQL == 0.10.1', + 'psutil', + 'sh', + 'SQLAlchemy == 1.4.46', + 'requests', + 'distro', + 'argcomplete', + 'colorlog', ], extras_require={ # Optional 'testing': ['nose', 'coverage'],