Skip to content

Commit b13e57b

Browse files
feat(root): make node v20 the minimum version
TICKET: WP-7332
1 parent 92e33c0 commit b13e57b

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ We specifically limit our support to these versions of Node, not because this pa
6060

6161
As each Node LTS version reaches its end-of-life we will exclude that version from the node engines property of our package's package.json file. Removing a Node version is considered a breaking change and will entail the publishing of a new major version of this package. We will not accept any requests to support an end-of-life version of Node, and any pull requests or issues regarding support for an end-of-life version of Node will be closed. We will accept code that allows this package to run on newer, non-LTS, versions of Node. Furthermore, we will attempt to ensure our own changes work on the latest version of Node. To help in that commitment, our continuous integration setup runs the full test suite on the latest release of the following versions of node:
6262

63-
- `18`
6463
- `20`
64+
- `22`
6565

6666
JavaScript package managers should allow you to install this package with any version of Node, with, at most, a warning if your version of Node does not fall within the range specified by our node engines property. If you encounter issues installing this package on a supported version of Node, please report the issue to us.
6767

modules/abstract-substrate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
1717
"license": "MIT",
1818
"engines": {
19-
"node": ">=14 <23"
19+
"node": ">=20 <23"
2020
},
2121
"repository": {
2222
"type": "git",

modules/babylonlabs-io-btc-staking-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"btc-staking"
3030
],
3131
"engines": {
32-
"node": ">=18 < 23"
32+
"node": ">=20 <23"
3333
},
3434
"author": "Babylon Labs Ltd.",
3535
"license": "SEE LICENSE IN LICENSE",

modules/sdk-coin-apt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
1919
"license": "MIT",
2020
"engines": {
21-
"node": ">=16 <23"
21+
"node": ">=20 <23"
2222
},
2323
"repository": {
2424
"type": "git",

modules/sdk-coin-polyx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
1919
"license": "MIT",
2020
"engines": {
21-
"node": ">=16 <23"
21+
"node": ">=20 <23"
2222
},
2323
"repository": {
2424
"type": "git",

modules/sdk-coin-tao/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
1919
"license": "MIT",
2020
"engines": {
21-
"node": ">=14 <23"
21+
"node": ">=20 <23"
2222
},
2323
"repository": {
2424
"type": "git",

modules/sdk-coin-zketh/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
1919
"license": "MIT",
2020
"engines": {
21-
"node": ">=16 <23"
21+
"node": ">=20 <23"
2222
},
2323
"repository": {
2424
"type": "git",

modules/secp256k1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Low-level cryptographic methods used in BitGo packages for the secp256k1 curve",
55
"main": "./dist/src/index.js",
66
"engines": {
7-
"node": ">=10.22.0 <23",
7+
"node": ">=20 <23",
88
"npm": ">=3.10.10"
99
},
1010
"keywords": [

modules/utxo-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Client-side Bitcoin JavaScript library",
55
"main": "./dist/src/index.js",
66
"engines": {
7-
"node": ">=10.22.0 <23",
7+
"node": ">=20 <23",
88
"npm": ">=3.10.10"
99
},
1010
"keywords": [

0 commit comments

Comments
 (0)