|
10 | 10 | <projectUrl>https://github.com/sshnet/SSH.NET/</projectUrl> |
11 | 11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
12 | 12 | <description>SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism and with broad framework support.</description> |
13 | | - <releaseNotes>2016.0.0-beta3 |
14 | | -============== |
15 | | - |
16 | | -New Features: |
17 | | - |
18 | | - * Added support for .NET Core 1.0 (.NETStandard 1.3) |
19 | | - |
20 | | -2016.0.0-beta2 |
21 | | -============== |
22 | | - |
23 | | -Changes: |
24 | | - |
25 | | - * Improved performance of ScpClient (GitHub issue #21) |
26 | | - |
27 | | -Fixes: |
28 | | - |
29 | | - * Terminal width (pixels) is not passed in pty-req |
30 | | - * Stopping ForwardedPortDynamic without ever having started would result in a NRE |
31 | | - |
32 | | -2016.0.0-beta1 |
33 | | -============== |
34 | | - |
35 | | -New Features: |
36 | | - |
37 | | - * Added support for HMAC-SHA512 (hmac-sha2-512 and hmac-sha2-512-96) |
38 | | - * Added support for Universal Windows Platform 10 (UAP10.0) |
39 | | - |
40 | | -Changes: |
41 | | - |
42 | | - * Overall performance improvements |
43 | | - * Relicensed code under MIT license, explicitly permitting reuse within proprietary software |
44 | | - provided all copies of the licensed software include a copy of the MIT License terms and the |
45 | | - copyright notice |
46 | | - * Separated our hash algorithms into SshNet.Security.Cryptography project and package |
47 | | - * When available, prefer hash algorithms and encodings from target framework |
48 | | - * Refactoring to prepare for upcoming .NET Core support |
49 | | - |
50 | | -Fixes: |
51 | | - |
52 | | - * Partial reads from stream assume end (CodePlex issue #1516) |
53 | | - * Session.Disconnect() hangs forever (CodePlex issue #2591) |
54 | | - * SshData.ReadInt64() is broken (CodePlex issue #2579) |
55 | | - * Race condition when SSH_MSG_GLOBAL_REQUEST is received immediately after successful authentication (GitHub issue #8) |
56 | | - |
57 | | -2014.4.6-beta2 |
58 | | -============== |
59 | | - |
60 | | -New Features: |
61 | | - |
62 | | - * Improved accuracy of IsConnected on .NET |
63 | | - * Added support for ssh.com (SSH-2) private keys (issue #1987) |
64 | | - * Support an acceptable group of up to 8192 bits for SHA-1 and SHA-256 Diffie-Hellman Group and Key Exchange (issues #1973 and #1777) |
65 | | - |
66 | | -Changes: |
67 | | - |
68 | | - * Reduced default buffer size for SftpClient from 64 KB to 32 KB as some SSH servers apply a hard limit of 64 KB at the transport level. |
69 | | - |
70 | | -Fixes: |
71 | | - |
72 | | - * SftpClient is throwing undocumented exceptions (issue #2148) |
73 | | - * Client channels are no longer closed on dispose (issue #1943) |
74 | | - * SftpClient.Exists(string) returns true for a path that does not exist (issues #1952, #1696 and #1574) |
75 | | - * ObjectDisposedException when channel is closing (issues #1942 and #1944) |
76 | | - * Stack overflow during authentication when server returns same allowed methods after partial success (issue #2399) |
77 | | - * SshCommand doesn't cleanup subscribed events (issue #2295) |
78 | | - * Lines before protocol identification string are not skipped (issue #1935 and #2223) |
79 | | - * ShellStream.ReadLine produces incorrect output when reading multi-byte characters (issue #2190) |
80 | | - * SftpClient constructor throws ArgumentException when host contains underscore (issue #1845) |
81 | | - * Signing key is missing from source download (issue #2455) |
82 | | - * Forwarded Port channels can get stuck waiting (issue #1558) |
83 | | - * NullReferenceException when SftpFileStream is finalized after dispose of session (issue #2013) |
84 | | - * BlockCipher.Encrypt fails if input message is not padded (issue #2547) |
85 | | - * ScpClient: Missing files when using DirectoryUpload (issue #1382) |
86 | | - * Dynamic port forwarding slows down to a crawl (issue #2010) |
87 | | - * SendKeepAlive causes SocketException when connection is dropped (issue #2029) |
88 | | - * SocketException on Dispose or Disconnect (issue #2400) |
89 | | - * Sending EOF on wrong channel number (issue #1877) |
90 | | - * ForwardedPortDynamic: Unhandled exception if client terminates socket (issue #1844) |
91 | | - |
92 | | -2014.4.6-beta1 |
93 | | -============== |
94 | | - |
95 | | -New Features: |
96 | | - |
97 | | - * Added callbacks to UploadFile, DownloadFile and ListDirectory in SftpClient (issue #1324) |
98 | | - * Allow a given private key file to be used concurrently |
99 | | - * Performance improvements: |
100 | | - - optimization of payload size for both read and write operations (SftpClient only) |
101 | | - - increase window size from 1MB to 2MB |
102 | | - - increase buffer size from 16KB to 64KB for SftpClient |
103 | | - - take into account the maximum remote packet size of the channel for write operations |
104 | | - - increase maximum size of packets that we can receive from 32 KB to 64 KB |
105 | | - * Improve exception message for authentication failures |
106 | | - |
107 | | -Breaking changes: |
108 | | - |
109 | | - * Assembly name is now Renci.SshNet for all supported frameworks |
110 | | - * The Renci.SshNet assemblies for .NET and Silverlight are now strong-named (issue #1802) |
111 | | - |
112 | | -Fixes: |
113 | | - |
114 | | - * Incorrect copyright in assemblies (issue #1764) |
115 | | - * Remove linefeed from WriteLine method in Shellstream class (issue #1584) |
116 | | - * Disable logging of messages in release builds (issue #1767) |
117 | | - * Stuck loop on key exchange using arcfour encryption (issue #1922) |
118 | | - * Timeout sending data to server with low window size (issue #1706) |
119 | | - * No connection possible with the same auth method requested multiple times (issue #1930) |
120 | | - * Unobserved exception rethrown by finalizer thread (issue #1298 and #1587) |
121 | | - * Client cipher is used to decrypt server messages (issue #1917) |
122 | | - * Connection dropped by server due to invalid DSA signature (issue #1918) |
123 | | - * Correct casing of Security/Cryptography/HMAC.cs to fix build on Linux (issue #1505) |
124 | | - * HTTP proxy hangs (issue #1890) |
125 | | - * Wrong parameters to SetSocketOption leads to SocketException under Mono (issue #1799) |
126 | | - * Incorrect check for timeout values (issue #1620) |
127 | | - * Wrong PKCS7 padding in DES algorithm (issue #1580) |
128 | | - * OverflowException on empty server response (issue #1562) |
129 | | - * Event handle leak (issue #1761) |
130 | | - * SftpFileStream is very slow (issue #1919) |
131 | | - * Write access required for private key file</releaseNotes> |
| 13 | + <releaseNotes>https://github.com/sshnet/SSH.NET/releases/tag/2016.0.0-beta3</releaseNotes> |
132 | 14 | <summary>A Secure Shell (SSH) library for .NET, optimized for parallelism.</summary> |
133 | 15 | <copyright>2012-2016, RENCI</copyright> |
134 | 16 | <language>en-US</language> |
|
0 commit comments