chore: bump retainer version
This commit is contained in:
parent
cd2cf15677
commit
6b0de714bc
|
@ -2,7 +2,7 @@
|
||||||
{application, emqx_retainer, [
|
{application, emqx_retainer, [
|
||||||
{description, "EMQX Retainer"},
|
{description, "EMQX Retainer"},
|
||||||
% strict semver, bump manually!
|
% strict semver, bump manually!
|
||||||
{vsn, "5.0.6"},
|
{vsn, "5.0.7"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, [emqx_retainer_sup]},
|
{registered, [emqx_retainer_sup]},
|
||||||
{applications, [kernel, stdlib, emqx]},
|
{applications, [kernel, stdlib, emqx]},
|
||||||
|
|
|
@ -297,7 +297,7 @@ do_deliver([Msg | T], Pid, Topic) ->
|
||||||
ignore_retained_message_deliver,
|
ignore_retained_message_deliver,
|
||||||
#{
|
#{
|
||||||
reason => "client is banned",
|
reason => "client is banned",
|
||||||
clienid => Msg#message.from
|
clientid => Msg#message.from
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
||||||
- Improve the integration of the `banned` and the `retain` feature [#9326](https://github.com/emqx/emqx/pull/9326).
|
- Security enhancement for retained messages [#9326](https://github.com/emqx/emqx/pull/9326).
|
||||||
The retained messages that its source client is banned will be filtered out when they are delivered.
|
The retained messages will not be published if the publisher client is banned.
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
## 增强
|
## 增强
|
||||||
|
|
||||||
- 增强 `封禁` 和 `保留消息` 这两个功能的集成性 [#9332](https://github.com/emqx/emqx/pull/9332)。
|
- 增强 `保留消息` 的安全性 [#9332](https://github.com/emqx/emqx/pull/9332)。
|
||||||
现在投递保留消息前,会先过滤掉来源客户端被封禁了的那些消息。
|
现在投递保留消息前,会先过滤掉来源客户端被封禁了的那些消息。
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
|
|
Loading…
Reference in New Issue