From 3527bfafdcf282b35d97efdd3017249187a2d6f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Zimmermann?= <101292599+ekneg54@users.noreply.github.com> Date: Wed, 22 Nov 2023 11:50:54 +0100 Subject: [PATCH] fix changelog (#479) --- CHANGELOG.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe7c95850..b4d2fd8c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ ## next release ### Breaking +* remove possibility to inject auth credentials via url string, because of the risk leaking credentials in logs + - if you want to use basic auth, then you have to set the environment variables + * :code:`LOGPREP_CONFIG_AUTH_USERNAME=` + * :code:`LOGPREP_CONFIG_AUTH_PASSWORD=` + - if you want to use oauth, then you have to set the environment variables + * :code:`LOGPREP_CONFIG_AUTH_TOKEN=` + * :code:`LOGPREP_CONFIG_AUTH_METHOD=oauth` + ### Features ### Improvements @@ -28,16 +36,6 @@ * new rule `id` could possibly break configurations if the same rule is used in both rule trees - can be fixed by adding a unique `id` to each rule or delete the possibly redundant rule -### Breaking - -* remove possibility to inject auth credentials via url string, because of the risk leaking credentials in logs - - if you want to use basic auth, then you have to set the environment variables - * :code:`LOGPREP_CONFIG_AUTH_USERNAME=` - * :code:`LOGPREP_CONFIG_AUTH_PASSWORD=` - - if you want to use oauth, then you have to set the environment variables - * :code:`LOGPREP_CONFIG_AUTH_TOKEN=` - * :code:`LOGPREP_CONFIG_AUTH_METHOD=oauth` - ### Features * add possibility to convert hex to int in `calculator` processor with new added function `from_hex`