You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: erts/doc/notes.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,26 @@ limitations under the License.
21
21
22
22
This document describes the changes made to the ERTS application.
23
23
24
+
## Erts 15.2.7.3
25
+
26
+
### Fixed Bugs and Malfunctions
27
+
28
+
- Fixed the `erl` documentation of the default timewarp mode used.
29
+
30
+
Own Id: OTP-19790 Aux Id: [PR-9970]
31
+
32
+
- The `erlang:suspend_process()` BIFs failed to suspend processes currently executing on dirty schedulers.
33
+
34
+
Own Id: OTP-19799 Aux Id: [PR-10241]
35
+
36
+
- When multiple processes called the same fun whose defining module was not loaded, a `badfun` exception could sometimes occur in one of the calling processes. This would only happen with the JIT runtime system.
Copy file name to clipboardExpand all lines: lib/ssl/doc/notes.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,42 @@ limitations under the License.
21
21
22
22
This document describes the changes made to the SSL application.
23
23
24
+
## SSL 11.2.12.3
25
+
26
+
### Fixed Bugs and Malfunctions
27
+
28
+
- Fixed so that sending of application data will adhere to max_fragment_length. This was broken in OTP-27 release by an optimization.
29
+
30
+
Own Id: OTP-19774 Aux Id: [GH-10191], [PR-10201]
31
+
32
+
- Assert that hello extensions are unique and send an illegal parameter alert if they are not.
33
+
34
+
Own Id: OTP-19791 Aux Id: [PR-10245]
35
+
36
+
- Avoid sending an internal message to the user process in conjunction with handling a key update.
37
+
38
+
Own Id: OTP-19806 Aux Id: [PR-10274]
39
+
40
+
- Graceful error handling added in negative test scenario.
41
+
42
+
Own Id: OTP-19813 Aux Id: [PR-10284]
43
+
44
+
- Handle duplicate change_cipher_spec message with an unexpected message alert instead of failing later in corrupted state.
45
+
46
+
Own Id: OTP-19818 Aux Id: [PR-10296]
47
+
48
+
- Make sure TLS-1.3 protocol spec is followed, that is psk-hello extension is guaranteed to be included as the last extension in the list of client hello extensions and internal hello message truncation in handshake history is handled correctly, the previous handling could cause interoperability issues.
0 commit comments