Skip to content

Commit 8cc569c

Browse files
author
Michal Wasowski
committed
Merge branch 'maint' into master
* maint: Updated OTP version Prepare release
2 parents addc60e + 0565dd4 commit 8cc569c

File tree

13 files changed

+84
-63
lines changed

13 files changed

+84
-63
lines changed

erts/doc/notes.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ limitations under the License.
2323

2424
This document describes the changes made to the ERTS application.
2525

26+
## Erts 16.1.1
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fixed the `erl` documentation of the default timewarp mode used.
31+
32+
Own Id: OTP-19790 Aux Id: [PR-9970]
33+
34+
- The `erlang:suspend_process()` BIFs failed to suspend processes currently executing on dirty schedulers.
35+
36+
Own Id: OTP-19799 Aux Id: [PR-10241]
37+
38+
[PR-9970]: https://github.com/erlang/otp/pull/9970
39+
[PR-10241]: https://github.com/erlang/otp/pull/10241
40+
2641
## Erts 16.1
2742

2843
### Fixed Bugs and Malfunctions

erts/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# %CopyrightEnd%
2121
#
2222

23-
VSN = 16.1
23+
VSN = 16.1.1
2424

2525
# Port number 4365 in 4.2
2626
# 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
@@ -23,6 +23,17 @@ limitations under the License.
2323

2424
Releases are listed in reverse chronological order, most recent first.
2525

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

2839
### Fixed Bugs and Malfunctions

lib/diameter/vsn.mk

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

2121
APPLICATION = diameter
22-
DIAMETER_VSN = 2.5.1
22+
DIAMETER_VSN = 2.5.2
2323
APP_VSN = $(APPLICATION)-$(DIAMETER_VSN)$(PRE_VSN)

lib/kernel/doc/notes.md

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

2424
This document describes the changes made to the Kernel application.
2525

26+
## Kernel 10.4.1
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- With this change group.erl will not crash when receiving unknown message.
31+
32+
Own Id: OTP-19796 Aux Id: ERIERL-1264, [PR-10248]
33+
34+
[PR-10248]: https://github.com/erlang/otp/pull/10248
35+
2636
## Kernel 10.4
2737

2838
### Fixed Bugs and Malfunctions

lib/kernel/src/kernel.appup.src

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
{<<"^10\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
5151
{<<"^10\\.3\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
5252
{<<"^10\\.3\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
53+
{<<"^10\\.4$">>,[restart_new_emulator]},
54+
{<<"^10\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
5355
{<<"^9\\.0$">>,[restart_new_emulator]},
5456
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
5557
{<<"^9\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -82,6 +84,8 @@
8284
{<<"^10\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
8385
{<<"^10\\.3\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
8486
{<<"^10\\.3\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
87+
{<<"^10\\.4$">>,[restart_new_emulator]},
88+
{<<"^10\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
8589
{<<"^9\\.0$">>,[restart_new_emulator]},
8690
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
8791
{<<"^9\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},

lib/kernel/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
KERNEL_VSN = 10.4
1+
KERNEL_VSN = 10.4.1
22

33
# %CopyrightBegin%
44
#

lib/ssl/doc/notes.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,34 @@ limitations under the License.
2323

2424
This document describes the changes made to the SSL application.
2525

26+
## SSL 11.4.1
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fixed so that sending of application data will adhere to max_fragment_length. This was broken in OTP-27 release by an optimization.
31+
32+
Own Id: OTP-19774 Aux Id: [GH-10191], [PR-10201]
33+
34+
- PR-10046 put to hard requirements on key file content. Make sure same file can be used as keyfile and certfile
35+
36+
Own Id: OTP-19780 Aux Id: [GH-10217], [GH-10212], [PR-10221]
37+
38+
- Assert that hello extensions are unique and send an illegal parameter alert if they are not.
39+
40+
Own Id: OTP-19791 Aux Id: [PR-10245]
41+
42+
- Avoid sending an internal message to the user process in conjunction with handling a key update.
43+
44+
Own Id: OTP-19806 Aux Id: [PR-10274]
45+
46+
[GH-10191]: https://github.com/erlang/otp/issues/10191
47+
[PR-10201]: https://github.com/erlang/otp/pull/10201
48+
[GH-10217]: https://github.com/erlang/otp/issues/10217
49+
[GH-10212]: https://github.com/erlang/otp/issues/10212
50+
[PR-10221]: https://github.com/erlang/otp/pull/10221
51+
[PR-10245]: https://github.com/erlang/otp/pull/10245
52+
[PR-10274]: https://github.com/erlang/otp/pull/10274
53+
2654
## SSL 11.4
2755

2856
### Fixed Bugs and Malfunctions

lib/ssl/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SSL_VSN = 11.4
1+
SSL_VSN = 11.4.1
22

33
# %CopyrightBegin%
44
#

lib/xmerl/doc/notes.md

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

2424
This document describes the changes made to the Xmerl application.
2525

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

2838
### Fixed Bugs and Malfunctions

0 commit comments

Comments
 (0)