docs: add changelogs
This commit is contained in:
parent
2f62426aca
commit
b4b1ca27ab
|
@ -5,13 +5,18 @@
|
||||||
- Erlang/OTP [SSL library vulnerability fix](https://nvd.nist.gov/vuln/detail/CVE-2022-37026)
|
- 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 support for OCSP (Online Certificate Status Protocol) Stapling
|
||||||
- Added CRL (Certificate Revocation List) cache auto refresh
|
- Added CRL (Certificate Revocation List) cache auto refresh
|
||||||
|
|
||||||
- Added support for OCSP stapling and CRL
|
- Added support for OCSP stapling and CRL
|
||||||
caching. #[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
|
- Added support for specifying custom modules for adding clientid and common name
|
||||||
aliases. #[9297](https://github.com/emqx/emqx/pull/9297).
|
aliases [#9297](https://github.com/emqx/emqx/pull/9297).
|
||||||
- Added support for specifying custom modules for custom
|
Now you can implement a simple callback to enrich clients with aliases, and then use the aliases
|
||||||
authentication. #[9297](https://github.com/emqx/emqx/pull/9297).
|
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
|
### Bug fixes
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,15 @@
|
||||||
- 增加了对 OCSP (Online Certificate Status Protocol) Stapling 的支持
|
- 增加了对 OCSP (Online Certificate Status Protocol) Stapling 的支持
|
||||||
- 增加了 CRL(证书吊销列表)缓存的自动刷新功能
|
- 增加了 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)
|
- 修复日志追踪模块没开启时,GET Trace 列表接口报错的问题。[#9156](https://github.com/emqx/emqx/pull/9156)
|
||||||
|
|
Loading…
Reference in New Issue