From 505e70eda994d1ab3c7246ecec5b938cfadc4222 Mon Sep 17 00:00:00 2001 From: blag Date: Mon, 15 Mar 2021 21:19:07 -0700 Subject: [PATCH 1/2] Manually add the release notes for v3.4.1 to changelog --- CHANGELOG.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a57583864e..17c7305660 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -40,6 +40,27 @@ Changed * Import ABC from collections.abc for Python 3.10 compatibility. (#5007) Contributed by @tirkarthi +3.4.1 - March 14, 2021 +---------------------- + +Added +~~~~~ + +* Update the service start up code to warn if the service locale encoding is not set to `utf-8` #5184 + + Contributed by @Kami + +Changed +~~~~~~~ + +* Use `sudo -E` to fix GitHub Actions tests #5187 + + Contributed by @cognifloyd + +* Properly handle unicode strings in logs #5184 + + Contributed by @Kami + 3.4.0 - March 02, 2021 ---------------------- From 5deca3a22371cb224bb2bedba122f374131bbe2f Mon Sep 17 00:00:00 2001 From: blag Date: Fri, 19 Mar 2021 15:47:42 -0700 Subject: [PATCH 2/2] Move #5184 into the Fixed section, add more description, the CVE ID, and a link to our blog post --- CHANGELOG.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5d475f641..25db2d803e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -60,8 +60,16 @@ Changed Contributed by @cognifloyd +Fixed +~~~~~ + * Properly handle unicode strings in logs #5184 + Fix a logging loop when attempting to encode Unicode characters in locales that do not support + Unicode characters - CVE-2021-28667. + + See https://stackstorm.com/2021/03/10/stackstorm-v3-4-1-security-fix/ for more information. + Contributed by @Kami 3.4.0 - March 02, 2021