From d9e7d365804fa9a7fc43a8f12469651232f5f6e2 Mon Sep 17 00:00:00 2001 From: firest Date: Mon, 14 Nov 2022 09:45:38 +0800 Subject: [PATCH] chore: bump version && update changes --- apps/emqx_management/src/emqx_management.app.src | 2 +- changes/v5.0.11-en.md | 2 ++ changes/v5.0.11-zh.md | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/emqx_management/src/emqx_management.app.src b/apps/emqx_management/src/emqx_management.app.src index b91b6a8b1..ab726cbb2 100644 --- a/apps/emqx_management/src/emqx_management.app.src +++ b/apps/emqx_management/src/emqx_management.app.src @@ -2,7 +2,7 @@ {application, emqx_management, [ {description, "EMQX Management API and CLI"}, % strict semver, bump manually! - {vsn, "5.0.7"}, + {vsn, "5.0.8"}, {modules, []}, {registered, [emqx_management_sup]}, {applications, [kernel, stdlib, emqx_plugins, minirest, emqx]}, diff --git a/changes/v5.0.11-en.md b/changes/v5.0.11-en.md index b73bb4247..f35d11719 100644 --- a/changes/v5.0.11-en.md +++ b/changes/v5.0.11-en.md @@ -5,6 +5,8 @@ - Security enhancement for retained messages [#9326](https://github.com/emqx/emqx/pull/9326). The retained messages will not be published if the publisher client is banned. +- Security enhancement for the `subscribe` API [#9355](https://github.com/emqx/emqx/pull/9355). + ## Bug fixes - Return 404 for status of unknown authenticator in `/authenticator/{id}/status` [#9328](https://github.com/emqx/emqx/pull/9328). diff --git a/changes/v5.0.11-zh.md b/changes/v5.0.11-zh.md index 959061f6a..c16c3193a 100644 --- a/changes/v5.0.11-zh.md +++ b/changes/v5.0.11-zh.md @@ -5,6 +5,8 @@ - 增强 `保留消息` 的安全性 [#9332](https://github.com/emqx/emqx/pull/9332)。 现在投递保留消息前,会先过滤掉来源客户端被封禁了的那些消息。 +- 增强订阅 API 的安全性 [#9355](https://github.com/emqx/emqx/pull/9355)。 + ## 修复 - 通过 `/authenticator/{id}/status` 请求未知认证器的状态时,将会返回 404。