From c746767ec00011305653d867b1e83d7d857394c3 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Tue, 11 Jun 2024 22:49:53 +0200 Subject: [PATCH] Bump release to v3.21.2 --- CHANGELOG.md | 10 ++++++++++ install | 2 +- setup.py | 2 +- wo/cli/plugins/stack_pref.py | 4 ++-- wo/core/variables.py | 2 +- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b145e2f..079be38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.22.0 - [Unreleased] +### v3.21.2 - 2024-06-11 + +#### Added + +- "$http3" variable in access_logs + +#### Fixed + +- $host variable for fastcgi_params et proxy_params + ### v3.21.1 - 2024-06-11 #### Fixed diff --git a/install b/install index 6333c9f..ba22a1a 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.21.1 - 2024-06-11 +# Version 3.21.2 - 2024-06-11 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index e5543af..7543236 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.21.1', + version='3.21.2', 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 30cf1d8..cfe7e6c 100644 --- a/wo/cli/plugins/stack_pref.py +++ b/wo/cli/plugins/stack_pref.py @@ -258,7 +258,7 @@ def post_pref(self, apt_packages, packages, upgrade=False): "$upstream_response_time " "$srcache_fetch_status " "[$time_local] '\n" - "'$http_host \"$request\" $status" + "'$host \"$request\" $status" " $body_bytes_sent '\n" "'\"$http_referer\" " "\"$http_user_agent\"';\n") @@ -897,7 +897,7 @@ def post_pref(self, apt_packages, packages, upgrade=False): "# Log format Settings\n" "log_format rt_cache_redis '$remote_addr " "$upstream_response_time $srcache_fetch_status " - "[$time_local] '\n '$http_host \"$request\" " + "[$time_local] '\n '$host \"$request\" " "$status $body_bytes_sent '\n'\"$http_referer\" " "\"$http_user_agent\"';\n") # set redis.conf parameter diff --git a/wo/core/variables.py b/wo/core/variables.py index 7c7e86a..183f2cc 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -15,7 +15,7 @@ class WOVar(): """Intialization of core variables""" # WordOps version - wo_version = "3.21.1" + wo_version = "3.21.2" # WordOps packages versions wo_adminer = "4.8.1" wo_phpmyadmin = "5.2.0"