SSH.NET.nuspec 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
  3. <metadata>
  4. <id>SSH.NET</id>
  5. <version>2014.4.6-beta4</version>
  6. <title>SSH.NET</title>
  7. <authors>Renci</authors>
  8. <owners>olegkap,drieseng</owners>
  9. <licenseUrl>http://sshnet.codeplex.com/license</licenseUrl>
  10. <projectUrl>http://sshnet.codeplex.com/</projectUrl>
  11. <requireLicenseAcceptance>true</requireLicenseAcceptance>
  12. <description>This project was inspired by Sharp.SSH library which was ported from Java. This library is a complete rewrite using .NET, without any third party dependencies and to utilize the parallelism as much as possible to allow best performance you can get. SSH.NET supports .NET 3.5, .NET 4.0, Silverlight 4.0, Silverlight 5.0, Windows Phone 7.1 and Windows Phone 8.</description>
  13. <releaseNotes>2014.4.6-beta4
  14. ==============
  15. New Features:
  16. * Added support for HMAC-SHA512 (hmac-sha2-512 and hmac-sha2-512-96)
  17. Changes:
  18. * Relicensed code under MIT licensen, explicitly permitting reuse within proprietary software
  19. provided all copies of the licensed software include a copy of the MIT License terms and the
  20. copyright notice.
  21. Fixes:
  22. * Fixed session event leak when SshCommand is never disposed
  23. 2014.4.6-beta3
  24. ==============
  25. New Features:
  26. * Overall performance improvements
  27. Fixes:
  28. * Partial reads from stream assume end (issue #1516)
  29. * Session.Disconnect() hangs forever (issue #2591)
  30. * SshData.ReadInt64() is broken (issue #2579)
  31. 2014.4.6-beta2
  32. ==============
  33. New Features:
  34. * Improved accuracy of IsConnected on .NET
  35. * Added support for ssh.com (SSH-2) private keys (issue #1987)
  36. * 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)
  37. Changes:
  38. * 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.
  39. Fixes:
  40. * SftpClient is throwing undocumented exceptions (issue #2148)
  41. * Client channels are no longer closed on dispose (issue #1943)
  42. * SftpClient.Exists(string) returns true for a path that does not exist (issues #1952, #1696 and #1574)
  43. * ObjectDisposedException when channel is closing (issues #1942 and #1944)
  44. * Stack overflow during authentication when server returns same allowed methods after partial success (issue #2399)
  45. * SshCommand doesn't cleanup subscribed events (issue #2295)
  46. * Lines before protocol identification string are not skipped (issue #1935 and #2223)
  47. * ShellStream.ReadLine produces incorrect output when reading multi-byte characters (issue #2190)
  48. * SftpClient constructor throws ArgumentException when host contains underscore (issue #1845)
  49. * Signing key is missing from source download (issue #2455)
  50. * Forwarded Port channels can get stuck waiting (issue #1558)
  51. * NullReferenceException when SftpFileStream is finalized after dispose of session (issue #2013)
  52. * BlockCipher.Encrypt fails if input message is not padded (issue #2547)
  53. * ScpClient: Missing files when using DirectoryUpload (issue #1382)
  54. * Dynamic port forwarding slows down to a crawl (issue #2010)
  55. * SendKeepAlive causes SocketException when connection is dropped (issue #2029)
  56. * SocketException on Dispose or Disconnect (issue #2400)
  57. * Sending EOF on wrong channel number (issue #1877)
  58. * ForwardedPortDynamic: Unhandled exception if client terminates socket (issue #1844)
  59. 2014.4.6-beta1
  60. ==============
  61. New Features:
  62. * Added callbacks to UploadFile, DownloadFile and ListDirectory in SftpClient (issue #1324)
  63. * Allow a given private key file to be used concurrently
  64. * Performance improvements:
  65. - optimization of payload size for both read and write operations (SftpClient only)
  66. - increase window size from 1MB to 2MB
  67. - increase buffer size from 16KB to 64KB for SftpClient
  68. - take into account the maximum remote packet size of the channel for write operations
  69. - increase maximum size of packets that we can receive from 32 KB to 64 KB
  70. * Improve exception message for authentication failures
  71. Breaking changes:
  72. * Assembly name is now Renci.SshNet for all supported frameworks
  73. * The Renci.SshNet assemblies for .NET and Silverlight are now strong-named (issue #1802)
  74. Fixes:
  75. * Incorrect copyright in assemblies (issue #1764)
  76. * Remove linefeed from WriteLine method in Shellstream class (issue #1584)
  77. * Disable logging of messages in release builds (issue #1767)
  78. * Stuck loop on key exchange using arcfour encryption (issue #1922)
  79. * Timeout sending data to server with low window size (issue #1706)
  80. * No connection possible with the same auth method requested multiple times (issue #1930)
  81. * Unobserved exception rethrown by finalizer thread (issue #1298 and #1587)
  82. * Client cipher is used to decrypt server messages (issue #1917)
  83. * Connection dropped by server due to invalid DSA signature (issue #1918)
  84. * Correct casing of Security/Cryptography/HMAC.cs to fix build on Linux (issue #1505)
  85. * HTTP proxy hangs (issue #1890)
  86. * Wrong parameters to SetSocketOption leads to SocketException under Mono (issue #1799)
  87. * Incorrect check for timeout values (issue #1620)
  88. * Wrong PKCS7 padding in DES algorithm (issue #1580)
  89. * OverflowException on empty server response (issue #1562)
  90. * Event handle leak (issue #1761)
  91. * SftpFileStream is very slow (issue #1919)
  92. * Write access required for private key file</releaseNotes>
  93. <summary>A Secure Shell (SSH) library for .NET, optimized for parallelism.</summary>
  94. <copyright>2012-2014, RENCI</copyright>
  95. <language>en-US</language>
  96. <tags>ssh .net40 sftp .net35 wp71 wp8 silverlight windowsphone</tags>
  97. <dependencies>
  98. <group targetFramework="sl4">
  99. <dependency id="Renci.Security.Cryptography" version="1.0.0" />
  100. </group>
  101. <group targetFramework="sl5">
  102. <dependency id="Renci.Security.Cryptography" version="1.0.0" />
  103. </group>
  104. <group targetFramework="wp7">
  105. <dependency id="Renci.Security.Cryptography" version="1.0.0" />
  106. </group>
  107. <group targetFramework="wp80">
  108. <dependency id="Renci.Security.Cryptography" version="1.0.0" />
  109. </group>
  110. </dependencies>
  111. </metadata>
  112. </package>