lightning 5.21.2 → 6.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Versions
2
2
 
3
+ ## 6.0.0
4
+
5
+ ### Breaking Changes
6
+
7
+ - Node.js version 14 or higher is now required
8
+
3
9
  ## 5.21.2
4
10
 
5
11
  - `getChainFeeEstimate`: Add support for specifying min `utxo_confirmations`
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "https://github.com/alexbosworth/lightning/issues"
8
8
  },
9
9
  "dependencies": {
10
- "@grpc/grpc-js": "1.7.0",
10
+ "@grpc/grpc-js": "1.7.1",
11
11
  "@grpc/proto-loader": "0.7.2",
12
12
  "@types/express": "4.17.14",
13
13
  "@types/node": "18.7.18",
@@ -26,7 +26,7 @@
26
26
  "invoices": "2.2.0",
27
27
  "psbt": "2.7.1",
28
28
  "tiny-secp256k1": "2.2.1",
29
- "type-fest": "2.19.0"
29
+ "type-fest": "3.0.0"
30
30
  },
31
31
  "description": "Lightning Network client library",
32
32
  "devDependencies": {
@@ -37,7 +37,7 @@
37
37
  "ws": "8.8.1"
38
38
  },
39
39
  "engines": {
40
- "node": ">=12.20"
40
+ "node": ">=14"
41
41
  },
42
42
  "keywords": [
43
43
  "grpc",
@@ -59,5 +59,5 @@
59
59
  "directory": "test/typescript"
60
60
  },
61
61
  "types": "index.d.ts",
62
- "version": "5.21.2"
62
+ "version": "6.0.0"
63
63
  }