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`