Skip to content

Commit 4cc6d40

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent fe2d7a1 commit 4cc6d40

File tree

11 files changed

+104
-15
lines changed

11 files changed

+104
-15
lines changed

erts/doc/notes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,26 @@ limitations under the License.
2121

2222
This document describes the changes made to the ERTS application.
2323

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.
37+
38+
Own Id: OTP-19803 Aux Id: [PR-10257]
39+
40+
[PR-9970]: https://github.com/erlang/otp/pull/9970
41+
[PR-10241]: https://github.com/erlang/otp/pull/10241
42+
[PR-10257]: https://github.com/erlang/otp/pull/10257
43+
2444
## Erts 15.2.7.2
2545

2646
### Fixed Bugs and Malfunctions

erts/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# %CopyrightEnd%
1919
#
2020

21-
VSN = 15.2.7.2
21+
VSN = 15.2.7.3
2222

2323
# Port number 4365 in 4.2
2424
# Port number 4366 in 4.3

lib/diameter/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ limitations under the License.
2121

2222
Releases are listed in reverse chronological order, most recent first.
2323

24+
## diameter 2.4.1.1
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Added documentation about 'proxy' and 'resend' options in diameter:handle_request/3
29+
30+
Own Id: OTP-19768 Aux Id: [GH-10150], [PR-10182]
31+
32+
[GH-10150]: https://github.com/erlang/otp/issues/10150
33+
[PR-10182]: https://github.com/erlang/otp/pull/10182
34+
2435
## diameter 2.4.1
2536

2637
### Fixed Bugs and Malfunctions

lib/diameter/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
# %CopyrightEnd%
1818

1919
APPLICATION = diameter
20-
DIAMETER_VSN = 2.4.1
20+
DIAMETER_VSN = 2.4.1.1
2121
APP_VSN = $(APPLICATION)-$(DIAMETER_VSN)$(PRE_VSN)

lib/ssl/doc/notes.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,42 @@ limitations under the License.
2121

2222
This document describes the changes made to the SSL application.
2323

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.
49+
50+
Own Id: OTP-19825 Aux Id: [PR-10296]
51+
52+
[GH-10191]: https://github.com/erlang/otp/issues/10191
53+
[PR-10201]: https://github.com/erlang/otp/pull/10201
54+
[PR-10245]: https://github.com/erlang/otp/pull/10245
55+
[PR-10274]: https://github.com/erlang/otp/pull/10274
56+
[PR-10284]: https://github.com/erlang/otp/pull/10284
57+
[PR-10296]: https://github.com/erlang/otp/pull/10296
58+
[PR-10296]: https://github.com/erlang/otp/pull/10296
59+
2460
## SSL 11.2.12.2
2561

2662
### Fixed Bugs and Malfunctions

lib/ssl/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SSL_VSN = 11.2.12.2
1+
SSL_VSN = 11.2.12.3

lib/syntax_tools/doc/notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ limitations under the License.
2121

2222
This document describes the changes made to the Syntax_Tools application.
2323

24+
## Syntax_Tools 3.2.2.2
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Annotate map comprehensions and generators
29+
30+
Own Id: OTP-19817 Aux Id: [GH-10119]
31+
32+
[GH-10119]: https://github.com/erlang/otp/issues/10119
33+
2434
## Syntax_Tools 3.2.2.1
2535

2636
### Fixed Bugs and Malfunctions

lib/syntax_tools/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SYNTAX_TOOLS_VSN = 3.2.2.1
1+
SYNTAX_TOOLS_VSN = 3.2.2.2

lib/xmerl/doc/notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ limitations under the License.
2121

2222
This document describes the changes made to the Xmerl application.
2323

24+
## Xmerl 2.1.3.2
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- The XSD validation failed due to not handling the optional text blocks correctly in an XSD complex type with attribute `mixed=true`.
29+
30+
Own Id: OTP-19792 Aux Id: ERERL-1261,[PR-10249]
31+
32+
[PR-10249]: https://github.com/erlang/otp/pull/10249
33+
2434
## Xmerl 2.1.3.1
2535

2636
### Fixed Bugs and Malfunctions

lib/xmerl/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
XMERL_VSN = 2.1.3.1
1+
XMERL_VSN = 2.1.3.2

0 commit comments

Comments
 (0)