ssh2-sftp-client 10.0.0 → 10.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.org CHANGED
@@ -11,7 +11,7 @@ be found on the [[https://github.com/mscdex/ssh2][SSH2]] project pages. As this
11
11
  ~ssh2~ module, you will find lots of useful information, tips and examples in the ~ssh2~
12
12
  repository.
13
13
 
14
- Current stable release is *v10.0.0.
14
+ Current stable release is *v10.0.2
15
15
 
16
16
  Code has been tested against Node versions 16.20.2, 18.18.2, 20.10.0 and 21.5.0. However,
17
17
  only versions from v18 are actively supported. It should also be noted that a significant
@@ -20,6 +20,9 @@ significantly slower.
20
20
 
21
21
  Node versions < 16.x are not supported.
22
22
 
23
+ If you find this module useful and you would like to support the on-going maintenance and
24
+ support of users, please consider making a small [[https://square.link/u/gB2kSdkY?src=embed][donation]].
25
+
23
26
  ** Version 10.0.0 Changes
24
27
 
25
28
  - The main change in this version is adding of limits on the number of promises which can
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ssh2-sftp-client",
3
- "version": "10.0.0",
3
+ "version": "10.0.2",
4
4
  "description": "ssh2 sftp client for node",
5
5
  "main": "src/index.js",
6
6
  "repository": {
@@ -22,6 +22,10 @@
22
22
  },
23
23
  "author": "Tim Cross",
24
24
  "email": "theophilusx@gmail.com",
25
+ "funding": {
26
+ "type": "individual",
27
+ "url": "https://square.link/u/4g7sPflL"
28
+ },
25
29
  "contributors": [
26
30
  {
27
31
  "name": "见见 (original author)",
package/src/index.js CHANGED
@@ -20,7 +20,7 @@ const { errorCode } = require('./constants');
20
20
 
21
21
  class SftpClient {
22
22
  constructor(clientName) {
23
- this.version = '10.0.0';
23
+ this.version = '10.0.2';
24
24
  this.client = new Client();
25
25
  this.sftp = undefined;
26
26
  this.clientName = clientName || 'sftp';