summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--OTP_VERSION2
-rw-r--r--erts/doc/src/notes.xml93
-rw-r--r--erts/vsn.mk2
-rw-r--r--lib/ssl/doc/src/notes.xml15
-rw-r--r--lib/ssl/vsn.mk2
-rw-r--r--make/otp_version_tickets_in_merge6
-rw-r--r--otp_versions.table1
7 files changed, 118 insertions, 3 deletions
diff --git a/OTP_VERSION b/OTP_VERSION
index 6584dd0ca9..b4e48e1410 100644
--- a/OTP_VERSION
+++ b/OTP_VERSION
@@ -1 +1 @@
-25.0.2
+25.0.3
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 00bc84d9fc..98f3b93cca 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -31,6 +31,99 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>
+<section><title>Erts 13.0.3</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>Distributed exit signals could be lost under the
+ following conditions:</p> <list> <item><p> An exit signal
+ from a parent process to a child process was lost if:</p>
+ <list> <item><p> the parent process terminated before the
+ spawn request that created the child had completed,
+ </p></item> <item><p> the spawn request set up a link
+ between parent and child </p></item> <item><p> the spawn
+ request was distributed, and </p></item> <item><p> the
+ exit reason was larger than one machine word. </p></item>
+ </list> </item> <item><p> Loss of a connection over which
+ a not yet completed spawn request was ongoing could cause
+ loss of exit signals. Such loss of exit signals was very
+ rare. Besides the above described connection loss also
+ the following conditions had to be satisfied:</p> <list>
+ <item><p> The spawn request that was interrupted by the
+ connection loss also had to set up a link between the
+ parent process and the child process. </p></item>
+ <item><p> The parent process that issued the spawn
+ request also had to be terminating while the spawn
+ request was interrupted by the connection loss.
+ </p></item> <item><p> The same parent process also had to
+ have made other spawn requests to other nodes than to the
+ node to which the connection was lost. </p></item>
+ <item><p> These spawn requests to the other nodes also
+ had to set up links. </p></item> <item><p> These spawn
+ requests to the other nodes also had to be not yet
+ completed at the time of the connection loss. That is,
+ the spawn reply from the child process had not yet
+ reached the parent process. </p></item> </list> <p>If all
+ the conditions above were met, exit signals to the
+ children spawned due to the above described spawn
+ requests to other nodes <em>could</em> be lost.</p>
+ <p>The above bug also caused a significant memory leak
+ when it was triggered since the destruction of the parent
+ process never completed.</p> </item> </list>
+ <p>
+ Own Id: OTP-18164 Aux Id: PR-6114 </p>
+ </item>
+ <item>
+ <p>
+ A race could cause <c>process_info(Pid,
+ message_queue_len)</c> on other processes to return
+ invalid results.</p>
+ <p>
+ Own Id: OTP-18169 Aux Id: PR-6134 </p>
+ </item>
+ <item>
+ <p>
+ Fixed reduction counting for handling process system
+ tasks.</p>
+ <p>
+ Own Id: OTP-18170 Aux Id: PR-6135 </p>
+ </item>
+ <item>
+ <p>
+ Priority elevation of terminating processes did not work
+ which could cause execution of such processes to be
+ delayed.</p>
+ <p>
+ Own Id: OTP-18175 Aux Id: PR-6142 </p>
+ </item>
+ <item>
+ <p>
+ An unlink operation made by a process that terminated
+ before the unlink operation completed, i.e., before it
+ had received an unlink-ack signal from the linked
+ process, caused an exit signal to erroneously be sent
+ from the terminating process to the process being
+ unlinked. This exit signal would most often be ignored by
+ the receiver, but if the receiver of the exit signal
+ concurrently set up a new link, it could receive the exit
+ signal with the actual exit reason of the terminating
+ process instead of a <c>noproc</c> exit reason. It is
+ however very hard to detect that this has happened and
+ has no obvious negative consequences, so it should be
+ considered harmless.</p>
+ <p>
+ A distributed unlink-ack signal received by a terminating
+ process was also not properly removed which could cause a
+ minor memory leak.</p>
+ <p>
+ Own Id: OTP-18177 Aux Id: PR-6150 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Erts 13.0.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/erts/vsn.mk b/erts/vsn.mk
index c84200f1ef..06d12f2de8 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -18,7 +18,7 @@
# %CopyrightEnd%
#
-VSN = 13.0.2
+VSN = 13.0.3
# Port number 4365 in 4.2
# Port number 4366 in 4.3
diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml
index 98f0bdee7c..29b72fd3c1 100644
--- a/lib/ssl/doc/src/notes.xml
+++ b/lib/ssl/doc/src/notes.xml
@@ -27,6 +27,21 @@
</header>
<p>This document describes the changes made to the SSL application.</p>
+<section><title>SSL 10.8.3</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p> The link to crypto:engine_load refered the function
+ with wrong arity. </p>
+ <p>
+ Own Id: OTP-18173</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>SSL 10.8.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/ssl/vsn.mk b/lib/ssl/vsn.mk
index aa8f8c8db0..d06e4c86a6 100644
--- a/lib/ssl/vsn.mk
+++ b/lib/ssl/vsn.mk
@@ -1 +1 @@
-SSL_VSN = 10.8.2
+SSL_VSN = 10.8.3
diff --git a/make/otp_version_tickets_in_merge b/make/otp_version_tickets_in_merge
index e69de29bb2..64be04e888 100644
--- a/make/otp_version_tickets_in_merge
+++ b/make/otp_version_tickets_in_merge
@@ -0,0 +1,6 @@
+OTP-18164
+OTP-18169
+OTP-18170
+OTP-18173
+OTP-18175
+OTP-18177
diff --git a/otp_versions.table b/otp_versions.table
index b601c547ec..510c9597cb 100644
--- a/otp_versions.table
+++ b/otp_versions.table
@@ -1,3 +1,4 @@
+OTP-25.0.3 : erts-13.0.3 ssl-10.8.3 # asn1-5.0.19 common_test-1.23 compiler-8.2 crypto-5.1.1 debugger-5.3 dialyzer-5.0.1 diameter-2.2.6 edoc-1.2 eldap-1.2.10 erl_docgen-1.3 erl_interface-5.3 et-1.6.5 eunit-2.7.1 ftp-1.1.1 inets-8.0 jinterface-1.13 kernel-8.4.1 megaco-4.4 mnesia-4.21.1 observer-2.12 odbc-2.14 os_mon-2.7.1 parsetools-2.4 public_key-1.13 reltool-0.9 runtime_tools-1.19 sasl-4.2 snmp-5.13 ssh-4.14.1 stdlib-4.0.1 syntax_tools-3.0 tftp-1.0.3 tools-3.5.3 wx-2.2 xmerl-1.3.29 :
OTP-25.0.2 : erts-13.0.2 ssl-10.8.2 # asn1-5.0.19 common_test-1.23 compiler-8.2 crypto-5.1.1 debugger-5.3 dialyzer-5.0.1 diameter-2.2.6 edoc-1.2 eldap-1.2.10 erl_docgen-1.3 erl_interface-5.3 et-1.6.5 eunit-2.7.1 ftp-1.1.1 inets-8.0 jinterface-1.13 kernel-8.4.1 megaco-4.4 mnesia-4.21.1 observer-2.12 odbc-2.14 os_mon-2.7.1 parsetools-2.4 public_key-1.13 reltool-0.9 runtime_tools-1.19 sasl-4.2 snmp-5.13 ssh-4.14.1 stdlib-4.0.1 syntax_tools-3.0 tftp-1.0.3 tools-3.5.3 wx-2.2 xmerl-1.3.29 :
OTP-25.0.1 : crypto-5.1.1 dialyzer-5.0.1 erts-13.0.1 kernel-8.4.1 mnesia-4.21.1 ssh-4.14.1 ssl-10.8.1 stdlib-4.0.1 # asn1-5.0.19 common_test-1.23 compiler-8.2 debugger-5.3 diameter-2.2.6 edoc-1.2 eldap-1.2.10 erl_docgen-1.3 erl_interface-5.3 et-1.6.5 eunit-2.7.1 ftp-1.1.1 inets-8.0 jinterface-1.13 megaco-4.4 observer-2.12 odbc-2.14 os_mon-2.7.1 parsetools-2.4 public_key-1.13 reltool-0.9 runtime_tools-1.19 sasl-4.2 snmp-5.13 syntax_tools-3.0 tftp-1.0.3 tools-3.5.3 wx-2.2 xmerl-1.3.29 :
OTP-25.0 : asn1-5.0.19 common_test-1.23 compiler-8.2 crypto-5.1 debugger-5.3 dialyzer-5.0 diameter-2.2.6 edoc-1.2 erl_docgen-1.3 erl_interface-5.3 erts-13.0 eunit-2.7.1 inets-8.0 jinterface-1.13 kernel-8.4 megaco-4.4 mnesia-4.21 observer-2.12 odbc-2.14 parsetools-2.4 public_key-1.13 runtime_tools-1.19 sasl-4.2 snmp-5.13 ssh-4.14 ssl-10.8 stdlib-4.0 syntax_tools-3.0 tools-3.5.3 wx-2.2 xmerl-1.3.29 # eldap-1.2.10 et-1.6.5 ftp-1.1.1 os_mon-2.7.1 reltool-0.9 tftp-1.0.3 :