Forráskód Böngészése

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

Thales Macedo Garitezi 2 éve
szülő
commit
74dbbf6d9d

+ 1 - 1
apps/emqx/src/emqx.app.src

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

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 1 - 0
apps/emqx/test/emqx_static_checks_data/5.5.bpapi2


+ 1 - 1
apps/emqx_bridge_http/src/emqx_bridge_http.app.src

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

+ 2 - 2
apps/emqx_bridge_http/src/emqx_bridge_http_connector.erl

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

+ 1 - 1
apps/emqx_mongodb/src/emqx_mongodb.app.src

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

+ 1 - 0
changes/ce/fix-12542.en.md

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

+ 3 - 0
changes/ee/perf-12497.en.md

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