Bump release to v3.21.2

This commit is contained in:
VirtuBox
2024-06-11 22:49:53 +02:00
parent 60835841c9
commit c746767ec0
5 changed files with 15 additions and 5 deletions

View File

@@ -8,6 +8,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### v3.22.0 - [Unreleased] ### 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 ### v3.21.1 - 2024-06-11
#### Fixed #### Fixed

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.21.1 - 2024-06-11 # Version 3.21.2 - 2024-06-11
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# 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.21.1', version='3.21.2',
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

@@ -258,7 +258,7 @@ def post_pref(self, apt_packages, packages, upgrade=False):
"$upstream_response_time " "$upstream_response_time "
"$srcache_fetch_status " "$srcache_fetch_status "
"[$time_local] '\n" "[$time_local] '\n"
"'$http_host \"$request\" $status" "'$host \"$request\" $status"
" $body_bytes_sent '\n" " $body_bytes_sent '\n"
"'\"$http_referer\" " "'\"$http_referer\" "
"\"$http_user_agent\"';\n") "\"$http_user_agent\"';\n")
@@ -897,7 +897,7 @@ def post_pref(self, apt_packages, packages, upgrade=False):
"# Log format Settings\n" "# Log format Settings\n"
"log_format rt_cache_redis '$remote_addr " "log_format rt_cache_redis '$remote_addr "
"$upstream_response_time $srcache_fetch_status " "$upstream_response_time $srcache_fetch_status "
"[$time_local] '\n '$http_host \"$request\" " "[$time_local] '\n '$host \"$request\" "
"$status $body_bytes_sent '\n'\"$http_referer\" " "$status $body_bytes_sent '\n'\"$http_referer\" "
"\"$http_user_agent\"';\n") "\"$http_user_agent\"';\n")
# set redis.conf parameter # set redis.conf parameter

View File

@@ -15,7 +15,7 @@ class WOVar():
"""Intialization of core variables""" """Intialization of core variables"""
# WordOps version # WordOps version
wo_version = "3.21.1" wo_version = "3.21.2"
# WordOps packages versions # WordOps packages versions
wo_adminer = "4.8.1" wo_adminer = "4.8.1"
wo_phpmyadmin = "5.2.0" wo_phpmyadmin = "5.2.0"