chore: bump version && update changes

This commit is contained in:
firest 2023-04-19 15:23:19 +08:00
parent 5455500647
commit 4f0c891aa6
3 changed files with 5 additions and 2 deletions

View File

@ -3,7 +3,7 @@
{id, "emqx"},
{description, "EMQX Core"},
% strict semver, bump manually!
{vsn, "5.0.23"},
{vsn, "5.0.24"},
{modules, []},
{registered, []},
{applications, [

View File

@ -2,7 +2,7 @@
{application, emqx_dashboard, [
{description, "EMQX Web Dashboard"},
% strict semver, bump manually!
{vsn, "5.0.18"},
{vsn, "5.0.19"},
{modules, []},
{registered, [emqx_dashboard_sup]},
{applications, [kernel, stdlib, mnesia, minirest, emqx, emqx_ctl]},

View File

@ -0,0 +1,3 @@
Fix a compatibility issue of limiter configuration introduced by v5.0.23 which broke the upgrade from previous versions if the `capacity` is `infinity`.
Since v5.0.23, we had instead of `capacity` by `burst`, after this fix, a `capacity` with `infinity` value will be converted to a `burst` with a zero value.