From 5aa950086a5fa036f27e670517a5c743e0610128 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 6 May 2019 17:09:17 +0200 Subject: Prepare release --- lib/common_test/doc/src/ct_hooks.xml | 4 +-- lib/common_test/doc/src/notes.xml | 60 ++++++++++++++++++++++++++++++++++++ lib/common_test/vsn.mk | 2 +- lib/eldap/doc/src/notes.xml | 20 ++++++++++++ lib/eldap/vsn.mk | 2 +- lib/erl_interface/doc/src/notes.xml | 33 ++++++++++++++++++++ lib/erl_interface/vsn.mk | 2 +- lib/public_key/doc/src/notes.xml | 20 ++++++++++++ lib/public_key/vsn.mk | 2 +- lib/ssl/doc/src/notes.xml | 34 ++++++++++++++++++++ lib/ssl/vsn.mk | 2 +- lib/stdlib/doc/src/notes.xml | 18 +++++++++++ lib/stdlib/src/stdlib.appup.src | 6 ++-- lib/stdlib/vsn.mk | 2 +- 14 files changed, 197 insertions(+), 10 deletions(-) (limited to 'lib') diff --git a/lib/common_test/doc/src/ct_hooks.xml b/lib/common_test/doc/src/ct_hooks.xml index b9bc54ff63..7664dcc9d1 100644 --- a/lib/common_test/doc/src/ct_hooks.xml +++ b/lib/common_test/doc/src/ct_hooks.xml @@ -109,7 +109,7 @@ - Module:post_groups(SuiteName, GroupDefs) -> NewGroupDefs + Module:post_groups(SuiteName, GroupDefs) -> NewGroupDefs Called after groups/0. SuiteName = atom() @@ -165,7 +165,7 @@ - Module:post_all(SuiteName, Return, GroupDefs) -> NewReturn + Module:post_all(SuiteName, Return, GroupDefs) -> NewReturn Called after all/0. SuiteName = atom() diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index 018bb910a1..9c74146d73 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -33,6 +33,66 @@ notes.xml +
Common_Test 1.17.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

+
+
+
+ +
+
Common_Test 1.17.1
Improvements and New Features diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk index 14a3622a00..73a442a29c 100644 --- a/lib/common_test/vsn.mk +++ b/lib/common_test/vsn.mk @@ -1 +1 @@ -COMMON_TEST_VSN = 1.17.1 +COMMON_TEST_VSN = 1.17.2 diff --git a/lib/eldap/doc/src/notes.xml b/lib/eldap/doc/src/notes.xml index bf9358c4d1..975a25d7a8 100644 --- a/lib/eldap/doc/src/notes.xml +++ b/lib/eldap/doc/src/notes.xml @@ -31,6 +31,26 @@

This document describes the changes made to the Eldap application.

+
Eldap 1.2.7 + +
Improvements and New Features + + +

+ Back port of bug fix ERL-893 from OTP-22 and document + enhancements that will solve dialyzer warnings for users + of the ssl application.

+

+ This change also affects public_key, eldap (and inet + doc).

+

+ Own Id: OTP-15785 Aux Id: ERL-929, ERL-893, PR-2215

+
+
+
+ +
+
Eldap 1.2.6
Fixed Bugs and Malfunctions diff --git a/lib/eldap/vsn.mk b/lib/eldap/vsn.mk index 6d541e4689..7f03fbd1b2 100644 --- a/lib/eldap/vsn.mk +++ b/lib/eldap/vsn.mk @@ -1 +1 @@ -ELDAP_VSN = 1.2.6 +ELDAP_VSN = 1.2.7 diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml index 5ad0e2499b..1f95382704 100644 --- a/lib/erl_interface/doc/src/notes.xml +++ b/lib/erl_interface/doc/src/notes.xml @@ -31,6 +31,39 @@

This document describes the changes made to the Erl_interface application.

+
Erl_Interface 3.11.3 + +
Fixed Bugs and Malfunctions + + +

+ erl_interface/ei refused to use node names + with an alive name (the part of the node name preceding + the @ sign) longer than 63 characters and a host name + longer than 64 characters. The total amount of characters + allowed in a node name (alivename@hostname) was thus + limited to 128 characters. These limits applied both to + the own node name as well as node names of other nodes. + Ordinary Erlang nodes limit the node name length to 256 + characters, which meant that you could not communicate + with certain Erlang nodes due to their node name used.

+

+ erl_interface/ei now allow the total amount + of characters in a node name to be up to 256 characters. + These characters may be distributed between alive name + and host name in whatever way needed. That is, the + maximum amount of characters in the alive name may be 254 + and the maximum amount of characters in the host name may + be 254, but in total the node name must not exceed 256 + characters.

+

+ Own Id: OTP-15781 Aux Id: ERIERL-356

+
+
+
+ +
+
Erl_Interface 3.11.2
Fixed Bugs and Malfunctions diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk index 5e63f75ab5..4e31b3835d 100644 --- a/lib/erl_interface/vsn.mk +++ b/lib/erl_interface/vsn.mk @@ -1,2 +1,2 @@ -EI_VSN = 3.11.2 +EI_VSN = 3.11.3 ERL_INTERFACE_VSN = $(EI_VSN) diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml index f6bc0dc797..d83dd24f41 100644 --- a/lib/public_key/doc/src/notes.xml +++ b/lib/public_key/doc/src/notes.xml @@ -35,6 +35,26 @@ notes.xml +
Public_Key 1.6.6 + +
Improvements and New Features + + +

+ Back port of bug fix ERL-893 from OTP-22 and document + enhancements that will solve dialyzer warnings for users + of the ssl application.

+

+ This change also affects public_key, eldap (and inet + doc).

+

+ Own Id: OTP-15785 Aux Id: ERL-929, ERL-893, PR-2215

+
+
+
+ +
+
Public_Key 1.6.5
Improvements and New Features diff --git a/lib/public_key/vsn.mk b/lib/public_key/vsn.mk index 11c06fb158..c68806d856 100644 --- a/lib/public_key/vsn.mk +++ b/lib/public_key/vsn.mk @@ -1 +1 @@ -PUBLIC_KEY_VSN = 1.6.5 +PUBLIC_KEY_VSN = 1.6.6 diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml index cee6752020..01323aaa1d 100644 --- a/lib/ssl/doc/src/notes.xml +++ b/lib/ssl/doc/src/notes.xml @@ -27,6 +27,40 @@

This document describes the changes made to the SSL application.

+
SSL 9.2.3 + +
Fixed Bugs and Malfunctions + + +

+ Missing check of size of user_data_buffer made internal + socket behave as an active socket instead of active N. + This could cause memory problems.

+

+ Own Id: OTP-15802 Aux Id: ERL-934

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

+ Back port of bug fix ERL-893 from OTP-22 and document + enhancements that will solve dialyzer warnings for users + of the ssl application.

+

+ This change also affects public_key, eldap (and inet + doc).

+

+ Own Id: OTP-15785 Aux Id: ERL-929, ERL-893, PR-2215

+
+
+
+ +
+
SSL 9.2.2
Fixed Bugs and Malfunctions diff --git a/lib/ssl/vsn.mk b/lib/ssl/vsn.mk index 98070f794c..b5545b71f7 100644 --- a/lib/ssl/vsn.mk +++ b/lib/ssl/vsn.mk @@ -1 +1 @@ -SSL_VSN = 9.2.2 +SSL_VSN = 9.2.3 diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index f677438154..7d8f0bf85c 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -31,6 +31,24 @@

This document describes the changes made to the STDLIB application.

+
STDLIB 3.8.2 + +
Fixed Bugs and Malfunctions + + +

+ A bug in gen_statem has been fixed where the internal + timeout message could arrive as an info to the callback + module during high load due to incorrect use of + asynchronous timer cancel.

+

+ Own Id: OTP-15295

+
+
+
+ +
+
STDLIB 3.8.1
Fixed Bugs and Malfunctions diff --git a/lib/stdlib/src/stdlib.appup.src b/lib/stdlib/src/stdlib.appup.src index 08612ed17f..9a1b92a87c 100644 --- a/lib/stdlib/src/stdlib.appup.src +++ b/lib/stdlib/src/stdlib.appup.src @@ -43,7 +43,8 @@ {<<"^3\\.7\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, {<<"^3\\.7\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, {<<"^3\\.8$">>,[restart_new_emulator]}, - {<<"^3\\.8\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}], + {<<"^3\\.8\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, + {<<"^3\\.8\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}], [{<<"^3\\.4$">>,[restart_new_emulator]}, {<<"^3\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, {<<"^3\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, @@ -60,4 +61,5 @@ {<<"^3\\.7\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, {<<"^3\\.7\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, {<<"^3\\.8$">>,[restart_new_emulator]}, - {<<"^3\\.8\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}]}. + {<<"^3\\.8\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, + {<<"^3\\.8\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}]}. diff --git a/lib/stdlib/vsn.mk b/lib/stdlib/vsn.mk index 6471dc70e0..80ec81b832 100644 --- a/lib/stdlib/vsn.mk +++ b/lib/stdlib/vsn.mk @@ -1 +1 @@ -STDLIB_VSN = 3.8.1 +STDLIB_VSN = 3.8.2 -- cgit v1.2.3 From 8780156706350a56b763d70f8672d0343f9f9e54 Mon Sep 17 00:00:00 2001 From: Rickard Green Date: Wed, 8 May 2019 09:50:00 +0200 Subject: Fix bad merge from maint-21 --- lib/common_test/doc/src/notes.xml | 237 +++++++------------------- lib/ssh/doc/src/notes.xml | 342 -------------------------------------- 2 files changed, 60 insertions(+), 519 deletions(-) (limited to 'lib') diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index fac1b09e44..a1bd6d64b0 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -33,6 +33,66 @@ notes.xml +
Common_Test 1.17.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

+
+
+
+ +
+
Common_Test 1.17.1
Improvements and New Features @@ -216,183 +276,6 @@
-
Common_Test 1.17.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

-
-
-
- -
- -
Common_Test 1.17.1 - -
Improvements and New Features - - -

- OTP internal test improvements.

-

- Own Id: OTP-15716

-
-
-
- -
- -
Common_Test 1.17 - -
Fixed Bugs and Malfunctions - - -

- A bug caused ct:encrypt_config_file/3 and - ct:decrypt_config_file/3 to fail with - badmatch if input parameter KeyOrFile was - {key,string()}. This is now corrected.

-

- Own Id: OTP-15540

-
- -

- The status of a test case which failed with timetrap - timeout in end_per_testcase could not be modified - by returning {fail,Reason} from a - post_end_per_testcase hook function. This is now - corrected.

-

- Own Id: OTP-15584 Aux Id: ERIERL-282

-
-
-
- - -
Improvements and New Features - - -

- A new variant of the newline option to - ct_telnet:cmd/3 and ct_telnet:send/3 is - added, which allows to specify a string to append as - newline indicator on a command. By default, the value is - "\n", but in some cases it is required to be "\r\n", - which this option allows.

-

- A faulty regular expression given as parameter to - ct_telnet:expect/2,3 would earlier crash and look - like an internal error in common_test. A better error - indication is now given, but the test case will still - fail.

-

- Own Id: OTP-15229 Aux Id: ERIERL-203

-
- -

- Since the yang RFC allows more than one top element of - config data in an edit-config element, - ct_netconfc:edit_config/3,4,5 can now take a list - of XML elements.

-

- Own Id: OTP-15298

-
-
-
- -
- -
Common_Test 1.16.1 - -
Fixed Bugs and Malfunctions - - -

- The Logger handler cth_log_redirect earlier called the - report callback (report_cb) before calling the logger - formatter. In some cases this would fail, since - cth_log_redirect could not handle report callbacks with - two arguments. This is now corrected, so only the - formatter will call the report callback.

-

- Own Id: OTP-15307

-
-
-
- -
- -
Common_Test 1.16 - -
Improvements and New Features - - -

Use the compiler option nowarn_export_all to - disable export_all warnings when automatically - compiling test suites.

-

- Own Id: OTP-14810

-
- -

- Use uri_string module instead of http_uri.

-

- Own Id: OTP-14902

-
-
-
- -
-
Common_Test 1.15.4.1
Fixed Bugs and Malfunctions diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index 75cc7d2bfb..1bc4f866ce 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -390,348 +390,6 @@
-
Ssh 4.7.6 - -
Improvements and New Features - - -

- When an SSH server receives the very first message on a - new TCP connection, and that message is not the expected - one, the 64 first bytes of the received message are now - dumped in the INFO REPORT that reports the Protocol - Error.

-

- This facilitates the debugging of who sends the bad - message or of detecting a possible port scanning.

-

- Own Id: OTP-15772

-
-
-
- -
- -
Ssh 4.7.5 - -
Fixed Bugs and Malfunctions - - -

- The callback ssh_channel:init/1 was missing in - OTP-21

-

- Own Id: OTP-15762

-
- -

- 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.7.4 - -
Fixed Bugs and Malfunctions - - -

- SSH sftp daemon now accepts an SSH_FXP_STAT message - encoded according to the wrong sftp version. Some clients - sends such messages.

-

- Own Id: OTP-15498 Aux Id: ERL-822, PR-2077

-
-
-
- -
- -
Ssh 4.7.3 - -
Fixed Bugs and Malfunctions - - -

- Fixed port leakage if a ssh:daemon call failed.

-

- Own Id: OTP-15397 Aux Id: ERL-801

-
-
-
- -
- -
Ssh 4.7.2 - -
Fixed Bugs and Malfunctions - - -

- Incompatibility with newer OpenSSH fixed. Previously - versions 7.8 and later could cause Erlang SSH to exit.

-

- Own Id: OTP-15413

-
- -

- The 'exec' option for ssh daemons had wrong format - in the documentation.

-

- Own Id: OTP-15416

-
-
-
- - -
Improvements and New Features - - -

- Added public key methods ssh-ed25519 and ssh-ed448.

-

- Requires OpenSSL 1.1.1 or higher as cryptolib under the - OTP application crypto.

-

- Own Id: OTP-15094 Aux Id: OTP-15419

-
- -

- The SSH property tests are now adapted to the PropEr - testing tool.

-

- Own Id: OTP-15312

-
- -

- The term "user" was not documented in the SSH app. A new - chapter with terminology is added to the User's Manual - where the term "user" is defined.

-

- A reference manual page about the module ssh_file - is also added. This is the default callback module for - user's keys, host keys etc.

-

- Own Id: OTP-15314

-
- -

- Host and user key checking is made more robust.

-

- Own Id: OTP-15424

-
-
-
- -
- -
Ssh 4.7.1 - -
Improvements and New Features - - -

- Extended the undocumented ssh_dbg debug module - with an api for a circular trace buffer. This makes it - easy to record the last low-level events before an error - is detected. It is intended for solving difficult errors.

-

- Own Id: OTP-15020

-
- -

- The key exchange methods - 'curve25519-sha256@libssh.org', - 'curve25519-sha256' and 'curve448-sha512' - are implemented. The last two are defined in - https://tools.ietf.org/html/draft-ietf-curdle-ssh-curves

-

- They all depends on that OpenSSL 1.1.1 or higher is used - as cryptolib.

-

- Own Id: OTP-15133 Aux Id: OTP-15240

-
- -

- The cipher 'chacha20-poly1305@openssh.com' is now - supported if OpenSSL 1.1.1 or higher is used as - cryptolib.

-

- Own Id: OTP-15209 Aux Id: OTP-15164

-
-
-
- -
- -
Ssh 4.7 -
Fixed Bugs and Malfunctions - - -

- If the daemon port listener is restarted, it could - potentially fail with eaddrinuse if the timing is - unlucky. It will now retry and exponentially back off the - listener restart a few times before failing.

-

- Own Id: OTP-14955

-
- -

- A channel callback module always got the module name as - reason in a call to terminate. Now it will get the proper - Reason, usually 'normal'.

-

- Own Id: OTP-15084

-
-
-
- - -
Improvements and New Features - - -

- The option exec has new option values defined to - make it much more easy to implement an own exec - server.

-

- An option called exec for daemons implementing the - handling of 'exec' requests has existed a long time but - has been undocumented. The old undocumented value - as - well as its behavior - is kept for compatibility EXCEPT - that error messages are changed and are sent as - "stderror" text.

-

- *** POTENTIAL INCOMPATIBILITY ***

-

- Own Id: OTP-14851

-
- -

- Updated ssh_connection:shell/2 documentation.

-

- Own Id: OTP-14880

-
- -

- The experimental ssh_dbg module is completely - re-written. Its purpose is to make tracing and debugging - easier on deployed systems.

-

- Own Id: OTP-14896

-
- -

- The SSH supervisor structure has been slightly changed. - This makes stopping the ssh application considerably - faster if there are open connections. This is important - in for example restarts.

-

- Own Id: OTP-14988

-
- -

- The type specifications in SSH are completly reworked and - the following types are renamed:

-

- ssh:ssh_connection_ref() is changed to - ssh:connection_ref(),

-

- ssh:ssh_daemon_ref() is changed to - ssh:daemon_ref(),

-

- ssh:ssh_channel_id() is changed to - ssh:channel_id().

-

- *** POTENTIAL INCOMPATIBILITY ***

-

- Own Id: OTP-15002 Aux Id: OTP-15030

-
- -

- The internal timer handling in SSH is now based on the - gen_statem timers.

-

- Own Id: OTP-15019

-
- -

- Removed the undocumented and unused modules - ssh_client_key.erl and ssh_server_key.erl.

-

- Own Id: OTP-15028

-
- -

- The Reference Manual pages are partly updated.

-

- The ssh page is now generated from specs and types, is - restructured and is partly rephrased.

-

- The ssh_channel, ssh_connection, ssh_client_key_api, - ssh_server_key_api and ssh_sftp pages are updated with - links, correct type names and some minor changes.

-

- Own Id: OTP-15030 Aux Id: OTP-15002

-
- -

- The behaviors ssh_channel and - ssh_daemon_channel are renamed to - ssh_client_channel and ssh_server_channel - respectively.

-

- The old modules are kept for compatibility but should - preferably be replaced when updating callback modules - referring them.

-

- Own Id: OTP-15041

-
- -

- New test suite for channels.

-

- Own Id: OTP-15051

-
- -

- The rekey_limit option could now set the max time - as well as the previously max data amount.

-

- Own Id: OTP-15069 Aux Id: ERL-617

-
- -

- Changed process exit supervision from links to monitors.

-

- Own Id: OTP-15082

-
- -

- Better handling of misbehaving channel callback modules.

-

- Own Id: OTP-15083

-
- -

- A new moduli file is generated. This file is used for the - recommended diffie-hellman-group-exchange-sha256 - key exchange algorithm in SSH.

-

- Own Id: OTP-15113

-
-
-
-
-
Ssh 4.6.9.3
Fixed Bugs and Malfunctions -- cgit v1.2.3