summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlang/OTP <otp@erlang.org>2021-05-05 13:46:00 +0200
committerErlang/OTP <otp@erlang.org>2021-05-05 13:46:00 +0200
commit68aa551355721d24a05a78262cc37d0b2f4c50c0 (patch)
tree811fbd2697a27a9009a5236b10c6f627a2af7b8e
parentc878b76701d9bdd8d4a8f27fdacede9bc91620d3 (diff)
downloaderlang-68aa551355721d24a05a78262cc37d0b2f4c50c0.tar.gz
Prepare release
-rw-r--r--erts/doc/src/notes.xml56
-rw-r--r--erts/vsn.mk2
-rw-r--r--lib/erl_interface/doc/src/notes.xml34
-rw-r--r--lib/erl_interface/vsn.mk2
-rw-r--r--lib/runtime_tools/doc/src/notes.xml21
-rw-r--r--lib/runtime_tools/vsn.mk2
-rw-r--r--make/otp_version_tickets8
7 files changed, 119 insertions, 6 deletions
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 507a2aacf0..4d443725dc 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -31,6 +31,62 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>
+<section><title>Erts 10.3.5.18</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>The following signals could pass before other signals
+ from the same sender to the same receiver. That is, these
+ signals could arrive too early.</p> <list>
+ <item><c>garbage-collect</c> request. Sent from one
+ process to another using one of the
+ <c>garbage_collect()</c> BIFs.</item>
+ <item><c>check-process-code</c> request. Sent from one
+ process to another using one of the
+ <c>check_process_code()</c> BIFs.</item>
+ <item><c>is-process-alive</c> reply. Sent as a response
+ to a process calling the <c>is_process_alive()</c>
+ BIF.</item> <item><c>process-info</c> reply. Sent as a
+ response to a process calling one of the
+ <c>process_info()</c> BIFs.</item>
+ <item><c>port-command</c> reply. Sent as a response to a
+ process calling one of the <c>port_command()</c>
+ BIFs.</item> <item><c>port-connect</c> reply. Sent as a
+ response to a process calling the <c>port_connect()</c>
+ BIF.</item> <item><c>port-close</c> reply. Sent as a
+ response to a process calling the <c>port_close()</c>
+ BIF.</item> <item><c>port-control</c> reply. Sent as a
+ response to a process calling the <c>port_control()</c>
+ BIF.</item> <item><c>port-call</c> reply. Sent as a
+ response to a process calling the <c>port_call()</c>
+ BIF.</item> <item><c>port-info</c> reply. Sent as a
+ response to a process calling one of the
+ <c>port_info()</c> BIFs.</item> </list>
+ <p>
+ Own Id: OTP-17291</p>
+ </item>
+ <item>
+ <p>
+ A garbage collection of a literal area missed messages
+ that entirely consisted of a term in a literal area. This
+ could in turn lead to a crash of the runtime system.</p>
+ <p>
+ Own Id: OTP-17307</p>
+ </item>
+ <item>
+ <p>
+ A call to <c>process_flag(message_queue_data,
+ off_heap)</c> could cause a crash of the runtime system
+ when sequential tracing was enabled.</p>
+ <p>
+ Own Id: OTP-17349</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Erts 10.3.5.17</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/erts/vsn.mk b/erts/vsn.mk
index e2031d53f6..ac852b78eb 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -18,7 +18,7 @@
# %CopyrightEnd%
#
-VSN = 10.3.5.17
+VSN = 10.3.5.18
# Port number 4365 in 4.2
# Port number 4366 in 4.3
diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml
index 0a233c6692..cf5958c971 100644
--- a/lib/erl_interface/doc/src/notes.xml
+++ b/lib/erl_interface/doc/src/notes.xml
@@ -31,6 +31,40 @@
</header>
<p>This document describes the changes made to the Erl_interface application.</p>
+<section><title>Erl_Interface 3.11.3.2</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Fix bug where sending of large data with ei_send_*/ei_rpc
+ with infinite timeout could fail when the tcp buffer
+ becomes full.</p>
+ <p>
+ Fault has existed since OTP-21.</p>
+ <p>
+ Own Id: OTP-17358 Aux Id: ERLERL-610 </p>
+ </item>
+ </list>
+ </section>
+
+
+ <section><title>Known Bugs and Problems</title>
+ <list>
+ <item>
+ <p>
+ The <c>ei</c> API for decoding/encoding terms is not
+ fully 64-bit compatible since terms that have a
+ representation on the external term format larger than 2
+ GB cannot be handled.</p>
+ <p>
+ Own Id: OTP-16607 Aux Id: OTP-16608 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Erl_Interface 3.11.3.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk
index 230ccd7681..608f05c41e 100644
--- a/lib/erl_interface/vsn.mk
+++ b/lib/erl_interface/vsn.mk
@@ -1,2 +1,2 @@
-EI_VSN = 3.11.3.1
+EI_VSN = 3.11.3.2
ERL_INTERFACE_VSN = $(EI_VSN)
diff --git a/lib/runtime_tools/doc/src/notes.xml b/lib/runtime_tools/doc/src/notes.xml
index 58a2a66c4b..ae1470f8fd 100644
--- a/lib/runtime_tools/doc/src/notes.xml
+++ b/lib/runtime_tools/doc/src/notes.xml
@@ -32,6 +32,27 @@
<p>This document describes the changes made to the Runtime_Tools
application.</p>
+<section><title>Runtime_Tools 1.13.2.1</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ The function <c>dbg:n/1</c> used a local fun to set up a
+ tracer on a remote node. This works fine as long as the
+ remote node is running exactly the same version of
+ Erlang/OTP but does not work at all otherwise. This is
+ fixed by exporting the relevant function and by calling
+ this function on the remote node to set up remote
+ tracing.</p>
+ <p>
+ Own Id: OTP-16930 Aux Id: ERL-1371, GH-4396 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Runtime_Tools 1.13.2</title>
<section><title>Improvements and New Features</title>
diff --git a/lib/runtime_tools/vsn.mk b/lib/runtime_tools/vsn.mk
index fa2f338ec2..ebc5f6b7a1 100644
--- a/lib/runtime_tools/vsn.mk
+++ b/lib/runtime_tools/vsn.mk
@@ -1 +1 @@
-RUNTIME_TOOLS_VSN = 1.13.2
+RUNTIME_TOOLS_VSN = 1.13.2.1
diff --git a/make/otp_version_tickets b/make/otp_version_tickets
index f335bf4329..6141ea02ad 100644
--- a/make/otp_version_tickets
+++ b/make/otp_version_tickets
@@ -1,4 +1,6 @@
OTP-16607
-OTP-17244
-OTP-17253
-OTP-17279
+OTP-16930
+OTP-17291
+OTP-17307
+OTP-17349
+OTP-17358