Browse Source

docs: update CHNAGES-5.0.md

Zaiming (Stone) Shi 3 years ago
parent
commit
9a5dda010e
2 changed files with 6 additions and 2 deletions
  1. 4 0
      CHANGES-5.0.md
  2. 2 2
      apps/emqx_gateway/test/emqx_exproto_SUITE.erl

+ 4 - 0
CHANGES-5.0.md

@@ -6,6 +6,10 @@
 * Fix `$queue` topic name error in management API return. [#8728](https://github.com/emqx/emqx/pull/8728)
 * Fix sometimes `client.connected` and `client.disconnected` could be in wrong order. [#8625](https://github.com/emqx/emqx/pull/8625)
 
+## Enhancements
+
+* Do not auto-populate default SSL cipher suites, so that the configs are less bloated. [#8769](https://github.com/emqx/emqx/pull/8769)
+
 # 5.0.5
 
 ## Bug fixes

+ 2 - 2
apps/emqx_gateway/test/emqx_exproto_SUITE.erl

@@ -483,8 +483,8 @@ ssl_opts() ->
     maps:merge(
         Certs,
         #{
-            versions => emqx_tls_lib:default_versions(),
-            ciphers => emqx_tls_lib:default_ciphers(),
+            versions => emqx_tls_lib:available_versions(tls),
+            ciphers => [],
             verify => verify_peer,
             fail_if_no_peer_cert => true,
             secure_renegotiate => false,