docs: add changelogs

This commit is contained in:
Zaiming (Stone) Shi 2022-11-07 10:12:34 +01:00
parent 2f62426aca
commit b4b1ca27ab
2 changed files with 21 additions and 7 deletions

View File

@ -5,13 +5,18 @@
- Erlang/OTP [SSL library vulnerability fix](https://nvd.nist.gov/vuln/detail/CVE-2022-37026)
- Added support for OCSP (Online Certificate Status Protocol) Stapling
- Added CRL (Certificate Revocation List) cache auto refresh
- Added support for OCSP stapling and CRL
caching. #[9297](https://github.com/emqx/emqx/pull/9297).
- Added support for specifying custom modules for adding clientid and
common name
aliases. #[9297](https://github.com/emqx/emqx/pull/9297).
- Added support for specifying custom modules for custom
authentication. #[9297](https://github.com/emqx/emqx/pull/9297).
caching [#9297](https://github.com/emqx/emqx/pull/9297).
- Added support for specifying custom modules for adding clientid and common name
aliases [#9297](https://github.com/emqx/emqx/pull/9297).
Now you can implement a simple callback to enrich clients with aliases, and then use the aliases
in the authentication and authorization (ACL) rules' place holders (`%cida` for clientid alias
and `%cna` for username alias).
- Added support for specifying custom modules for custom authentication [#9297](https://github.com/emqx/emqx/pull/9297).
To support simple authentication rules, it is no longer necessary to implement a full-blown plugin.
### Bug fixes

View File

@ -5,7 +5,16 @@
- Erlang/OTP [SSL库漏洞修复](https://nvd.nist.gov/vuln/detail/CVE-2022-37026)
- 增加了对 OCSP (Online Certificate Status Protocol) Stapling 的支持
- 增加了 CRL证书吊销列表缓存的自动刷新功能
- 增加了 OCSP stapling 和 CRL 缓存 [#9297](https://github.com/emqx/emqx/pull/9297)。
- 增加了可定制的 clientid 或 username 别名的回调模块 [#9297](https://github.com/emqx/emqx/pull/9297)。
有了这个回调模块后,可以简单实现一个 Erlang 的回调函数用来给客户端增加别名,然后在认证和授权规则的占位符中使用这些别名
`%cida` 用作 clientid 别名,`%cna` 用作 用户名别名)。
- 增加了可定制的认证回调模块 [#9297](https://github.com/emqx/emqx/pull/9297)。
对于一些简单的认证检查,不需要去实现一个完整的认证插件。
### 修复
- 修复日志追踪模块没开启时GET Trace 列表接口报错的问题。[#9156](https://github.com/emqx/emqx/pull/9156)