ZNC 1.10.1

This commit is contained in:
Alexey Sokolov
2025-07-01 22:13:30 +01:00
parent e3d5c6c87f
commit f891382570
2 changed files with 16 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.13)
project(ZNC VERSION 1.10.1 LANGUAGES CXX)
set(ZNC_VERSION 1.10.1)
set(append_git_version false)
set(alpha_version "-rc1") # e.g. "-rc1"
set(alpha_version "") # e.g. "-rc1"
set(VERSION_EXTRA "" CACHE STRING
"Additional string appended to version, e.g. to mark distribution")

View File

@@ -1,3 +1,18 @@
# ZNC 1.10.1 (2025-07-01)
This release fixes several regressions and features introduced in 1.10.0.
## Fixes
* Fix use-after-free in capabilities handling. The visible effect of this was either crash, or some capabilities having wrong state.
* Fix nullptr dereference in TAGMSG handling.
* Preserve `DisableClientCap/DisableServerCap` settings when writing config.
## New
* The listening unix socket can now be configured to belong to a specific group and/or to have a specific file access mode. The syntax for AddPort command is `unix:ssl,group=mygroup,mode=666:/path`, some of these options can be skipped if the feature is not needed.
# ZNC 1.10.0 (2025-06-09)
## New