diff --git a/lib/inets/doc/notes.md b/lib/inets/doc/notes.md index 51861278edb4..9018326d41dc 100644 --- a/lib/inets/doc/notes.md +++ b/lib/inets/doc/notes.md @@ -19,6 +19,16 @@ limitations under the License. --> # Inets Release Notes +## Inets 9.3.2 + +### Fixed Bugs and Malfunctions + +- Improved robustness of httpd startup procedure. + + Own Id: OTP-19486 Aux Id: ERIERL-1190, [PR-9408] + +[PR-9408]: https://github.com/erlang/otp/pull/9408 + ## Inets 9.3.1 ### Fixed Bugs and Malfunctions diff --git a/lib/inets/vsn.mk b/lib/inets/vsn.mk index 599bb2b8053d..391c4478848e 100644 --- a/lib/inets/vsn.mk +++ b/lib/inets/vsn.mk @@ -19,6 +19,6 @@ # %CopyrightEnd% APPLICATION = inets -INETS_VSN = 9.3.1 +INETS_VSN = 9.3.2 PRE_VSN = APP_VSN = "$(APPLICATION)-$(INETS_VSN)$(PRE_VSN)" diff --git a/lib/ssl/doc/notes.md b/lib/ssl/doc/notes.md index e53863ab6881..e21ebfff43e7 100644 --- a/lib/ssl/doc/notes.md +++ b/lib/ssl/doc/notes.md @@ -21,6 +21,21 @@ limitations under the License. This document describes the changes made to the SSL application. +## SSL 11.2.8 + +### Fixed Bugs and Malfunctions + +- Setting protocol version to a lower value then supported by default in server API function called after ssl:listen/2 could result in wrong default values being used and connections failing with insufficient security. + + Own Id: OTP-19457 Aux Id: [PR-9418] + +- Improve error handling of server name indication fun. This implies that if the `sni_fun` returns `undefined` we will attempt connection with original option values, if it returns `unrecognized` we end the connection with UNRECOGNIZED_NAME alert and if provided options fail option verification we will end the connection with a HANDSHAKE_FAILURE and an error log. + + Own Id: OTP-19467 Aux Id: [PR-9387], ERIERL-1189 + +[PR-9418]: https://github.com/erlang/otp/pull/9418 +[PR-9387]: https://github.com/erlang/otp/pull/9387 + ## SSL 11.2.7 ### Fixed Bugs and Malfunctions diff --git a/lib/ssl/vsn.mk b/lib/ssl/vsn.mk index a121b8ff919b..3e2ef07053f8 100644 --- a/lib/ssl/vsn.mk +++ b/lib/ssl/vsn.mk @@ -1 +1 @@ -SSL_VSN = 11.2.7 +SSL_VSN = 11.2.8 diff --git a/make/otp_version_tickets b/make/otp_version_tickets index d307b7e4db0b..d9c19ee6f372 100644 --- a/make/otp_version_tickets +++ b/make/otp_version_tickets @@ -1,6 +1,3 @@ -OTP-19240 -OTP-19381 -OTP-19411 -OTP-19445 -OTP-19455 -OTP-19462 +OTP-19457 +OTP-19467 +OTP-19486