From 02962b9359f6986b17f9eb6d4288ba15b14d6edb Mon Sep 17 00:00:00 2001 From: themilchenko Date: Tue, 11 Nov 2025 16:58:22 +0300 Subject: [PATCH 1/2] ci: add roles subdirectory for coveralls report --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 37ee51ea..0a7335e1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,7 +55,7 @@ add_custom_target(coverage ) if(DEFINED ENV{GITHUB_TOKEN}) - set(COVERALLS_COMMAND ${LUACOVCOVERALLS} --include ^http --verbose --repo-token $ENV{GITHUB_TOKEN}) + set(COVERALLS_COMMAND ${LUACOVCOVERALLS} --include ^http --include ^roles --verbose --repo-token $ENV{GITHUB_TOKEN}) else() set(COVERALLS_COMMAND ${CMAKE_COMMAND} -E echo "Skipped uploading to coveralls.io: no token.") endif() From 0aeb7fe7b96a1c0378c0a5c1e11d10c92c091c46 Mon Sep 17 00:00:00 2001 From: themilchenko Date: Tue, 11 Nov 2025 14:15:31 +0300 Subject: [PATCH 2/2] Release 1.9.0 --- CHANGELOG.md | 17 +++++++++++++---- http/version.lua | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ad867cf..20437151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## Added +### Added -- `ssl_verify_client` option (#207). +### Changed + +### Fixed + +## [1.9.0] - 2025-11-11 -## Changed +The release introduces a new `ssl_verify_client` option and changes default +behavior with provided `ca_file` param. Also a few bugs were fixed. -## Fixed +### Added + +- `ssl_verify_client` option (#207). + +### Fixed - Do not recreate server if it's address and port were not changed (#219). - Server doesn't change after updating parameters on config reload (#216). diff --git a/http/version.lua b/http/version.lua index c7cf31a6..d604410f 100644 --- a/http/version.lua +++ b/http/version.lua @@ -1,4 +1,4 @@ -- Сontains the module version. -- Requires manual update in case of release commit. -return '1.8.0' +return '1.9.0'