2
0

SSH.NET.nuspec 6.9 KB

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