From 8f9bf8a8c35e03fecfa8a035076772983ad0dc71 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 17 Jun 2019 16:50:25 +0200 Subject: Prepare release --- erts/doc/src/notes.xml | 54 +++++++++++++++++++++++++++++++++++++++ erts/vsn.mk | 2 +- lib/common_test/doc/src/notes.xml | 31 ++++++++++++++++++++++ lib/common_test/vsn.mk | 2 +- lib/kernel/doc/src/gen_udp.xml | 8 +++--- lib/kernel/doc/src/inet.xml | 6 ++--- lib/kernel/doc/src/notes.xml | 16 ++++++++++++ lib/kernel/vsn.mk | 2 +- lib/public_key/doc/src/notes.xml | 15 +++++++++++ lib/public_key/vsn.mk | 2 +- lib/ssl/doc/src/notes.xml | 16 ++++++++++++ lib/ssl/vsn.mk | 2 +- lib/stdlib/doc/src/notes.xml | 17 ++++++++++++ lib/stdlib/vsn.mk | 2 +- make/otp_version_tickets | 15 ++++++----- 15 files changed, 171 insertions(+), 19 deletions(-) diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml index 3ff3bfc726..3c49853119 100644 --- a/erts/doc/src/notes.xml +++ b/erts/doc/src/notes.xml @@ -31,6 +31,60 @@

This document describes the changes made to the ERTS application.

+
Erts 10.3.5.3 + +
Fixed Bugs and Malfunctions + + +

+ If you set {linger,{true,0}} on a gen_tcp + listen socket, accept a connection on that socket, and + then close the accepted socket, now the linger zero + setting is transferred to the accepted socket. Before + this correction that information was lost and the close + behaviour on the accepted socket incorrect.

+

+ Own Id: OTP-15370 Aux Id: ERIERL-353

+
+ +

+ Fixed process_info(Pid,reductions) to not + categorically increase reduction count of the measured + process Pid. Repeated reduction measure of an idle + process will most often (but not guaranteed) return the + same value, like it behaved before OTP 21.3.8.

+

+ Own Id: OTP-15865 Aux Id: ERL-964

+
+ +

+ The runtime system disconnected a connection if it + received an exit/2 signal where the recipient was + a process on an old incarnation of the current node. That + is, the receiving node had the same node name, but + another "creation" number. The signal will now just be + dropped since the receiving process no longer exists.

+

+ Own Id: OTP-15867 Aux Id: ERIERL-373

+
+
+
+ + +
Improvements and New Features + + +

+ The possibility to send ancillary data, in particular the + TOS field, has been added to gen_udp:send/4,5.

+

+ Own Id: OTP-15747 Aux Id: ERIERL-294

+
+
+
+ +
+
Erts 10.3.5.2
Fixed Bugs and Malfunctions diff --git a/erts/vsn.mk b/erts/vsn.mk index b3fd73bab0..8b159b1c1f 100644 --- a/erts/vsn.mk +++ b/erts/vsn.mk @@ -18,7 +18,7 @@ # %CopyrightEnd% # -VSN = 10.3.5.2 +VSN = 10.3.5.3 # Port number 4365 in 4.2 # Port number 4366 in 4.3 diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index 9c74146d73..7cf043eccd 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -33,6 +33,37 @@ notes.xml +
Common_Test 1.17.2.1 + +
Fixed Bugs and Malfunctions + + +

+ If a ct hook is installed in the suite/0 function + in a test suite, then the hook's terminate/1 + function would be called several times without it's + init/2 function being called first. This is now + corrected.

+

+ Own Id: OTP-15863 Aux Id: ERIERL-370

+
+ +

+ If init_per_testcase fails, the test itself is + skipped. According to the documentation, it should be + possible to change the result to failed in a hook + function. The only available hook function in this case + is post_init_per_testcase, but changing the return + value there did not affect the test case result. This is + now corrected.

+

+ Own Id: OTP-15869 Aux Id: ERIERL-350

+
+
+
+ +
+
Common_Test 1.17.2
Fixed Bugs and Malfunctions diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk index 73a442a29c..138387173d 100644 --- a/lib/common_test/vsn.mk +++ b/lib/common_test/vsn.mk @@ -1 +1 @@ -COMMON_TEST_VSN = 1.17.2 +COMMON_TEST_VSN = 1.17.2.1 diff --git a/lib/kernel/doc/src/gen_udp.xml b/lib/kernel/doc/src/gen_udp.xml index 6c0d072fed..6ffcfd9af3 100644 --- a/lib/kernel/doc/src/gen_udp.xml +++ b/lib/kernel/doc/src/gen_udp.xml @@ -213,7 +213,7 @@ - + Send a packet.

@@ -242,7 +242,7 @@ - + Send a packet.

@@ -265,7 +265,7 @@ - + Send a packet.

@@ -284,7 +284,7 @@ - + Send a packet.

diff --git a/lib/kernel/doc/src/inet.xml b/lib/kernel/doc/src/inet.xml index adaa2684d8..86f76fc07f 100644 --- a/lib/kernel/doc/src/inet.xml +++ b/lib/kernel/doc/src/inet.xml @@ -118,7 +118,7 @@ fe80::204:acff:fe17:bf38 - +

A general address format on the form {Family, Destination} @@ -130,7 +130,7 @@ fe80::204:acff:fe17:bf38 - +

@@ -142,7 +142,7 @@ fe80::204:acff:fe17:bf38 - +

diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index 906e86e8ac..fffac91308 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -31,6 +31,22 @@

This document describes the changes made to the Kernel application.

+
Kernel 6.3.1.2 + +
Improvements and New Features + + +

+ The possibility to send ancillary data, in particular the + TOS field, has been added to gen_udp:send/4,5.

+

+ Own Id: OTP-15747 Aux Id: ERIERL-294

+
+
+
+ +
+
Kernel 6.3.1.1
Fixed Bugs and Malfunctions diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk index 10562a563b..72c2e95713 100644 --- a/lib/kernel/vsn.mk +++ b/lib/kernel/vsn.mk @@ -1 +1 @@ -KERNEL_VSN = 6.3.1.1 +KERNEL_VSN = 6.3.1.2 diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml index d83dd24f41..834cebb507 100644 --- a/lib/public_key/doc/src/notes.xml +++ b/lib/public_key/doc/src/notes.xml @@ -35,6 +35,21 @@ notes.xml +
Public_Key 1.6.6.1 + +
Fixed Bugs and Malfunctions + + +

+ Support Pasword based encryption with AES

+

+ Own Id: OTP-15870 Aux Id: ERL-952

+
+
+
+ +
+
Public_Key 1.6.6
Improvements and New Features diff --git a/lib/public_key/vsn.mk b/lib/public_key/vsn.mk index c68806d856..0912367006 100644 --- a/lib/public_key/vsn.mk +++ b/lib/public_key/vsn.mk @@ -1 +1 @@ -PUBLIC_KEY_VSN = 1.6.6 +PUBLIC_KEY_VSN = 1.6.6.1 diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml index bada69921d..0449e83177 100644 --- a/lib/ssl/doc/src/notes.xml +++ b/lib/ssl/doc/src/notes.xml @@ -27,6 +27,22 @@

This document describes the changes made to the SSL application.

+
SSL 9.2.3.3 + +
Fixed Bugs and Malfunctions + + +

+ Correct handshake handling, might cause strange symptoms + such as ASN.1 certificate decoding issues.

+

+ Own Id: OTP-15879 Aux Id: ERL-968

+
+
+
+ +
+
SSL 9.2.3.2
Fixed Bugs and Malfunctions diff --git a/lib/ssl/vsn.mk b/lib/ssl/vsn.mk index d96885b5f9..453735710b 100644 --- a/lib/ssl/vsn.mk +++ b/lib/ssl/vsn.mk @@ -1 +1 @@ -SSL_VSN = 9.2.3.2 +SSL_VSN = 9.2.3.3 diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index e456878695..129b6539a1 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -31,6 +31,23 @@

This document describes the changes made to the STDLIB application.

+
STDLIB 3.8.2.2 + +
Fixed Bugs and Malfunctions + + +

Fix a bug that could cause a loop when formatting + terms using the control sequences p or P + and limiting the output with the option + chars_limit.

+

+ Own Id: OTP-15875 Aux Id: ERL-967

+
+
+
+ +
+
STDLIB 3.8.2.1
Fixed Bugs and Malfunctions diff --git a/lib/stdlib/vsn.mk b/lib/stdlib/vsn.mk index c07f0aec50..15469b3539 100644 --- a/lib/stdlib/vsn.mk +++ b/lib/stdlib/vsn.mk @@ -1 +1 @@ -STDLIB_VSN = 3.8.2.1 +STDLIB_VSN = 3.8.2.2 diff --git a/make/otp_version_tickets b/make/otp_version_tickets index 5470d16280..207c094caf 100644 --- a/make/otp_version_tickets +++ b/make/otp_version_tickets @@ -1,6 +1,9 @@ -OTP-15834 -OTP-15844 -OTP-15847 -OTP-15849 -OTP-15858 -OTP-15859 +OTP-15370 +OTP-15747 +OTP-15863 +OTP-15865 +OTP-15867 +OTP-15869 +OTP-15870 +OTP-15875 +OTP-15879 -- cgit v1.2.3 From 348e328375fb774b3fa919ffd1c4811367406516 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 17 Jun 2019 16:50:26 +0200 Subject: Updated OTP version --- OTP_VERSION | 2 +- otp_versions.table | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/OTP_VERSION b/OTP_VERSION index 3d67154767..a8ba2c843d 100644 --- a/OTP_VERSION +++ b/OTP_VERSION @@ -1 +1 @@ -21.3.8.3 +21.3.8.4 diff --git a/otp_versions.table b/otp_versions.table index 5b6614107a..4239bed18a 100644 --- a/otp_versions.table +++ b/otp_versions.table @@ -1,3 +1,4 @@ +OTP-21.3.8.4 : common_test-1.17.2.1 erts-10.3.5.3 kernel-6.3.1.2 public_key-1.6.6.1 ssl-9.2.3.3 stdlib-3.8.2.2 # asn1-5.0.8 compiler-7.3.2 crypto-4.4.2 debugger-4.2.6 dialyzer-3.3.2 diameter-2.2.1 edoc-0.10 eldap-1.2.7 erl_docgen-0.9 erl_interface-3.11.3 et-1.6.4 eunit-2.3.7 ftp-1.0.2 hipe-3.18.3 inets-7.0.7 jinterface-1.9.1 megaco-3.18.4 mnesia-4.15.6 observer-2.9 odbc-2.12.3 os_mon-2.4.7 otp_mibs-1.2.1 parsetools-2.1.8 reltool-0.7.8 runtime_tools-1.13.2 sasl-3.3 snmp-5.2.12 ssh-4.7.6 syntax_tools-2.1.7 tftp-1.0.1 tools-3.1.0.1 wx-1.8.7 xmerl-1.3.20.1 : OTP-21.3.8.3 : erts-10.3.5.2 kernel-6.3.1.1 ssl-9.2.3.2 stdlib-3.8.2.1 # asn1-5.0.8 common_test-1.17.2 compiler-7.3.2 crypto-4.4.2 debugger-4.2.6 dialyzer-3.3.2 diameter-2.2.1 edoc-0.10 eldap-1.2.7 erl_docgen-0.9 erl_interface-3.11.3 et-1.6.4 eunit-2.3.7 ftp-1.0.2 hipe-3.18.3 inets-7.0.7 jinterface-1.9.1 megaco-3.18.4 mnesia-4.15.6 observer-2.9 odbc-2.12.3 os_mon-2.4.7 otp_mibs-1.2.1 parsetools-2.1.8 public_key-1.6.6 reltool-0.7.8 runtime_tools-1.13.2 sasl-3.3 snmp-5.2.12 ssh-4.7.6 syntax_tools-2.1.7 tftp-1.0.1 tools-3.1.0.1 wx-1.8.7 xmerl-1.3.20.1 : OTP-21.3.8.2 : xmerl-1.3.20.1 # asn1-5.0.8 common_test-1.17.2 compiler-7.3.2 crypto-4.4.2 debugger-4.2.6 dialyzer-3.3.2 diameter-2.2.1 edoc-0.10 eldap-1.2.7 erl_docgen-0.9 erl_interface-3.11.3 erts-10.3.5.1 et-1.6.4 eunit-2.3.7 ftp-1.0.2 hipe-3.18.3 inets-7.0.7 jinterface-1.9.1 kernel-6.3.1 megaco-3.18.4 mnesia-4.15.6 observer-2.9 odbc-2.12.3 os_mon-2.4.7 otp_mibs-1.2.1 parsetools-2.1.8 public_key-1.6.6 reltool-0.7.8 runtime_tools-1.13.2 sasl-3.3 snmp-5.2.12 ssh-4.7.6 ssl-9.2.3.1 stdlib-3.8.2 syntax_tools-2.1.7 tftp-1.0.1 tools-3.1.0.1 wx-1.8.7 : OTP-21.3.8.1 : erts-10.3.5.1 ssl-9.2.3.1 tools-3.1.0.1 # asn1-5.0.8 common_test-1.17.2 compiler-7.3.2 crypto-4.4.2 debugger-4.2.6 dialyzer-3.3.2 diameter-2.2.1 edoc-0.10 eldap-1.2.7 erl_docgen-0.9 erl_interface-3.11.3 et-1.6.4 eunit-2.3.7 ftp-1.0.2 hipe-3.18.3 inets-7.0.7 jinterface-1.9.1 kernel-6.3.1 megaco-3.18.4 mnesia-4.15.6 observer-2.9 odbc-2.12.3 os_mon-2.4.7 otp_mibs-1.2.1 parsetools-2.1.8 public_key-1.6.6 reltool-0.7.8 runtime_tools-1.13.2 sasl-3.3 snmp-5.2.12 ssh-4.7.6 stdlib-3.8.2 syntax_tools-2.1.7 tftp-1.0.1 wx-1.8.7 xmerl-1.3.20 : -- cgit v1.2.3