From bd49c60a4126c7ce24f7fd705e1273a6a725964a Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Wed, 3 Dec 2025 13:13:55 +0100 Subject: [PATCH 1/3] changelog --- ChangeLog | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/ChangeLog b/ChangeLog index decef3e11..a1d8e96a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,38 @@ +# 2025-12-05 Version 3.19.0 + +Release addressing a regression (gateway transport failing) and some bugfixes + +## What's Changed +* [ci] add git-archive ignore list (#11994) +* [client,common] fix retry counter (#11996) +* [cmake] fix aarch64 neon detection (#11998) +* Fix response body existence check when using RDP Gateway (#12002) +* fix line clipping issue (#12005) +* Clip coord fix (#12006) +* [core,input] Add debug log to keyboard state sync (#12008) +* Update command line usage for gateway option (#12011) +* [codec,ffmpeg] 8.0 dropped AV_PROFILE_AAC_MAIN (#12012) +* [channels,audin] fix pulse memory leak (#12013) +* [channels,drive] Small performance improvements in drive channel (#12014) +* [winpr,utils] fix command line error logging (#12021) +* [common,test] Adjust AVC and H264 expectations. (#12020) +* drdynvc: implement compressed packet (#12028) +* [channels,rdpecam] improve log messages (#12029) +* Fix remote credential guard channel loading (#12031) +* Fix inverted ifdef (#12032) +* [core,nego] disable all enabled modes except the one requested (#12035) +* rdpear: handle basic NTLM commands and fix server-side (#12039) +* [smartcardlogon] Fix off-by-one error in `smartcard_hw_enumerateCerts` (#12042) +* rdpecam: fix camera sample grabbing (#12041) + +## New Contributors +* @kov-serg made their first contribution in (#12005) +* @alexiri made their first contribution in (#12011) +* @nteodosio made their first contribution in (#12020) + +For a complete and detailed change log since the last release run: +git log 3.19.0...3.18.0 + # 2025-11-12 Version 3.18.0 Minor improvements and bugfix release. From 300a4e6d60aa072cb7201b6d32c0dc925092fb9a Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Wed, 3 Dec 2025 13:14:32 +0100 Subject: [PATCH 2/3] release-3.19.0 --- cmake/GetProjectVersion.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/GetProjectVersion.cmake b/cmake/GetProjectVersion.cmake index 741684fa9..f0631bc05 100644 --- a/cmake/GetProjectVersion.cmake +++ b/cmake/GetProjectVersion.cmake @@ -4,7 +4,7 @@ option(USE_GIT_FOR_REVISION "Extract git tag/commit" OFF) function(get_project_version VERSION_MAJOR VERSION_MINOR VERSION_REVISION VERSION_SUFFIX GIT_REVISION) # Default version, hard codec per release - set(RAW_VERSION_STRING "3.18.1-dev0") + set(RAW_VERSION_STRING "3.19.0") set(VERSION_REGEX "^(.*)([0-9]+)\\.([0-9]+)\\.([0-9]+)-?(.*)") From 58742e4da7c9b8ea7b994d1aa18e303779e6603a Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Wed, 3 Dec 2025 13:14:49 +0100 Subject: [PATCH 3/3] dev-cycle-3.19.1-dev0 --- cmake/GetProjectVersion.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/GetProjectVersion.cmake b/cmake/GetProjectVersion.cmake index f0631bc05..8643a8638 100644 --- a/cmake/GetProjectVersion.cmake +++ b/cmake/GetProjectVersion.cmake @@ -4,7 +4,7 @@ option(USE_GIT_FOR_REVISION "Extract git tag/commit" OFF) function(get_project_version VERSION_MAJOR VERSION_MINOR VERSION_REVISION VERSION_SUFFIX GIT_REVISION) # Default version, hard codec per release - set(RAW_VERSION_STRING "3.19.0") + set(RAW_VERSION_STRING "3.19.1-dev0") set(VERSION_REGEX "^(.*)([0-9]+)\\.([0-9]+)\\.([0-9]+)-?(.*)")