Skip to content

Commit 135741b

Browse files
ts: Update engines.node to >= 17 (otter-sec#3301)
1 parent f231afc commit 135741b

46 files changed

Lines changed: 107 additions & 106 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ The minor version will be incremented upon a breaking change and the patch versi
8181
- lang: Fix constant bytes declarations when using `declare_program!` ([#3287](https://github.com/coral-xyz/anchor/pull/3287)).
8282
- lang: Fix using non-instruction composite accounts with `declare_program!` ([#3290](https://github.com/coral-xyz/anchor/pull/3290)).
8383
- idl: Fix instructions with tuple parameters not producing an error([#3294](https://github.com/coral-xyz/anchor/pull/3294)).
84+
- ts: Update `engines.node` to `>= 17` ([#3301](https://github.com/coral-xyz/anchor/pull/3301)).
8485

8586
### Breaking
8687

examples/tutorial/basic-0/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "anchor test --skip-lint && anchor clean"

examples/tutorial/basic-1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "anchor test --skip-lint && anchor clean"

examples/tutorial/basic-2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "anchor test --skip-lint && anchor clean"

examples/tutorial/basic-3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "anchor test --skip-lint && anchor clean"

examples/tutorial/basic-4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "anchor test --skip-lint && anchor clean"

examples/tutorial/basic-5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "anchor test --skip-lint && anchor clean"

tests/anchor-cli-account/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "anchor test"

tests/anchor-cli-idl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://github.com/coral-xyz/anchor.git"
1212
},
1313
"engines": {
14-
"node": ">=11"
14+
"node": ">=17"
1515
},
1616
"scripts": {
1717
"test": "./test.sh"
Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "bpf-upgradeable-state",
3-
"version": "0.24.0",
4-
"license": "(MIT OR Apache-2.0)",
5-
"homepage": "https://github.com/coral-xyz/anchor#readme",
6-
"bugs": {
7-
"url": "https://github.com/coral-xyz/anchor/issues"
8-
},
9-
"repository": {
10-
"type": "git",
11-
"url": "https://github.com/coral-xyz/anchor.git"
12-
},
13-
"engines": {
14-
"node": ">=11"
15-
}
2+
"name": "bpf-upgradeable-state",
3+
"version": "0.24.0",
4+
"license": "(MIT OR Apache-2.0)",
5+
"homepage": "https://github.com/coral-xyz/anchor#readme",
6+
"bugs": {
7+
"url": "https://github.com/coral-xyz/anchor/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/coral-xyz/anchor.git"
12+
},
13+
"engines": {
14+
"node": ">=17"
15+
}
1616
}

0 commit comments

Comments
 (0)