From 6c17ad89d41eb46be31bc4567b46d2c621e57388 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Mon, 26 May 2025 16:42:55 +0200 Subject: [PATCH 1/3] EVM node: Release version 0.27 --- etherlink/CHANGES_NODE.md | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/etherlink/CHANGES_NODE.md b/etherlink/CHANGES_NODE.md index 0c8be814daa9..5f9a5efdff97 100644 --- a/etherlink/CHANGES_NODE.md +++ b/etherlink/CHANGES_NODE.md @@ -1,31 +1,18 @@ # Changelog -## Unreleased +## Version 0.27 (2025-05-26) -### Breaking changes +This is a hot fix release to address an issue in the encoding of transaction +type in JSON RPC responses. -### Configuration changes +This release will not apply any migration to the node’s store (version 20), +meaning it is possible to downgrade to the previous version. ### RPCs changes - Fix transaction type encoding to use a compact hex encoding following the [standard](https://ethereum.org/en/developers/docs/transactions/#typed-transaction-envelope). (!18132) -### Metrics changes - -### Execution changes - -### Storage changes - -### Documentation changes - -### Experimental features changes - -*No guarantees are provided regarding backward compatibility of experimental -features. They can be modified or removed without any deprecation notices. If -you start using them, you probably want to use `octez-evm-node check config ---config-file PATH` to assert your configuration file is still valid.* - ## Version 0.26 (2025-05-20) This release of the EVM node adds support for executing natively the Dionysus -- GitLab From 9dc32a084af95df6887aabf6b51ef6e11192f637 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Mon, 26 May 2025 16:43:55 +0200 Subject: [PATCH 2/3] EVM Node: Bump the latest version of the EVM node --- .../pipelines/schedule_container_scanning_evm_node_releases.yml | 2 +- ci/bin/main.ml | 2 +- etherlink/scripts/docker-compose/mainnet-docker-compose/.env | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab/ci/pipelines/schedule_container_scanning_evm_node_releases.yml b/.gitlab/ci/pipelines/schedule_container_scanning_evm_node_releases.yml index 7e357ecd384d..b6ca821ceef2 100644 --- a/.gitlab/ci/pipelines/schedule_container_scanning_evm_node_releases.yml +++ b/.gitlab/ci/pipelines/schedule_container_scanning_evm_node_releases.yml @@ -35,6 +35,6 @@ container_scanning: - gtcs scan variables: GIT_STRATEGY: fetch - CS_IMAGE: tezos/tezos:octez-evm-node-v0.26 + CS_IMAGE: tezos/tezos:octez-evm-node-v0.27 SECURE_LOG_LEVEL: debug CS_DOCKERFILE_PATH: build.Dockerfile diff --git a/ci/bin/main.ml b/ci/bin/main.ml index 9bfa13a976bf..c11c2b50eb20 100644 --- a/ci/bin/main.ml +++ b/ci/bin/main.ml @@ -358,7 +358,7 @@ let () = register "schedule_container_scanning_evm_node_releases" schedule_container_scanning_evm_node_releases - ~jobs:(Container_scanning.jobs "tezos/tezos:octez-evm-node-v0.26") + ~jobs:(Container_scanning.jobs "tezos/tezos:octez-evm-node-v0.27") ~description: "Scheduled pipeline for scanning vulnerabilities in latest \ tezos/tezos:octez-evm-node-vX.Y Docker image" ; diff --git a/etherlink/scripts/docker-compose/mainnet-docker-compose/.env b/etherlink/scripts/docker-compose/mainnet-docker-compose/.env index 91484234998a..2e1bc4bfd33a 100644 --- a/etherlink/scripts/docker-compose/mainnet-docker-compose/.env +++ b/etherlink/scripts/docker-compose/mainnet-docker-compose/.env @@ -49,7 +49,7 @@ ARCHIVE_OCTEZ_NODE_ENDPOINT=${ARCHIVE_OCTEZ_NODE_ENDPOINT:-"https://rpc.tzkt.io/ # EVM node is not published yet in release and so it must uses a more # recent commit (on master branch). -EVM_OCTEZ_TAG=octez-evm-node-v0.26 +EVM_OCTEZ_TAG=octez-evm-node-v0.27 # exposed port of the evm-node container EVM_OCTEZ_PORT=8545 # Add argument you would like to uses when running the EVM node. -- GitLab From 25c6486c3e9f6450e41ca656d412b8f51d538fa4 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Mon, 26 May 2025 16:44:37 +0200 Subject: [PATCH 3/3] EVM Node: Start a new section in the changelog --- etherlink/CHANGES_NODE.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/etherlink/CHANGES_NODE.md b/etherlink/CHANGES_NODE.md index 5f9a5efdff97..f5003d62be55 100644 --- a/etherlink/CHANGES_NODE.md +++ b/etherlink/CHANGES_NODE.md @@ -1,5 +1,28 @@ # Changelog +## Unreleased + +### Breaking changes + +### Configuration changes + +### RPCs changes + +### Metrics changes + +### Execution changes + +### Storage changes + +### Documentation changes + +### Experimental features changes + +*No guarantees are provided regarding backward compatibility of experimental +features. They can be modified or removed without any deprecation notices. If +you start using them, you probably want to use `octez-evm-node check config +--config-file PATH` to assert your configuration file is still valid.* + ## Version 0.27 (2025-05-26) This is a hot fix release to address an issue in the encoding of transaction -- GitLab