SSH.NET.nuspec 6.7 KB

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