lightning 5.3.1 → 5.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 5.3.2
4
+
5
+ - `pay`, `payViaPaymentRequest`: Fix support for `outgoing_channels` constraint
6
+
3
7
  ## 5.3.1
4
8
 
5
9
  - `getInvoices`: Add `is_unconfirmed` to filter out canceled/settled invoices
@@ -99,6 +99,7 @@ module.exports = (args, cbk) => {
99
99
  messages: args.messages,
100
100
  mtokens: args.mtokens,
101
101
  outgoing_channel: args.outgoing_channel,
102
+ outgoing_channels: args.outgoing_channels,
102
103
  pathfinding_timeout: args.pathfinding_timeout,
103
104
  request: args.request,
104
105
  tokens: args.tokens,
package/package.json CHANGED
@@ -7,22 +7,22 @@
7
7
  "url": "https://github.com/alexbosworth/lightning/issues"
8
8
  },
9
9
  "dependencies": {
10
- "@grpc/grpc-js": "1.5.0",
10
+ "@grpc/grpc-js": "1.5.1",
11
11
  "@grpc/proto-loader": "0.6.9",
12
12
  "@types/express": "4.17.13",
13
13
  "@types/node": "17.0.8",
14
14
  "@types/request": "2.48.8",
15
15
  "@types/ws": "8.2.2",
16
16
  "async": "3.2.3",
17
- "asyncjs-util": "1.2.7",
17
+ "asyncjs-util": "1.2.8",
18
18
  "bitcoinjs-lib": "6.0.1",
19
19
  "bn.js": "5.2.0",
20
20
  "body-parser": "1.19.1",
21
21
  "bolt07": "1.8.0",
22
- "bolt09": "0.2.0",
22
+ "bolt09": "0.2.1",
23
23
  "cbor": "8.1.0",
24
24
  "express": "4.17.2",
25
- "invoices": "2.0.2",
25
+ "invoices": "2.0.3",
26
26
  "psbt": "1.1.10",
27
27
  "type-fest": "2.9.0"
28
28
  },
@@ -32,7 +32,7 @@
32
32
  "@alexbosworth/tap": "15.0.10",
33
33
  "tsd": "0.19.1",
34
34
  "typescript": "4.5.4",
35
- "ws": "8.4.0"
35
+ "ws": "8.4.2"
36
36
  },
37
37
  "engines": {
38
38
  "node": ">=12.20"
@@ -57,5 +57,5 @@
57
57
  "directory": "test/typescript"
58
58
  },
59
59
  "types": "index.d.ts",
60
- "version": "5.3.1"
60
+ "version": "5.3.2"
61
61
  }