From d55738a4490583b627a0960c886a0f0d54eb52b0 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Tue, 16 Apr 2019 16:37:45 +0200 Subject: Prepare release --- lib/common_test/doc/src/notes.xml | 66 +++++++++++++++++++++++++++++++++++++ lib/common_test/vsn.mk | 2 +- lib/erl_interface/doc/src/notes.xml | 16 +++++++++ lib/erl_interface/vsn.mk | 2 +- lib/snmp/doc/src/notes.xml | 19 ++++++++++- lib/snmp/vsn.mk | 2 +- lib/ssh/doc/src/notes.xml | 18 ++++++++++ lib/ssh/vsn.mk | 2 +- lib/tools/doc/src/notes.xml | 15 +++++++++ lib/tools/vsn.mk | 2 +- 10 files changed, 138 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index ef8b70f1a3..d1b9bc320a 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -33,6 +33,72 @@ notes.xml +
Common_Test 1.15.4.2 + +
Fixed Bugs and Malfunctions + + +

+ The test result when a hook function fails is in general + the same as if the function that the hook is associated + with fails. For example, if post_init_per_testcase + fails the result is that the test case is skipped, as is + the case when init_per_testcase fails.This, + however, was earlier not true for timetrap timeouts or + other error situations where the process running the hook + function was killed. This is now corrected, so the error + handling should be the same no matter how the hook + function fails.

+

+ *** POTENTIAL INCOMPATIBILITY ***

+

+ Own Id: OTP-15717 Aux Id: ERIERL-334

+
+ +

+ In some rare cases, when two common_test nodes used the + same log directory, a timing problem could occur which + caused common_test to crash because it's log cache file + was unexpectedly empty. This is now corrected.

+

+ Own Id: OTP-15758 Aux Id: ERIERL-342

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

+ Two new common_test hook functions are introduced:

+

+ post_groups/2, which is called after + Suite:groups/0
post_all/3, which is + called after Suite:all/0

+

+ These functions allow modifying the return values from + the groups/0 and all/0 functions, + respectively.

+

+ A new term, {testcase,TestCase,RepeatProperties} + is now also allowed in the return from all/0. This + can be used for repeating a single test case a specific + number of times, or until it fails or succeeds once.

+

+ Own Id: OTP-14746 Aux Id: ERIERL-143

+
+ +

+ OTP internal test improvements.

+

+ Own Id: OTP-15716

+
+
+
+ +
+
Common_Test 1.15.4.1
Fixed Bugs and Malfunctions diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk index c8dfa6beb2..cacf400012 100644 --- a/lib/common_test/vsn.mk +++ b/lib/common_test/vsn.mk @@ -1 +1 @@ -COMMON_TEST_VSN = 1.15.4.1 +COMMON_TEST_VSN = 1.15.4.2 diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml index 4310a142b0..b8ab20b005 100644 --- a/lib/erl_interface/doc/src/notes.xml +++ b/lib/erl_interface/doc/src/notes.xml @@ -31,6 +31,22 @@

This document describes the changes made to the Erl_interface application.

+
Erl_Interface 3.10.2.2 + +
Fixed Bugs and Malfunctions + + +

+ Fix handling of Makefile dependencies so that parallel + make works properly.

+

+ Own Id: OTP-15757

+
+
+
+ +
+
Erl_Interface 3.10.2.1
Fixed Bugs and Malfunctions diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk index 4c9cc351c4..ab57ec2278 100644 --- a/lib/erl_interface/vsn.mk +++ b/lib/erl_interface/vsn.mk @@ -1,2 +1,2 @@ -EI_VSN = 3.10.2.1 +EI_VSN = 3.10.2.2 ERL_INTERFACE_VSN = $(EI_VSN) diff --git a/lib/snmp/doc/src/notes.xml b/lib/snmp/doc/src/notes.xml index f64e0cca97..fc2e6af29e 100644 --- a/lib/snmp/doc/src/notes.xml +++ b/lib/snmp/doc/src/notes.xml @@ -34,7 +34,24 @@ -
SNMP 5.2.11 +
SNMP 5.2.11.1 + +
Improvements and New Features + + +

+ [snmp|agent] Add a get-mechanism callback module (and a + corresponding behaviour). The agent calls this module to + handle each get (get, get-next and get-bulk) request.

+

+ Own Id: OTP-15691 Aux Id: ERIERL-324

+
+
+
+ +
+ +
SNMP 5.2.11
Fixed Bugs and Malfunctions diff --git a/lib/snmp/vsn.mk b/lib/snmp/vsn.mk index 96123f02f5..7da2f1bd30 100644 --- a/lib/snmp/vsn.mk +++ b/lib/snmp/vsn.mk @@ -19,6 +19,6 @@ # %CopyrightEnd% APPLICATION = snmp -SNMP_VSN = 5.2.11 +SNMP_VSN = 5.2.11.1 PRE_VSN = APP_VSN = "$(APPLICATION)-$(SNMP_VSN)$(PRE_VSN)" diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index 7d47674d39..8a39ac3020 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -30,6 +30,24 @@ notes.xml +
Ssh 4.6.9.4 + +
Fixed Bugs and Malfunctions + + +

+ If a client was connected to an server on an already open + socket, the callback fun(PeerName,FingerPrint) in + the accept_callback option passed the local name + in the argument PeerName instead of the remote name.

+

+ Own Id: OTP-15763

+
+
+
+ +
+
Ssh 4.6.9.3
Fixed Bugs and Malfunctions diff --git a/lib/ssh/vsn.mk b/lib/ssh/vsn.mk index 2674126672..2c71d55c29 100644 --- a/lib/ssh/vsn.mk +++ b/lib/ssh/vsn.mk @@ -1,4 +1,4 @@ #-*-makefile-*- ; force emacs to enter makefile-mode -SSH_VSN = 4.6.9.3 +SSH_VSN = 4.6.9.4 APP_VSN = "ssh-$(SSH_VSN)" diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml index 45f276c09e..8d775aaecb 100644 --- a/lib/tools/doc/src/notes.xml +++ b/lib/tools/doc/src/notes.xml @@ -31,6 +31,21 @@

This document describes the changes made to the Tools application.

+
Tools 2.11.2.1 + +
Fixed Bugs and Malfunctions + + +

+ Minor fixes for make clean.

+

+ Own Id: OTP-15657

+
+
+
+ +
+
Tools 2.11.2
Fixed Bugs and Malfunctions diff --git a/lib/tools/vsn.mk b/lib/tools/vsn.mk index f9723c0f9b..23ea0d9d4d 100644 --- a/lib/tools/vsn.mk +++ b/lib/tools/vsn.mk @@ -1 +1 @@ -TOOLS_VSN = 2.11.2 +TOOLS_VSN = 2.11.2.1 -- cgit v1.2.3