SSH.NET.nuspec 6.7 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>2016.0.0-beta1</version>
  6. <title>SSH.NET</title>
  7. <authors>Renci</authors>
  8. <owners>olegkap,drieseng</owners>
  9. <licenseUrl>https://github.com/sshnet/SSH.NET/blob/master/LICENSE</licenseUrl>
  10. <projectUrl>https://github.com/sshnet/SSH.NET/</projectUrl>
  11. <requireLicenseAcceptance>false</requireLicenseAcceptance>
  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-beta1
  14. ==============
  15. New Features:
  16. * Added support for HMAC-SHA512 (hmac-sha2-512 and hmac-sha2-512-96)
  17. * Added support for Universal Windows Platform 10 (UAP10.0)
  18. Changes:
  19. * Overall performance improvements
  20. * Relicensed code under MIT license, explicitly permitting reuse within proprietary software
  21. provided all copies of the licensed software include a copy of the MIT License terms and the
  22. copyright notice
  23. * Separated our hash algorithms into SshNet.Security.Cryptography project and package
  24. * When available, prefer hash algorithms and encodings from target framework
  25. * Refactoring to prepare for upcoming .NET Core support
  26. Fixes:
  27. * Partial reads from stream assume end (CodePlex issue #1516)
  28. * Session.Disconnect() hangs forever (CodePlex issue #2591)
  29. * SshData.ReadInt64() is broken (CodePlex issue #2579)
  30. * Race condition when SSH_MSG_GLOBAL_REQUEST is received immediately after successful authentication (GitHub issue #8)
  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-2016, RENCI</copyright>
  95. <language>en-US</language>
  96. <tags>ssh scp sftp</tags>
  97. <dependencies>
  98. <group targetFramework="sl4">
  99. <dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
  100. </group>
  101. <group targetFramework="sl5">
  102. <dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
  103. </group>
  104. <group targetFramework="wp71">
  105. <dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
  106. </group>
  107. <group targetFramework="wp8">
  108. <dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
  109. </group>
  110. <group targetFramework="uap10.0">
  111. <dependency id="SshNet.Security.Cryptography" version="[1.0.0]" />
  112. <dependency id="System.Xml.XPath.XmlDocument" version="4.0.0" />
  113. </group>
  114. </dependencies>
  115. </metadata>
  116. </package>