diff options
author | Henrik Nord <henrik@erlang.org> | 2022-09-21 11:10:58 +0200 |
---|---|---|
committer | Henrik Nord <henrik@erlang.org> | 2022-09-21 11:10:58 +0200 |
commit | 8682e4d28cad3dd4f315000d8328f40cc316d48a (patch) | |
tree | 97a4006ed4c535e77b96c0824695d9da97b8303a /lib/ssh | |
parent | 28de4f43cb7f6fceba828d0847d9f34a51b0ca51 (diff) | |
parent | 6efb5e31df6bc512ed6c466584ef15b846dcecab (diff) | |
download | erlang-8682e4d28cad3dd4f315000d8328f40cc316d48a.tar.gz |
Merge branch 'maint' into master
* maint:
Updated OTP version
Prepare release
Update copyright year
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/doc/src/Makefile | 2 | ||||
-rw-r--r-- | lib/ssh/doc/src/notes.xml | 61 | ||||
-rw-r--r-- | lib/ssh/src/ssh.erl | 2 | ||||
-rw-r--r-- | lib/ssh/src/ssh_client_channel.erl | 2 | ||||
-rw-r--r-- | lib/ssh/src/ssh_fsm_userauth_server.erl | 2 | ||||
-rw-r--r-- | lib/ssh/src/ssh_sftp.erl | 2 | ||||
-rw-r--r-- | lib/ssh/src/ssh_system_sup.erl | 2 | ||||
-rw-r--r-- | lib/ssh/test/ssh_connection_SUITE.erl | 2 | ||||
-rw-r--r-- | lib/ssh/test/ssh_protocol_SUITE.erl | 2 | ||||
-rw-r--r-- | lib/ssh/vsn.mk | 2 |
10 files changed, 70 insertions, 9 deletions
diff --git a/lib/ssh/doc/src/Makefile b/lib/ssh/doc/src/Makefile index 6a7f17a828..3835866fcc 100644 --- a/lib/ssh/doc/src/Makefile +++ b/lib/ssh/doc/src/Makefile @@ -1,7 +1,7 @@ # # %CopyrightBegin% # -# Copyright Ericsson AB 2004-2021. All Rights Reserved. +# Copyright Ericsson AB 2004-2022. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index 13019140eb..465ac854f0 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -30,6 +30,67 @@ <file>notes.xml</file> </header> +<section><title>Ssh 4.15</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Handling rare race condition at channel close.</p> + <p> + Own Id: OTP-18220 Aux Id: ERIERL-666, ERIERL-661 </p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p> + New ssh option <c>no_auth_needed</c> to skip the ssh + authentication. Use with caution!</p> + <p> + Own Id: OTP-18134 Aux Id: GH-6021 </p> + </item> + <item> + <p> + This change fixes dialyzer warnings generated for + inets/httpd examples (includes needed adjustment of spec + for ssh_sftp module).</p> + <p> + Own Id: OTP-18178 Aux Id: ERIERL-833, ERIERL-834, + ERIERL-835 </p> + </item> + <item> + <p> + The new function <c>ssh:daemon_replace_options/2</c> + makes it possible to change the <c>Options</c> in a + running SSH server.</p> + <p> + Established connections are not affected, only those + created after the call to this new function.</p> + <p> + Own Id: OTP-18196</p> + </item> + <item> + <p> + Add a timeout as option <c>max_initial_idle_time</c>. It + closes a connection that does not allocate a channel + within the timeout time.</p> + <p> + For more information about timeouts, see the <seeguide + marker="hardening#timeouts">Timeouts section </seeguide> + in the User's Guide <seeguide + marker="hardening">Hardening</seeguide> chapter.</p> + <p> + Own Id: OTP-18207 Aux Id: PR-6231 </p> + </item> + </list> + </section> + +</section> + <section><title>Ssh 4.14.1</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl index 0a7fce9fce..5fb95fc7d9 100644 --- a/lib/ssh/src/ssh.erl +++ b/lib/ssh/src/ssh.erl @@ -1,7 +1,7 @@ % %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2004-2021. All Rights Reserved. +%% Copyright Ericsson AB 2004-2022. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/lib/ssh/src/ssh_client_channel.erl b/lib/ssh/src/ssh_client_channel.erl index 254b8e85ff..e1c7e1a7b5 100644 --- a/lib/ssh/src/ssh_client_channel.erl +++ b/lib/ssh/src/ssh_client_channel.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2021. All Rights Reserved. +%% Copyright Ericsson AB 2008-2022. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/lib/ssh/src/ssh_fsm_userauth_server.erl b/lib/ssh/src/ssh_fsm_userauth_server.erl index 9a64df4545..fc1750ce2c 100644 --- a/lib/ssh/src/ssh_fsm_userauth_server.erl +++ b/lib/ssh/src/ssh_fsm_userauth_server.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2021. All Rights Reserved. +%% Copyright Ericsson AB 2008-2022. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/lib/ssh/src/ssh_sftp.erl b/lib/ssh/src/ssh_sftp.erl index 8f70765b28..9d912e2a6c 100644 --- a/lib/ssh/src/ssh_sftp.erl +++ b/lib/ssh/src/ssh_sftp.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2005-2021. All Rights Reserved. +%% Copyright Ericsson AB 2005-2022. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/lib/ssh/src/ssh_system_sup.erl b/lib/ssh/src/ssh_system_sup.erl index a494c97daa..ed27dc52b2 100644 --- a/lib/ssh/src/ssh_system_sup.erl +++ b/lib/ssh/src/ssh_system_sup.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2021. All Rights Reserved. +%% Copyright Ericsson AB 2008-2022. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/lib/ssh/test/ssh_connection_SUITE.erl b/lib/ssh/test/ssh_connection_SUITE.erl index f7f0a118f7..06d90cc036 100644 --- a/lib/ssh/test/ssh_connection_SUITE.erl +++ b/lib/ssh/test/ssh_connection_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2021. All Rights Reserved. +%% Copyright Ericsson AB 2008-2022. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl index dd7c22dcd5..666ac76f63 100644 --- a/lib/ssh/test/ssh_protocol_SUITE.erl +++ b/lib/ssh/test/ssh_protocol_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2021. All Rights Reserved. +%% Copyright Ericsson AB 2008-2022. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in diff --git a/lib/ssh/vsn.mk b/lib/ssh/vsn.mk index 48b03adafa..fc5447302c 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.14.1 +SSH_VSN = 4.15 APP_VSN = "ssh-$(SSH_VSN)" |