Upgrade `node` to 20.16.0 LTS (#3179)
This commit is contained in:
parent
be8011059b
commit
eff7e4578c
|
@ -13,6 +13,6 @@ jobs:
|
|||
cache: false
|
||||
solana_cli_version: 1.18.17
|
||||
solang_version: 0.3.2
|
||||
node_version: 18.18.0
|
||||
node_version: 20.16.0
|
||||
cargo_profile: release
|
||||
anchor_binary_name: anchor-binary-no-caching
|
||||
|
|
|
@ -16,6 +16,6 @@ jobs:
|
|||
cache: true
|
||||
solana_cli_version: 1.18.17
|
||||
solang_version: 0.3.2
|
||||
node_version: 18.18.0
|
||||
node_version: 20.16.0
|
||||
cargo_profile: debug
|
||||
anchor_binary_name: anchor-binary
|
||||
|
|
|
@ -69,6 +69,7 @@ The minor version will be incremented upon a breaking change and the patch versi
|
|||
- spl: Rename metadata interface instruction fields from `token_program_id` to `program_id` ([#3076](https://github.com/coral-xyz/anchor/pull/3076)).
|
||||
- lang, ts: Remove "8 byte" requirement from discriminator error messages ([#3161](https://github.com/coral-xyz/anchor/pull/3161)).
|
||||
- lang: Remove `discriminator` method from `Discriminator` trait ([#3163](https://github.com/coral-xyz/anchor/pull/3163)).
|
||||
- docker: Upgrade `node` to 20.16.0 LTS ([#3179](https://github.com/coral-xyz/anchor/pull/3179)).
|
||||
|
||||
## [0.30.1] - 2024-06-20
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|||
|
||||
ARG SOLANA_CLI
|
||||
ARG ANCHOR_CLI
|
||||
ARG NODE_VERSION="v18.18.0"
|
||||
ARG NODE_VERSION="v20.16.0"
|
||||
|
||||
ENV HOME="/root"
|
||||
ENV PATH="${HOME}/.cargo/bin:${PATH}"
|
||||
|
|
Loading…
Reference in New Issue