Skip to content

Commit 789ad43

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent 91fc472 commit 789ad43

File tree

23 files changed

+272
-59
lines changed

23 files changed

+272
-59
lines changed

erts/doc/src/notes.xml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,73 @@
3131
</header>
3232
<p>This document describes the changes made to the ERTS application.</p>
3333

34+
<section><title>Erts 13.2.1</title>
35+
36+
<section><title>Fixed Bugs and Malfunctions</title>
37+
<list>
38+
<item>
39+
<p>Fixed a bug in the loader that prevented certain
40+
modules compiled with <c>no_ssa_opt</c> from being
41+
loaded.</p>
42+
<p>
43+
Own Id: OTP-18519 Aux Id: GH-7024 </p>
44+
</item>
45+
<item>
46+
<p>
47+
Implementations of the <seecref
48+
marker="erts:driver_entry#call"><c>call()</c></seecref>
49+
driver callback that returned a faulty encoded result
50+
could cause a memory leak and could cause invalid data on
51+
the heap of the processes calling <seemfa
52+
marker="erts:erlang#port_call/3"><c>erlang:port_call/3</c></seemfa>.</p>
53+
<p>
54+
Own Id: OTP-18525 Aux Id: PR-7049 </p>
55+
</item>
56+
<item>
57+
<p>Fixed a memory corruption issue when upgrading code.
58+
The bug was introduced in <c>OTP 25.3</c></p>
59+
<p>
60+
Own Id: OTP-18553</p>
61+
</item>
62+
<item>
63+
<p>Fixed configure tests for a few ARM-specific
64+
instructions, which prevented the emulator from being
65+
built on some platforms.</p>
66+
<p>
67+
Own Id: OTP-18554</p>
68+
</item>
69+
<item>
70+
<p>
71+
Aliases created in combination with a monitor using the
72+
<c>{alias, explicit_unalias}</c> option stopped working
73+
from remote nodes when a <c>'DOWN'</c> signal had been
74+
received due to the monitor or if the monitor was removed
75+
using the <c>erlang:demonitor()</c> BIF.</p>
76+
<p>
77+
This bug was introduced in OTP 24.3.4.10 and OTP 25.3.</p>
78+
<p>
79+
Own Id: OTP-18557 Aux Id: PR-7131, OTP-18496 </p>
80+
</item>
81+
<item>
82+
<p>In rare circumstances, bit syntax matching of an
83+
invalid code point for a <c>utf32</c> would crash the
84+
runtime system.</p>
85+
<p>
86+
Own Id: OTP-18560</p>
87+
</item>
88+
<item>
89+
<p>
90+
Building the runtime system failed when native atomic
91+
support was missing. Note that execution on such systems
92+
have only been rudimentary tested.</p>
93+
<p>
94+
Own Id: OTP-18563 Aux Id: GH-7114, PR-7159 </p>
95+
</item>
96+
</list>
97+
</section>
98+
99+
</section>
100+
34101
<section><title>Erts 13.2</title>
35102

36103
<section><title>Fixed Bugs and Malfunctions</title>

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 = 13.2
21+
VSN = 13.2.1
2222

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

lib/compiler/doc/src/notes.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,28 @@
3232
<p>This document describes the changes made to the Compiler
3333
application.</p>
3434

35+
<section><title>Compiler 8.2.5</title>
36+
37+
<section><title>Fixed Bugs and Malfunctions</title>
38+
<list>
39+
<item>
40+
<p>When a map update such as <c>#{}#{key:=value}</c> that
41+
should fail with an exception was unused, the exception
42+
would be lost.</p>
43+
<p>
44+
Own Id: OTP-18497 Aux Id: GH-6960, PR-6965 </p>
45+
</item>
46+
<item>
47+
<p>Fixed bug in the validator that made it reject valid
48+
code.</p>
49+
<p>
50+
Own Id: OTP-18516 Aux Id: GH-6969 </p>
51+
</item>
52+
</list>
53+
</section>
54+
55+
</section>
56+
3557
<section><title>Compiler 8.2.4</title>
3658

3759
<section><title>Fixed Bugs and Malfunctions</title>

lib/compiler/vsn.mk

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

lib/crypto/doc/src/notes.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,22 @@
3131
</header>
3232
<p>This document describes the changes made to the Crypto application.</p>
3333

34+
<section><title>Crypto 5.1.4</title>
35+
36+
<section><title>Fixed Bugs and Malfunctions</title>
37+
<list>
38+
<item>
39+
<p>
40+
With this change, random errors are fixed for
41+
crypto:generate_key calls with OpenSSL 3.</p>
42+
<p>
43+
Own Id: OTP-18555</p>
44+
</item>
45+
</list>
46+
</section>
47+
48+
</section>
49+
3450
<section><title>Crypto 5.1.3</title>
3551

3652
<section><title>Fixed Bugs and Malfunctions</title>

lib/crypto/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CRYPTO_VSN = 5.1.3
1+
CRYPTO_VSN = 5.1.4

lib/eldap/doc/src/eldap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ Control2 = eldap:paged_result_control(PageSize, Cookie1),
549549
</desc>
550550
</func>
551551
<func>
552-
<name since="OTP @OTP-18480@">info(Handle) -> connection_info()</name>
552+
<name since="OTP 25.3.1">info(Handle) -> connection_info()</name>
553553
<fsummary>Returns information about the LDAP connection.
554554
</fsummary>
555555
<type>

lib/eldap/doc/src/notes.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,22 @@
3131
</header>
3232
<p>This document describes the changes made to the Eldap application.</p>
3333

34+
<section><title>Eldap 1.2.11</title>
35+
36+
<section><title>Improvements and New Features</title>
37+
<list>
38+
<item>
39+
<p>
40+
Added a new function eldap:info/1 that returns the socket
41+
and the transport protocol for the eldap connection.</p>
42+
<p>
43+
Own Id: OTP-18480</p>
44+
</item>
45+
</list>
46+
</section>
47+
48+
</section>
49+
3450
<section><title>Eldap 1.2.10</title>
3551

3652
<section><title>Fixed Bugs and Malfunctions</title>

lib/eldap/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ELDAP_VSN = 1.2.10
1+
ELDAP_VSN = 1.2.11

lib/erl_interface/doc/src/notes.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,22 @@
3131
</header>
3232
<p>This document describes the changes made to the Erl_interface application.</p>
3333

34+
<section><title>Erl_Interface 5.3.2</title>
35+
36+
<section><title>Fixed Bugs and Malfunctions</title>
37+
<list>
38+
<item>
39+
<p>Fixed configure tests for a few ARM-specific
40+
instructions, which prevented the emulator from being
41+
built on some platforms.</p>
42+
<p>
43+
Own Id: OTP-18554</p>
44+
</item>
45+
</list>
46+
</section>
47+
48+
</section>
49+
3450
<section><title>Erl_Interface 5.3.1</title>
3551

3652
<section><title>Fixed Bugs and Malfunctions</title>

0 commit comments

Comments
 (0)