chore: bump app versions + add changelog

Bump `emqx_plugin_libs` app version to 4.3.7.
This commit is contained in:
Andrew Mayorov 2023-03-08 19:30:15 +03:00
parent 781942cc4f
commit e571b602b8
No known key found for this signature in database
GPG Key ID: 2837C62ACFBFED5D
3 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
%% -*- mode: erlang -*-
{application, emqx_plugin_libs, [
{description, "EMQX Plugin utility libs"},
{vsn, "4.3.6"},
{vsn, "4.3.7"},
{modules, []},
{applications, [kernel, stdlib]},
{env, []}

View File

@ -0,0 +1,3 @@
Stop MySQL client from bombarding server repeatedly with unnecessary `PREPARE` queries on every batch, trashing the server and exhausting its internal limits. This was happening when the MySQL bridge was in the batch mode.
Ensure safer and more careful escaping of strings and binaries in batch insert queries when the MySQL bridge is in the batch mode.

View File

@ -0,0 +1 @@
优化 MySQL 桥接在批量模式下能更高效的使用预处理语句 ,减少了对 MySQL 服务器的查询压力, 并确保对 SQL 语句进行更安全和谨慎的转义。