chore: bump emqx_utils version && changes

This commit is contained in:
firest 2023-08-07 17:53:28 +08:00
parent 7567d211da
commit 3e9155fdb1
2 changed files with 9 additions and 1 deletions

View File

@ -2,7 +2,7 @@
{application, emqx_utils, [
{description, "Miscellaneous utilities for EMQX apps"},
% strict semver, bump manually!
{vsn, "5.0.5"},
{vsn, "5.0.6"},
{modules, [
emqx_utils,
emqx_utils_api,

View File

@ -0,0 +1,8 @@
Improved the placeholder syntax of rule engine.
The parameters of actions support using placeholder syntax to
dynamically fill in the content of strings. The format of the
placeholder syntax is `${key}`.
Before this improvement, the `key` in `${key}` could only contain
letters, numbers, and underscores. Now the `key` supports any UTF8
characters.