Skip to content

Commit 699fb6e

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent ff35d4d commit 699fb6e

File tree

18 files changed

+149
-23
lines changed

18 files changed

+149
-23
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.1
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fix windows uninstall command.
29+
30+
Own Id: OTP-19683 Aux Id: [PR-9887], [GH-9992], [GH-9884]
31+
32+
[PR-9887]: https://github.com/erlang/otp/pull/9887
33+
[GH-9992]: https://github.com/erlang/otp/issues/9992
34+
[GH-9884]: https://github.com/erlang/otp/issues/9884
35+
36+
### Improvements and New Features
37+
38+
- The maximum amount of connections for `epmd` on Windows platforms has been increased from 64 to 1024.
39+
40+
Own Id: OTP-19710 Aux Id: [PR-10039]
41+
42+
[PR-10039]: https://github.com/erlang/otp/pull/10039
43+
2444
## Erts 15.2.7
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
21+
VSN = 15.2.7.1
2222

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

lib/asn1/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 asn1 application.
2323

24+
## Asn1 5.3.4.2
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Decoding a constrained BIT STRING using JER was broken.
29+
30+
Own Id: OTP-19681 Aux Id: [PR-9949]
31+
32+
[PR-9949]: https://github.com/erlang/otp/pull/9949
33+
2434
## Asn1 5.3.4.1
2535

2636
### Fixed Bugs and Malfunctions

lib/asn1/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ASN1_VSN = 5.3.4.1
1+
ASN1_VSN = 5.3.4.2

lib/compiler/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
This document describes the changes made to the Compiler application.
2323

24+
## Compiler 8.6.1.1
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- Fixed a bug that could cause empty bitstring matches to always succeed, even when they should not.
29+
30+
Own Id: OTP-19711 Aux Id: [GH-10047], [PR-10048]
31+
32+
[GH-10047]: https://github.com/erlang/otp/issues/10047
33+
[PR-10048]: https://github.com/erlang/otp/pull/10048
34+
2435
## Compiler 8.6.1
2536

2637
### Fixed Bugs and Malfunctions

lib/compiler/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
COMPILER_VSN = 8.6.1
1+
COMPILER_VSN = 8.6.1.1

lib/kernel/doc/notes.md

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

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

24+
## Kernel 10.2.7.2
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- socket:sendv/3 with 'nowait' sometimes return 'completion' without 'CompletionInfo' (Windows only).
29+
30+
Own Id: OTP-19661
31+
32+
- socket:accept can return unexpected 'select_sent'.
33+
34+
Own Id: OTP-19684 Aux Id: ERIERL-1242
35+
36+
- `net_kernel` could be blocked for a very long time when selecting distribution module for a connection if the DNS service was slow. This prevented any new connections to be set up during that time.
37+
38+
Own Id: OTP-19702 Aux Id: ERIERL-1241, [PR-10029]
39+
40+
[PR-10029]: https://github.com/erlang/otp/pull/10029
41+
42+
### Improvements and New Features
43+
44+
- Improved documentation of CompletionStatus for asynchronous (nowait) socket operations.
45+
46+
Own Id: OTP-19670 Aux Id: [PR-9930]
47+
48+
[PR-9930]: https://github.com/erlang/otp/pull/9930
49+
2450
## Kernel 10.2.7.1
2551

2652
### Fixed Bugs and Malfunctions

lib/kernel/src/socket.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4612,7 +4612,7 @@ sendv_deadline_cont(SockRef, IOV, _, Deadline, HasWritten) ->
46124612
%% rest_iov - Utility function for sendv usage
46134613
%%
46144614

4615-
-doc(#{since => "OTP @OTP-19661@"}).
4615+
-doc(#{since => "OTP 27.3.4.2"}).
46164616
-doc """
46174617
Calculate the rest I/O vector after a partially successful sendv
46184618
(CompletionStatus was {ok, Written}).

lib/kernel/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
KERNEL_VSN = 10.2.7.1
1+
KERNEL_VSN = 10.2.7.2

lib/public_key/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ limitations under the License.
1919
-->
2020
# Public_Key Release Notes
2121

22+
## Public_Key 1.17.1.1
23+
24+
### Fixed Bugs and Malfunctions
25+
26+
- Handle certificates that are signed with RSASSA-PSS but the PSS params are specified in the 'SignatureAlgorithm' of the signed cert and not in the signer's 'SubjectPublicKeyInfo'.
27+
28+
Own Id: OTP-19699 Aux Id: [GH-9632], [PR-10023]
29+
30+
[GH-9632]: https://github.com/erlang/otp/issues/9632
31+
[PR-10023]: https://github.com/erlang/otp/pull/10023
32+
2233
## Public_Key 1.17.1
2334

2435
### Fixed Bugs and Malfunctions

0 commit comments

Comments
 (0)