ln-service 53.12.0 → 53.13.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 53.13.0
4
+
5
+ - `getWalletVersion`: Add support for LND 0.14.3-beta
6
+
3
7
  ## 53.12.0
4
8
 
5
9
  - `updateAlias`: Add method to update the node graph announcement alias
package/README.md CHANGED
@@ -9,7 +9,7 @@ through npm.
9
9
 
10
10
  Supported LND versions:
11
11
 
12
- - v0.14.0-beta to v0.14.2-beta
12
+ - v0.14.0-beta to v0.14.3-beta
13
13
  - v0.13.0-beta to v0.13.4-beta
14
14
  - v0.12.0-beta to v0.12.1-beta
15
15
  - v0.11.0-beta to v0.11.1-beta
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "cors": "2.8.5",
12
12
  "express": "4.17.3",
13
13
  "invoices": "2.0.6",
14
- "lightning": "5.11.0",
14
+ "lightning": "5.12.0",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
17
  "ws": "8.5.0"
@@ -57,6 +57,7 @@
57
57
  },
58
58
  "scripts": {
59
59
  "integration-test-daily-lnd-build": "DOCKER_LND_VERSION=daily-testing-only npm run test",
60
+ "integration-test-0.14.3": "DOCKER_LND_VERSION=v0.14.3-beta npm run test",
60
61
  "integration-test-0.14.2": "DOCKER_LND_VERSION=v0.14.2-beta npm run test",
61
62
  "integration-test-0.14.1": "DOCKER_LND_VERSION=v0.14.1-beta npm run test",
62
63
  "integration-test-0.14.0": "DOCKER_LND_VERSION=v0.14.0-beta npm run test",
@@ -69,5 +70,5 @@
69
70
  "integration-test-0.12.0": "DOCKER_LND_VERSION=v0.12.0-beta npm run test",
70
71
  "test": "echo $DOCKER_LND_VERSION && tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 200 test/autopilotrpc-integration/*.js test/chainrpc-integration/*.js test/integration/*.js test/invoicesrpc-integration/*.js test/peersrpc-integration/*.js test/routerrpc-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.js"
71
72
  },
72
- "version": "53.12.0"
73
+ "version": "53.13.0"
73
74
  }