Merge branch 'release-55' into sync-r55-m-20240220

This commit is contained in:
Thales Macedo Garitezi 2024-02-20 16:33:34 -03:00
commit 74dbbf6d9d
7 changed files with 10 additions and 5 deletions

View File

@ -2,7 +2,7 @@
{application, emqx, [
{id, "emqx"},
{description, "EMQX Core"},
{vsn, "5.1.19"},
{vsn, "5.1.20"},
{modules, []},
{registered, []},
{applications, [

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{application, emqx_bridge_http, [
{description, "EMQX HTTP Bridge and Connector Application"},
{vsn, "0.2.2"},
{vsn, "0.2.3"},
{registered, []},
{applications, [kernel, stdlib, emqx_resource, ehttpc]},
{env, [{emqx_action_info_modules, [emqx_bridge_http_action_info]}]},

View File

@ -878,9 +878,9 @@ redact(Data) ->
%% and we also can't know the body format and where the sensitive data will be
%% so the easy way to keep data security is redacted the whole body
redact_request({Path, Headers}) ->
{Path, Headers};
{Path, redact(Headers)};
redact_request({Path, Headers, _Body}) ->
{Path, Headers, <<"******">>}.
{Path, redact(Headers), <<"******">>}.
clientid(Msg) -> maps:get(clientid, Msg, undefined).

View File

@ -1,6 +1,6 @@
{application, emqx_mongodb, [
{description, "EMQX MongoDB Connector"},
{vsn, "0.1.5"},
{vsn, "0.1.6"},
{registered, []},
{applications, [
kernel,

View File

@ -0,0 +1 @@
Redacted authorization headers from debug logs from HTTP bridge.

View File

@ -0,0 +1,3 @@
Improve MongoDB connector performance.
- [mongodb-erlang PR](https://github.com/emqx/mongodb-erlang/pull/41)