Skip to content

Commit 64c8ae9

Browse files
committed
Merge branch 'maint' into master
* maint: Updated OTP version Prepare release
2 parents 3fa1c72 + 6e1a4d3 commit 64c8ae9

File tree

16 files changed

+101
-7
lines changed

16 files changed

+101
-7
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.2
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fixed a JIT bug that could miscompile equality tests on empty bitstrings.
31+
32+
Own Id: OTP-19846 Aux Id: [PR-10359]
33+
34+
- The documentation building code produced warnings during the build, if none of the applications were skipped. The warnings were resolved.
35+
36+
Own Id: OTP-19865 Aux Id: ERIERL-1251,[PR-10396]
37+
38+
[PR-10359]: https://github.com/erlang/otp/pull/10359
39+
[PR-10396]: https://github.com/erlang/otp/pull/10396
40+
2641
## Erts 16.1.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.1
23+
VSN = 16.1.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.3
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fixed broken type inference for lists:mapfoldl/r.
31+
32+
Own Id: OTP-19845 Aux Id: [GH-10354], [PR-10358]
33+
34+
[GH-10354]: https://github.com/erlang/otp/issues/10354
35+
[PR-10358]: https://github.com/erlang/otp/pull/10358
36+
2637
## Compiler 9.0.2
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.2
1+
COMPILER_VSN = 9.0.3
22

33
# %CopyrightBegin%
44
#

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.2
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fixed a race condition when registering the standard error process.
31+
32+
Own Id: OTP-19832 Aux Id: [PR-10290]
33+
34+
[PR-10290]: https://github.com/erlang/otp/pull/10290
35+
2636
## Kernel 10.4.1
2737

2838
### Fixed Bugs and Malfunctions

lib/kernel/src/kernel.appup.src

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
{<<"^10\\.3\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
5353
{<<"^10\\.4$">>,[restart_new_emulator]},
5454
{<<"^10\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
55+
{<<"^10\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
5556
{<<"^9\\.0$">>,[restart_new_emulator]},
5657
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
5758
{<<"^9\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -86,6 +87,7 @@
8687
{<<"^10\\.3\\.2(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
8788
{<<"^10\\.4$">>,[restart_new_emulator]},
8889
{<<"^10\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
90+
{<<"^10\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
8991
{<<"^9\\.0$">>,[restart_new_emulator]},
9092
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
9193
{<<"^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
1+
KERNEL_VSN = 10.4.2
22

33
# %CopyrightBegin%
44
#

lib/public_key/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
# Public_Key Release Notes
2323

24+
## Public_Key 1.19
25+
26+
### Improvements and New Features
27+
28+
- Added support for the Public-Key Infrastructure Certificate Management Protocol (PKICMP) ASN.1 specification.
29+
30+
Own Id: OTP-19861 Aux Id: [PR-10386]
31+
32+
[PR-10386]: https://github.com/erlang/otp/pull/10386
33+
2434
## Public_Key 1.18.3
2535

2636
### Fixed Bugs and Malfunctions

lib/public_key/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PUBLIC_KEY_VSN = 1.18.3
1+
PUBLIC_KEY_VSN = 1.19
22

33
# %CopyrightBegin%
44
#

lib/ssh/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
# SSH Release Notes
2323

24+
## Ssh 5.3.4
25+
26+
### Fixed Bugs and Malfunctions
27+
28+
- With this change user space buffers are used to limit ssh hello message size instead of kernel buffers
29+
30+
Own Id: OTP-19839 Aux Id: ERIERL-1273, [PR-10350]
31+
32+
[PR-10350]: https://github.com/erlang/otp/pull/10350
33+
2434
## Ssh 5.3.3
2535

2636
### Fixed Bugs and Malfunctions

0 commit comments

Comments
 (0)