Skip to content

Commit 1bb0f46

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent e584c3e commit 1bb0f46

File tree

22 files changed

+197
-26
lines changed

22 files changed

+197
-26
lines changed

erts/doc/notes.md

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

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

26+
## Erts 16.0.2
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- prim_net nif used incorrect encoding for family resulting in non-functional address selection.
31+
32+
Own Id: OTP-19674
33+
34+
- Fix windows uninstall command.
35+
36+
Own Id: OTP-19683 Aux Id: [PR-9887], [GH-9992], [GH-9884]
37+
38+
- With this change erlang will start if it receives short (ms-dos compatible) path to executable.
39+
40+
Own Id: OTP-19690 Aux Id: [PR-9996]
41+
42+
[PR-9887]: https://github.com/erlang/otp/pull/9887
43+
[GH-9992]: https://github.com/erlang/otp/issues/9992
44+
[GH-9884]: https://github.com/erlang/otp/issues/9884
45+
[PR-9996]: https://github.com/erlang/otp/pull/9996
46+
47+
### Improvements and New Features
48+
49+
- The maximum amount of connections for `epmd` on Windows platforms has been increased from 64 to 1024.
50+
51+
Own Id: OTP-19710 Aux Id: [PR-10039]
52+
53+
[PR-10039]: https://github.com/erlang/otp/pull/10039
54+
2655
## Erts 16.0.1
2756

2857
### 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.0.1
23+
VSN = 16.0.2
2424

2525
# Port number 4365 in 4.2
2626
# Port number 4366 in 4.3

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

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

2839
### Fixed Bugs and Malfunctions

lib/compiler/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
COMPILER_VSN = 9.0
1+
COMPILER_VSN = 9.0.1
22

33
# %CopyrightBegin%
44
#

lib/debugger/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
This document describes the changes made to the Debugger application.
2525

26+
## Debugger 6.0.2
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fixed debugger priv dir, which was removed and caused crashes when the icons could not be found.
31+
32+
Own Id: OTP-19687 Aux Id: [PR-9994], [GH-9858]
33+
34+
[PR-9994]: https://github.com/erlang/otp/pull/9994
35+
[GH-9858]: https://github.com/erlang/otp/issues/9858
36+
2637
## Debugger 6.0.1
2738

2839
### Fixed Bugs and Malfunctions

lib/debugger/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DEBUGGER_VSN = 6.0.1
1+
DEBUGGER_VSN = 6.0.2
22

33
# %CopyrightBegin%
44
#

lib/kernel/doc/notes.md

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

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

26+
## Kernel 10.3.2
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- socket:sendv/3 with 'nowait' sometimes return 'completion' without 'CompletionInfo' (Windows only).
31+
32+
Own Id: OTP-19661
33+
34+
- prim_net nif used incorrect encoding for family resulting in non-functional address selection.
35+
36+
Own Id: OTP-19674
37+
38+
- socket:accept can return unexpected 'select_sent'.
39+
40+
Own Id: OTP-19684 Aux Id: ERIERL-1242
41+
42+
- `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.
43+
44+
Own Id: OTP-19702 Aux Id: ERIERL-1241, [PR-10029]
45+
46+
[PR-10029]: https://github.com/erlang/otp/pull/10029
47+
48+
### Improvements and New Features
49+
50+
- Improved documentation of CompletionStatus for asynchronous (nowait) socket operations.
51+
52+
Own Id: OTP-19670 Aux Id: [PR-9930]
53+
54+
[PR-9930]: https://github.com/erlang/otp/pull/9930
55+
2656
## Kernel 10.3.1
2757

2858
### Fixed Bugs and Malfunctions

lib/kernel/src/kernel.appup.src

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
{<<"^10\\.2\\.7(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4949
{<<"^10\\.3$">>,[restart_new_emulator]},
5050
{<<"^10\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
51+
{<<"^10\\.3\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
5152
{<<"^9\\.0$">>,[restart_new_emulator]},
5253
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
5354
{<<"^9\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -78,6 +79,7 @@
7879
{<<"^10\\.2\\.7(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
7980
{<<"^10\\.3$">>,[restart_new_emulator]},
8081
{<<"^10\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
82+
{<<"^10\\.3\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
8183
{<<"^9\\.0$">>,[restart_new_emulator]},
8284
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
8385
{<<"^9\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},

lib/kernel/src/socket.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4652,7 +4652,7 @@ sendv_deadline_cont(SockRef, IOV, _undefined, Deadline, HasWritten) ->
46524652
%% rest_iov - Utility function for sendv usage
46534653
%%
46544654

4655-
-doc(#{since => "OTP @OTP-19661@"}).
4655+
-doc(#{since => "OTP 28.0.2"}).
46564656
-doc """
46574657
Calculate the rest I/O vector after a partially successful sendv
46584658
(CompletionStatus was {ok, Written}).

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.3.1
1+
KERNEL_VSN = 10.3.2
22

33
# %CopyrightBegin%
44
#

0 commit comments

Comments
 (0)