From 1a21ab10fab4f124c29c6a6778f589f57f176e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Thu, 6 Jun 2024 22:09:02 +0200 Subject: [PATCH] core: add version 4.3.2 in ChangeLog --- CHANGELOG.md | 17 +++++++++++++++++ version.sh | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65b0e4496..cee4a2c9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,23 @@ - tests: fix compilation of tests on Fedora 40 ([#2116](https://github.com/weechat/weechat/issues/2116)) - tests: fix compilation of tests on Rocky 9.4 +## Version 4.3.2 (2024-06-06) + +### Changed + +- relay: enable websocket extension "permessage-deflate" with "api" relay only ([#1549](https://github.com/weechat/weechat/issues/1549)) + +### Added + +- relay: add option relay.look.raw_messages_max_length ([#2122](https://github.com/weechat/weechat/issues/2122)) + +### Fixed + +- irc, xfer: fix display of input prompt in IRC private buffers and DCC chat buffers ([#2128](https://github.com/weechat/weechat/issues/2128)) +- irc: don't return pointer to irc server if the channel or nick is not found in info "irc_buffer" +- relay: fix websocket permessage-deflate extension when the client doesn't send the max window bits parameters ([#1549](https://github.com/weechat/weechat/issues/1549)) +- relay: fix allocation and reinit of field "client_context_takeover" in websocket deflate structure ([#1549](https://github.com/weechat/weechat/issues/1549)) + ## Version 4.3.1 (2024-05-31) ### Fixed diff --git a/version.sh b/version.sh index 01587b377..c5c5d62ef 100755 --- a/version.sh +++ b/version.sh @@ -39,7 +39,7 @@ # devel-number the devel version as hex number ("0x04010000" for "4.1.0-dev") # -weechat_stable="4.3.0" +weechat_stable="4.3.2" weechat_devel="4.4.0-dev" stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)