Skip to content

Commit 4940c1c

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent e4c51b1 commit 4940c1c

File tree

16 files changed

+151
-21
lines changed

16 files changed

+151
-21
lines changed

erts/doc/notes.md

+14
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@ limitations under the License.
2121

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

24+
## Erts 15.1.3
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- gen_udp:send on domain local can leak inet_reply messages.
29+
30+
Own Id: OTP-19332 Aux Id: [#8989]
31+
32+
- net:getifaddrs does not properly report the running flag on windows.
33+
34+
Own Id: OTP-19366 Aux Id: OTP-19061, ERIERL-1134
35+
36+
[#8989]: https://github.com/erlang/otp/issues/8989
37+
2438
## Erts 15.1.2
2539

2640
### Fixed Bugs and Malfunctions

erts/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# %CopyrightEnd%
1919
#
2020

21-
VSN = 15.1.2
21+
VSN = 15.1.3
2222

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

lib/common_test/doc/notes.md

+19
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,25 @@ limitations under the License.
1919
-->
2020
# Common Test Release Notes
2121

22+
## Common_Test 1.27.4
23+
24+
### Fixed Bugs and Malfunctions
25+
26+
- With this change, cth_surefire hook module handles group path reduction for a skipped group. This fixes a bug manifesting with improper group path for a group executed after a group which was skipped.
27+
28+
Own Id: OTP-19365 Aux Id: ERIERL-1157, [PR-9080]
29+
30+
[PR-9080]: https://github.com/erlang/otp/pull/9080
31+
32+
### Improvements and New Features
33+
34+
- With this change, prefix option can be specified in cth_conn_log option list. Option allows to specify how much of additional information is added in raw log output.
35+
36+
Own Id: OTP-19293 Aux Id: ERIERL-1139, [PR-8924], [PR-8931]
37+
38+
[PR-8924]: https://github.com/erlang/otp/pull/8924
39+
[PR-8931]: https://github.com/erlang/otp/pull/8931
40+
2241
## Common_Test 1.27.3
2342

2443
### Fixed Bugs and Malfunctions

lib/common_test/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
COMMON_TEST_VSN = 1.27.3
1+
COMMON_TEST_VSN = 1.27.4

lib/compiler/doc/notes.md

+17
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,23 @@ limitations under the License.
2121

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

24+
## Compiler 8.5.3
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- In rare circumstances, the destructive tuple update optimization could be applied when it was unsafe.
29+
30+
Own Id: OTP-19340 Aux Id: [GH-9014], [PR-9024]
31+
32+
- In rare circumstances involving appending to multiple binaries, the compile could emit unsafe code that would crash the runtime system.
33+
34+
Own Id: OTP-19374 Aux Id: [GH-9100], [PR-9111]
35+
36+
[GH-9014]: https://github.com/erlang/otp/issues/9014
37+
[PR-9024]: https://github.com/erlang/otp/pull/9024
38+
[GH-9100]: https://github.com/erlang/otp/issues/9100
39+
[PR-9111]: https://github.com/erlang/otp/pull/9111
40+
2441
## Compiler 8.5.2
2542

2643
### Fixed Bugs and Malfunctions

lib/compiler/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
COMPILER_VSN = 8.5.2
1+
COMPILER_VSN = 8.5.3

lib/kernel/doc/notes.md

+22
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,28 @@ limitations under the License.
2121

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

24+
## Kernel 10.1.2
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- On windows the socket:recv could return with success ({ok, Data}) even though not all data had been read.
29+
30+
Own Id: OTP-19328
31+
32+
- gen_udp:send on domain local can leak inet_reply messages.
33+
34+
Own Id: OTP-19332 Aux Id: [#8989]
35+
36+
- Failure to create an UDP IPv6 socket when inet_backend = socket with certain IPv6 socket options.
37+
38+
Own Id: OTP-19357
39+
40+
- net:getifaddrs does not properly report the running flag on windows.
41+
42+
Own Id: OTP-19366 Aux Id: OTP-19061, ERIERL-1134
43+
44+
[#8989]: https://github.com/erlang/otp/issues/8989
45+
2446
## Kernel 10.1.1
2547

2648
### Fixed Bugs and Malfunctions

lib/kernel/src/kernel.appup.src

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
{<<"^10\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
3434
{<<"^10\\.1$">>,[restart_new_emulator]},
3535
{<<"^10\\.1\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
36+
{<<"^10\\.1\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
3637
{<<"^8\\.4$">>,[restart_new_emulator]},
3738
{<<"^8\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
3839
{<<"^8\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -60,6 +61,7 @@
6061
{<<"^10\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
6162
{<<"^10\\.1$">>,[restart_new_emulator]},
6263
{<<"^10\\.1\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
64+
{<<"^10\\.1\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
6365
{<<"^8\\.4$">>,[restart_new_emulator]},
6466
{<<"^8\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
6567
{<<"^8\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},

lib/kernel/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
KERNEL_VSN = 10.1.1
1+
KERNEL_VSN = 10.1.2

lib/public_key/doc/notes.md

+16
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,22 @@ limitations under the License.
1919
-->
2020
# Public_Key Release Notes
2121

22+
## Public_Key 1.16.4
23+
24+
### Fixed Bugs and Malfunctions
25+
26+
- If both `ext-key-usage` and `key-usage` are defined for a certificate it should be checked that these usages are consistent with each other. This will have the affect that such certificates where the `ext-key-usages` is marked as critical and the usages is consistent with the `key-use` it can be considered valid without mandatory application specific checks for the `ext-key-useage` extension.
27+
28+
Own Id: OTP-19240 Aux Id: [PR-8840], OTP-19532
29+
30+
- Handle decoding of EDDSA key properly, when decoding a PEM file that contains only the public EDDSA key.
31+
32+
Own Id: OTP-19350 Aux Id: [GH-9009], [PR-9053]
33+
34+
[PR-8840]: https://github.com/erlang/otp/pull/8840
35+
[GH-9009]: https://github.com/erlang/otp/issues/9009
36+
[PR-9053]: https://github.com/erlang/otp/pull/9053
37+
2238
## Public_Key 1.16.3
2339

2440
### Fixed Bugs and Malfunctions

lib/public_key/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PUBLIC_KEY_VSN = 1.16.3
1+
PUBLIC_KEY_VSN = 1.16.4

lib/ssh/doc/notes.md

+11
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ limitations under the License.
1919
-->
2020
# SSH Release Notes
2121

22+
## Ssh 5.2.4
23+
24+
### Fixed Bugs and Malfunctions
25+
26+
- With this change, ssh connection does not crash upon receiving exit-signal message for an already terminated channel.
27+
28+
Own Id: OTP-19326 Aux Id: [PR-8995], [GH-8929]
29+
30+
[PR-8995]: https://github.com/erlang/otp/pull/8995
31+
[GH-8929]: https://github.com/erlang/otp/issues/8929
32+
2233
## Ssh 5.2.3
2334

2435
### Fixed Bugs and Malfunctions

lib/ssh/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#-*-makefile-*- ; force emacs to enter makefile-mode
22

3-
SSH_VSN = 5.2.3
3+
SSH_VSN = 5.2.4
44
APP_VSN = "ssh-$(SSH_VSN)"

lib/ssl/doc/notes.md

+29
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,35 @@ limitations under the License.
2121

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

24+
## SSL 11.2.5
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Avoid generating an internal alert for case that should have been an orderly shutdown by the supervisor.
29+
30+
Own Id: OTP-19311 Aux Id: [PR-8980]
31+
32+
- If present, extended key-usage TLS (SSL) role check (`pk-clientAuth`, `pk-serverAuth`) should always be performed for peer-cert. An intermediate CA cert may relax the requirement if `AnyExtendedKeyUsage` purpose is present.
33+
34+
In OTP-25.3.2.8, OTP-26.2 and OTP-27.0 these requirements became too relaxed. There where two problems, firstly the peer cert extension was only checked if it was marked critical, and secondly the CA cert check did not assert the relaxed `AnyExtendedKeyUsage` purpose.
35+
36+
This could result in that certificates might be misused for purposes not intended by the certificate authority.
37+
38+
Thanks to Bryan Paxton for reporting the issue.
39+
40+
Own Id: OTP-19352 Aux Id: [PR-9130], CVE-2024-53846, OTP-19240
41+
42+
[PR-8980]: https://github.com/erlang/otp/pull/8980
43+
[PR-9130]: https://github.com/erlang/otp/pull/9130
44+
45+
### Improvements and New Features
46+
47+
- Back port certificate_authorities option for TLS-1.3 servers to pre TLS-1.3 servers to enable them to disable the sending of certificate authorities in their certificate request. This will have same affect as the the TLS-1.3 server option although it is handled by a different mechanism in these versions, where the functionality is described to be more of a guidance, although some pre TLS clients have proven to make it mandatory as in TLS-1.3 extension handling.
48+
49+
Own Id: OTP-19325 Aux Id: [PR-9001], ERIERL-1147
50+
51+
[PR-9001]: https://github.com/erlang/otp/pull/9001
52+
2453
## SSL 11.2.4
2554

2655
### Fixed Bugs and Malfunctions

lib/ssl/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SSL_VSN = 11.2.4
1+
SSL_VSN = 11.2.5

make/otp_version_tickets

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
OTP-19124
2-
OTP-19235
3-
OTP-19246
4-
OTP-19247
5-
OTP-19249
6-
OTP-19258
7-
OTP-19265
8-
OTP-19266
9-
OTP-19267
10-
OTP-19268
11-
OTP-19269
12-
OTP-19274
13-
OTP-19286
14-
OTP-19288
1+
OTP-19240
2+
OTP-19293
3+
OTP-19311
4+
OTP-19325
5+
OTP-19326
6+
OTP-19328
7+
OTP-19332
8+
OTP-19340
9+
OTP-19350
10+
OTP-19352
11+
OTP-19357
12+
OTP-19365
13+
OTP-19366
14+
OTP-19374

0 commit comments

Comments
 (0)