summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--erts/doc/src/notes.xml40
-rw-r--r--erts/vsn.mk2
-rw-r--r--lib/erl_interface/doc/src/notes.xml16
-rw-r--r--lib/erl_interface/vsn.mk2
-rw-r--r--lib/ftp/doc/src/notes.xml20
-rw-r--r--lib/ftp/vsn.mk2
-rw-r--r--lib/mnesia/doc/src/notes.xml18
-rw-r--r--lib/mnesia/vsn.mk2
-rw-r--r--lib/observer/doc/src/notes.xml16
-rw-r--r--lib/observer/vsn.mk2
-rw-r--r--lib/ssl/doc/src/notes.xml16
-rw-r--r--lib/ssl/vsn.mk2
-rw-r--r--lib/wx/doc/src/notes.xml16
-rw-r--r--lib/wx/vsn.mk2
-rw-r--r--make/otp_version_tickets11
15 files changed, 155 insertions, 12 deletions
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 711dac3943..813b9a6be4 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -31,6 +31,46 @@
</header>
<p>This document describes the changes made to the ERTS application.</p>
+<section><title>Erts 12.3.1</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p> <c>erlang:open_port({spawn, _},_)</c> has been fixed
+ on Windows to handle whitespace characters in the path
+ correctly. </p><p> This could, for example, cause
+ execution of the resolver helper program
+ <c>inet_gethost</c> to fail and instead possibly execute
+ a different program. </p>
+ <p>
+ Own Id: OTP-17978 Aux Id: OTP-17958 </p>
+ </item>
+ <item>
+ <p>
+ Fix race condition when creating crash dump that could
+ cause multiple threads to race when writing the initial
+ information in a crash dump.</p>
+ <p>
+ The race condition was introduced in erts-12.2
+ (Erlang/OTP 24.2).</p>
+ <p>
+ Own Id: OTP-17993 Aux Id: PR-5806 </p>
+ </item>
+ <item>
+ <p>
+ Fix Erlang monotonic time on MacOS. Previously used OS
+ monotonic time primitive on MacOS is buggy and will not
+ be used anymore. It has been replaced with usage of
+ another OS monotonic time primitive that does not appear
+ to be buggy.</p>
+ <p>
+ Own Id: OTP-17998 Aux Id: PR-5825, GH-5554 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Erts 12.3</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/erts/vsn.mk b/erts/vsn.mk
index 9c8116cf69..c73ea84314 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -18,7 +18,7 @@
# %CopyrightEnd%
#
-VSN = 12.3
+VSN = 12.3.1
# 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 bb8cbf9b83..75c29257ab 100644
--- a/lib/erl_interface/doc/src/notes.xml
+++ b/lib/erl_interface/doc/src/notes.xml
@@ -31,6 +31,22 @@
</header>
<p>This document describes the changes made to the Erl_interface application.</p>
+<section><title>Erl_Interface 5.2.2</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Avoid attempt build dynamic libs if config option
+ <c>--enable-ei-dynamic-lib</c> is not given.</p>
+ <p>
+ Own Id: OTP-17987 Aux Id: GH-5781, PR-5787 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Erl_Interface 5.2.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk
index aa398871d7..b0833390af 100644
--- a/lib/erl_interface/vsn.mk
+++ b/lib/erl_interface/vsn.mk
@@ -1,2 +1,2 @@
-EI_VSN = 5.2.1
+EI_VSN = 5.2.2
ERL_INTERFACE_VSN = $(EI_VSN)
diff --git a/lib/ftp/doc/src/notes.xml b/lib/ftp/doc/src/notes.xml
index 2f4d0bb953..0a6b9ad6a7 100644
--- a/lib/ftp/doc/src/notes.xml
+++ b/lib/ftp/doc/src/notes.xml
@@ -33,7 +33,25 @@
<file>notes.xml</file>
</header>
- <section><title>Ftp 1.1</title>
+ <section><title>Ftp 1.1.1</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ An unexpected timeout message on the FTP control channel
+ was observed in a real system and could not be associated
+ with anything that was expected to happen, so we will
+ ignore but info log such unexpected messages.</p>
+ <p>
+ Own Id: OTP-17989 Aux Id: ERIERL-767 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
+<section><title>Ftp 1.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
<list>
diff --git a/lib/ftp/vsn.mk b/lib/ftp/vsn.mk
index f7a3a09d49..e02ab28682 100644
--- a/lib/ftp/vsn.mk
+++ b/lib/ftp/vsn.mk
@@ -19,6 +19,6 @@
# %CopyrightEnd%
APPLICATION = ftp
-FTP_VSN = 1.1
+FTP_VSN = 1.1.1
PRE_VSN =
APP_VSN = "$(APPLICATION)-$(FTP_VSN)$(PRE_VSN)"
diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml
index a8374dd188..8559884a5d 100644
--- a/lib/mnesia/doc/src/notes.xml
+++ b/lib/mnesia/doc/src/notes.xml
@@ -39,7 +39,23 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.</p>
- <section><title>Mnesia 4.20.2</title>
+ <section><title>Mnesia 4.20.3</title>
+
+ <section><title>Improvements and New Features</title>
+ <list>
+ <item>
+ <p>
+ Optimize locker to handle many read locks on the same
+ record.</p>
+ <p>
+ Own Id: OTP-17973 Aux Id: ERIERL-772 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
+<section><title>Mnesia 4.20.2</title>
<section><title>Improvements and New Features</title>
<list>
diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk
index 257039c3cc..182e3ff20c 100644
--- a/lib/mnesia/vsn.mk
+++ b/lib/mnesia/vsn.mk
@@ -1 +1 @@
-MNESIA_VSN = 4.20.2
+MNESIA_VSN = 4.20.3
diff --git a/lib/observer/doc/src/notes.xml b/lib/observer/doc/src/notes.xml
index 95a6203d03..ef95459d1e 100644
--- a/lib/observer/doc/src/notes.xml
+++ b/lib/observer/doc/src/notes.xml
@@ -32,6 +32,22 @@
<p>This document describes the changes made to the Observer
application.</p>
+<section><title>Observer 2.11.1</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Fixed node information lookup for remote process
+ identifiers in <c>crashdump_viewer</c>.</p>
+ <p>
+ Own Id: OTP-17995 Aux Id: PR-5804 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Observer 2.11</title>
<section><title>Improvements and New Features</title>
diff --git a/lib/observer/vsn.mk b/lib/observer/vsn.mk
index 8f09233e21..5ea7b062fc 100644
--- a/lib/observer/vsn.mk
+++ b/lib/observer/vsn.mk
@@ -1 +1 @@
-OBSERVER_VSN = 2.11
+OBSERVER_VSN = 2.11.1
diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml
index a2fd3c07d8..7163b077ee 100644
--- a/lib/ssl/doc/src/notes.xml
+++ b/lib/ssl/doc/src/notes.xml
@@ -27,6 +27,22 @@
</header>
<p>This document describes the changes made to the SSL application.</p>
+<section><title>SSL 10.7.2</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ With this change, potential hanging of pre TLS1.3 client
+ receiving OSCP staple message is avoided.</p>
+ <p>
+ Own Id: OTP-17994</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>SSL 10.7.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/ssl/vsn.mk b/lib/ssl/vsn.mk
index 0fb850b119..672ae7a2df 100644
--- a/lib/ssl/vsn.mk
+++ b/lib/ssl/vsn.mk
@@ -1 +1 @@
-SSL_VSN = 10.7.1
+SSL_VSN = 10.7.2
diff --git a/lib/wx/doc/src/notes.xml b/lib/wx/doc/src/notes.xml
index 9b0aa2a9cc..786412a44f 100644
--- a/lib/wx/doc/src/notes.xml
+++ b/lib/wx/doc/src/notes.xml
@@ -32,6 +32,22 @@
<p>This document describes the changes made to the wxErlang
application.</p>
+<section><title>Wx 2.1.3</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Fixed a bug in callback handling which could lead to a
+ unresponsive gui.</p>
+ <p>
+ Own Id: OTP-17982 Aux Id: GH-5758 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Wx 2.1.2</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/wx/vsn.mk b/lib/wx/vsn.mk
index 027203c50c..b3c8589b83 100644
--- a/lib/wx/vsn.mk
+++ b/lib/wx/vsn.mk
@@ -1 +1 @@
-WX_VSN = 2.1.2
+WX_VSN = 2.1.3
diff --git a/make/otp_version_tickets b/make/otp_version_tickets
index a22fc19c12..2c35227ba6 100644
--- a/make/otp_version_tickets
+++ b/make/otp_version_tickets
@@ -1,4 +1,9 @@
-OTP-17975
-OTP-17979
-OTP-17981
+OTP-17973
+OTP-17978
OTP-17982
+OTP-17987
+OTP-17989
+OTP-17993
+OTP-17994
+OTP-17995
+OTP-17998