From 337c6af6e0fb68c998f6d8ce501ea414fb1b1ce2 Mon Sep 17 00:00:00 2001 From: Niclas Eklund Date: Wed, 23 Dec 2009 16:09:55 +0000 Subject: Old release notes removed --- lib/ssh/doc/src/Makefile | 6 +- lib/ssh/doc/src/notes.xml | 15 +- lib/ssh/doc/src/notes_history.xml | 737 --------------------------------- lib/ssh/doc/src/part_notes.xml | 3 +- lib/ssh/doc/src/part_notes_history.xml | 36 -- 5 files changed, 16 insertions(+), 781 deletions(-) delete mode 100644 lib/ssh/doc/src/notes_history.xml delete mode 100644 lib/ssh/doc/src/part_notes_history.xml diff --git a/lib/ssh/doc/src/Makefile b/lib/ssh/doc/src/Makefile index d2907a39d7..e02f04e7ad 100644 --- a/lib/ssh/doc/src/Makefile +++ b/lib/ssh/doc/src/Makefile @@ -53,8 +53,8 @@ XML_REF3_FILES = \ ssh_sftp.xml \ ssh_sftpd.xml \ -XML_PART_FILES = part_notes.xml part_notes_history.xml -XML_CHAPTER_FILES = notes.xml notes_history.xml +XML_PART_FILES = part_notes.xml +XML_CHAPTER_FILES = notes.xml BOOK_FILES = book.xml @@ -70,8 +70,6 @@ EXTRA_FILES = \ $(XML_REF3_FILES:%.xml=$(HTMLDIR)/%.html) \ $(XML_CHAPTER_FILES:%.xml=$(HTMLDIR)/%.html) -# notes_history.html \ - MAN3_FILES = $(XML_REF3_FILES:%.xml=$(MAN3DIR)/%.3) diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index 54e0cf9059..ef49bb8b3d 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -29,6 +29,19 @@ notes.xml +
Ssh 1.1.8 + +
Improvements and New Features + + +

Old release notes removed.

+

Own Id: OTP-8356 Aux Id:

+
+
+
+ +
+
Ssh 1.1.7
Fixed Bugs and Malfunctions @@ -581,8 +594,6 @@
-
diff --git a/lib/ssh/doc/src/notes_history.xml b/lib/ssh/doc/src/notes_history.xml deleted file mode 100644 index bfebcd4bf4..0000000000 --- a/lib/ssh/doc/src/notes_history.xml +++ /dev/null @@ -1,737 +0,0 @@ - - - - -
- - 2009 - 2009 - Ericsson AB, 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 - compliance with the License. You should have received a copy of the - Erlang Public License along with this software. If not, it can be - retrieved online at http://www.erlang.org/. - - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See - the License for the specific language governing rights and limitations - under the License. - - The Initial Developer of the Original Code is Ericsson AB. - - - SSH Release Notes History - - - - - - - A - notes_history.xml -
- -
Ssh 0.9.9.6 - -
Improvements and New Features - - -

- Updated asn1 file due to change in the asn1 compiler. - This has no semantical effect on the ssh application.

-

- Own Id: OTP-7246

-
- -

- Allows for the option {fd, FD} in listen and connect - calls. The option is passed on to gen_tcp:listen and - gen_tcp:connect

-

- Own Id: OTP-7247

-
-
-
-
- -
Ssh 0.9.9.5 - -
Fixed Bugs and Malfunctions - - -

- Putty version 0.60 sends ignore messages, which hanged - the OTP ssh server.

-

- Own Id: OTP-7076

-
- -

- ssh_cm hanged when connection was closed during - handshake. (Triggered by putty 0.60 client.)

-

- Own Id: OTP-7089

-
- -

- Fixed crash in server when receiving an empty ignore-msg. - (From the putty 0.60 client.)

-

- Own Id: OTP-7135

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

- Now uses the base 64 encode/decode function in stdlib.

-

- Own Id: OTP-6486

-
- -

- Removed runtime dependency on asn1.

-

- Own Id: OTP-6570

-
- -

- Documentation update of ssh.

-

- Own Id: OTP-7063 Aux Id: seq10789

-
- -

- Same listener is used for both sshd and sftpd. Previously - the sftpd server had to be run on a separate port, now - the sshd listener will start an sftpd server when an sftp - client connects.

-

- Own Id: OTP-7090 Aux Id: seq10675

-
- -

- Kebord-interactive support, according to rfc 4256, has - been added to the ssh client. Also the option - quiet_mode has been added so that unwanted banners - may be suppressed.

-

- Own Id: OTP-7106 Aux Id: seq10841

-
-
-
- -
- -
Ssh 0.9.9.4 - -
Improvements and New Features - - -

- [sftpd] - Root parameter now behaves as expected, - instead of making sftpd malfunction.

-

- Own Id: OTP-7057 Aux Id: seq10830

-
-
-
-
- -
Ssh 0.9.9.3 - -
Fixed Bugs and Malfunctions - - -

- The sftp-server could crash if a "ls" was done on the - client, and a file was removed while ssh_sftpd:list_dir - was reading the directory, an error code from - read_file_info wasn't handled properly. This fix makes ls - return an error code instead.

-

- Own Id: OTP-6854 Aux Id: seq10740

-
- -

- Fixed bugs in prompting in ssl_cli. Prompts like \003> - were written as \300>. Also, newlines and returns was - removed.

-

- Own Id: OTP-6917 Aux Id: seq10773

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

- [sftpd] - New option "root" to set the root of the - sftp-server and the callback module for file handling now - has a state parameter.

-

- Own Id: OTP-7075 Aux Id: seq10675

-
-
-
-
- -
- Ssh 0.9.9.2 -
- Better error-handling in ssh_sshd:listen - - -

The caller was hanged when listening with ssh_sshd:listen - (or ssh_sftpd:listen) on a port and IP already in use. - Now an error is returned instead.

-

Own Id: OTP-6727

-
-
-
- -
- Fix in ssh_sftpd - - -

Cd ../.. didn't work when connecting to a ssh_sftpd server.

-

Own Id: OTP-6727

-
-
-
-
- -
- Ssh 0.9.9.1 - -
- Minor Makefile changes - - -

Removed use of from Makefile.

-

Own Id: OTP-6689

-
-
-
-
- -
- Ssh 0.9.9 - -
- Fixed Bugs and Malfunctions - - -

A race condition that could make the server crash if a - client sent a SSH_MSG_USERAUTH_REQUEST packet immediately - after its SSH_MSG_SERVICE_REQUEST, is removed.

-

Own Id: OTP-6379 Aux Id: seq10523

-
-
-
-
- -
- Ssh 0.9.8 - -
- Fixed Bugs and Malfunctions - - -

Corrected minor bugs and removed dead code found by - dialyzer.

-

Own Id: OTP-6524

-
-
-
-
- -
- Ssh 0.9.7 - -
- Fixed Bugs and Malfunctions - - -

[sftp] - The function ssh_sftp:make_symlink/3 was not - fully implemented.

-

Own Id: OTP-6446

-
- -

[ssh] - An internal value was, due to a bug, always set - to undefined even when it was not, this could lead to - connections being wrongly refused.

-

Own Id: OTP-6450

-
- -

A pattern matching was missing "/binary" resulting in - that the internal function ssh_xfer:decode_acl/2 did not - work as expected.

-

Own Id: OTP-6458

-
- -

[sftp] - read_link/2 did not return the documented value

-

Own Id: OTP-6471

-
- -

Removed debugg printouts from ssh_cli.erl

-

Own Id: OTP-6483

-
- -

[sftp, ssh] - The connection timeout was overridden by an - internal gen_server default timeout.

-

Own Id: OTP-6488 Aux Id: seq10569

-
-
-
-
- -
- Ssh 0.9.6 - -
- Fixed Bugs and Malfunctions - - -

Removed debug printout from production code.

-

Own Id: OTP-6348 Aux Id: seq10510

-
- -

[sftpd] - When the sftp client ends the session the - server will now behave correctly and not leave the client - hanging.

-

Own Id: OTP-6349 Aux Id: seq10510

-
- -

[sftpd] - No longer used files were not closed until the - session was ended.

-

Own Id: OTP-6350 Aux Id: seq10514

-
- -

[sftpd] - File rename requests sent by sftp version 3 - clients were not handled.

-

Own Id: OTP-6352 Aux Id: seq10513

-
- -

[sftpd] - Request that did not fit into one ssh message - were not handled.

-

Own Id: OTP-6353 Aux Id: seq10515

-
- -

Removed error logging of auth method none, as this is not - an error but rather a feature, that is used to get - initial information from the server.

-

Own Id: OTP-6414

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

[sftpd] - Added new option to specify a callback module - for the sftpd-server file handling. The default callback - module uses file and filelib.

-

Own Id: OTP-6356 Aux Id: seq10519

-
-
-
-
- -
- Ssh 0.9.5 - -
- Fixed Bugs and Malfunctions - - -

The data window in SSH wasn't resized in the ssh_cli - receive data, this made the ssh_cli-server hang if more - than 64K data was received at one time. The option - tcp_nodelay was added, for nodelay in tcp connections.

-

Own Id: OTP-6231

-
-
-
-
- -
- SSH 0.9.4 - -
- Reported Fixed Bugs and Malfunctions - - -

Unnecessary explicit start of crypto application - in ssh application. This has been removed. The - app-file specifies that ssh depends on the crypto app. - This is enough. See also the - ssh module.

-

Also changed some error reports to info reports.

-

Own Id: OTP-6183

-

Aux Id: Seq 10383

-
-
-
-
- -
- SSH 0.9.3 - -
- Improvements and New Features - - -

Added way for cli to get peer name

-

Own Id: OTP-6138

-
-
-
-
- -
- SSH 0.9.2 - -
- Improvements and New Features - - -

Added some options to listen

-

Own Id: OTP-6070

-
-
-
-
- -
- SSH 0.9.1 -
Ssh 0.9.9.4 - -
Improvements and New Features - - -

- [sftpd] - Root parameter now behaves as expected, - instead of making sftpd malfunction.

-

- Own Id: OTP-7057 Aux Id: seq10830

-
-
-
-
- -
Ssh 0.9.9.3 - -
Fixed Bugs and Malfunctions - - -

- The sftp-server could crash if a "ls" was done on the - client, and a file was removed while ssh_sftpd:list_dir - was reading the directory, an error code from - read_file_info wasn't handled properly. This fix makes ls - return an error code instead.

-

- Own Id: OTP-6854 Aux Id: seq10740

-
- -

- Fixed bugs in prompting in ssl_cli. Prompts like \003> - were written as \300>. Also, newlines and returns was - removed.

-

- Own Id: OTP-6917 Aux Id: seq10773

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

- [sftpd] - New option "root" to set the root of the - sftp-server and the callback module for file handling now - has a state parameter.

-

- Own Id: OTP-7075 Aux Id: seq10675

-
-
-
-
- -
- Ssh 0.9.9.2 -
- Better error-handling in ssh_sshd:listen - - -

The caller was hanged when listening with ssh_sshd:listen - (or ssh_sftpd:listen) on a port and IP already in use. - Now an error is returned instead.

-

Own Id: OTP-6727

-
-
-
- -
- Fix in ssh_sftpd - - -

Cd ../.. didn't work when connecting to a ssh_sftpd server.

-

Own Id: OTP-6727

-
-
-
-
- -
- Ssh 0.9.9.1 - -
- Minor Makefile changes - - -

Removed use of from Makefile.

-

Own Id: OTP-6689

-
-
-
-
- -
- Ssh 0.9.9 - -
- Fixed Bugs and Malfunctions - - -

A race condition that could make the server crash if a - client sent a SSH_MSG_USERAUTH_REQUEST packet immediately - after its SSH_MSG_SERVICE_REQUEST, is removed.

-

Own Id: OTP-6379 Aux Id: seq10523

-
-
-
-
- -
- Ssh 0.9.8 - -
- Fixed Bugs and Malfunctions - - -

Corrected minor bugs and removed dead code found by - dialyzer.

-

Own Id: OTP-6524

-
-
-
-
- -
- Ssh 0.9.7 - -
- Fixed Bugs and Malfunctions - - -

[sftp] - The function ssh_sftp:make_symlink/3 was not - fully implemented.

-

Own Id: OTP-6446

-
- -

[ssh] - An internal value was, due to a bug, always set - to undefined even when it was not, this could lead to - connections being wrongly refused.

-

Own Id: OTP-6450

-
- -

A pattern matching was missing "/binary" resulting in - that the internal function ssh_xfer:decode_acl/2 did not - work as expected.

-

Own Id: OTP-6458

-
- -

[sftp] - read_link/2 did not return the documented value

-

Own Id: OTP-6471

-
- -

Removed debugg printouts from ssh_cli.erl

-

Own Id: OTP-6483

-
- -

[sftp, ssh] - The connection timeout was overridden by an - internal gen_server default timeout.

-

Own Id: OTP-6488 Aux Id: seq10569

-
-
-
-
- -
- Ssh 0.9.6 - -
- Fixed Bugs and Malfunctions - - -

Removed debug printout from production code.

-

Own Id: OTP-6348 Aux Id: seq10510

-
- -

[sftpd] - When the sftp client ends the session the - server will now behave correctly and not leave the client - hanging.

-

Own Id: OTP-6349 Aux Id: seq10510

-
- -

[sftpd] - No longer used files were not closed until the - session was ended.

-

Own Id: OTP-6350 Aux Id: seq10514

-
- -

[sftpd] - File rename requests sent by sftp version 3 - clients were not handled.

-

Own Id: OTP-6352 Aux Id: seq10513

-
- -

[sftpd] - Request that did not fit into one ssh message - were not handled.

-

Own Id: OTP-6353 Aux Id: seq10515

-
- -

Removed error logging of auth method none, as this is not - an error but rather a feature, that is used to get - initial information from the server.

-

Own Id: OTP-6414

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

[sftpd] - Added new option to specify a callback module - for the sftpd-server file handling. The default callback - module uses file and filelib.

-

Own Id: OTP-6356 Aux Id: seq10519

-
-
-
-
- -
- Ssh 0.9.5 - -
- Fixed Bugs and Malfunctions - - -

The data window in SSH wasn't resized in the ssh_cli - receive data, this made the ssh_cli-server hang if more - than 64K data was received at one time. The option - tcp_nodelay was added, for nodelay in tcp connections.

-

Own Id: OTP-6231

-
-
-
-
- -
- SSH 0.9.4 - -
- Reported Fixed Bugs and Malfunctions - - -

Unnecessary explicit start of crypto application - in ssh application. This has been removed. The - app-file specifies that ssh depends on the crypto app. - This is enough. See also the - ssh module.

-

Also changed some error reports to info reports.

-

Own Id: OTP-6183

-

Aux Id: Seq 10383

-
-
-
-
- -
- SSH 0.9.3 - -
- Improvements and New Features - - -

Added way for cli to get peer name

-

Own Id: OTP-6138

-
-
-
-
- -
- SSH 0.9.2 - -
- Improvements and New Features - - -

Added some options to listen

-

Own Id: OTP-6070

-
-
-
-
- -
- SSH 0.9.1 - -
- Improvements and New Features - - -

Fixes in ssh_sftp, changes of timeout handling, - expand_fun moved to io:setopts

-

Own Id: OTP-5877 Aux Id: OTP-5781

-
-
-
-
- -
- SSH 0.9 - -
- Improvements and New Features - - -

The previously undocumented and UNSUPPORTED - application has been updated and documented. This release - of the application is still considered to be a - beta release and (if necessary) there could still be - changes in its API before it reaches 1.0.

-

Also, more cryptographic algorithms have been added to - the application.

-

*** POTENTIAL INCOMPATIBILITY ***

-

Own Id: OTP-5631

-
-
-
-
-
- -
- - diff --git a/lib/ssh/doc/src/part_notes.xml b/lib/ssh/doc/src/part_notes.xml index f87efffe5c..700f76200c 100644 --- a/lib/ssh/doc/src/part_notes.xml +++ b/lib/ssh/doc/src/part_notes.xml @@ -31,8 +31,7 @@

This document describes the changes made to the SSH application.

-

For information about older versions see - release notes history.

+ diff --git a/lib/ssh/doc/src/part_notes_history.xml b/lib/ssh/doc/src/part_notes_history.xml deleted file mode 100644 index 49f72fd3db..0000000000 --- a/lib/ssh/doc/src/part_notes_history.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - -
- - 2004 - 2007 - Ericsson AB, 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 - compliance with the License. You should have received a copy of the - Erlang Public License along with this software. If not, it can be - retrieved online at http://www.erlang.org/. - - Software distributed under the License is distributed on an "AS IS" - basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See - the License for the specific language governing rights and limitations - under the License. - - The Initial Developer of the Original Code is Ericsson AB. - - - Ssh - Ingela Anderton Andin - - - - part_notes.xml -
- -
- - -- cgit v1.2.3