From 36a5a58d1c8013f2491b9d295dd7b5d3a09539c9 Mon Sep 17 00:00:00 2001 From: paolino Date: Tue, 26 Mar 2024 09:25:00 +0000 Subject: [PATCH 1/2] Bump compile time dependency of node to 8.9.1 --- cabal.project | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cabal.project b/cabal.project index c324e3d5479..76902c0b797 100644 --- a/cabal.project +++ b/cabal.project @@ -201,7 +201,7 @@ constraints: , bech32 == 1.1.3 -- Cardano Node dependencies: - , cardano-node == 8.9.0 + , cardano-node == 8.9.1 , cardano-api ^>=8.39.2.0 , cardano-crypto-class >=2.1.4.0 , cardano-crypto-class +secp256k1-support From 52cb559024c47e8a25abeed1873b8d798144e93f Mon Sep 17 00:00:00 2001 From: paolino Date: Tue, 26 Mar 2024 09:26:26 +0000 Subject: [PATCH 2/2] Bump runtime dependency of node to 8.9.1 --- .github/workflows/docker_linux.yml | 4 ++-- .github/workflows/e2e-docker.yml | 4 ++-- README.md | 2 +- flake.lock | 2 +- flake.nix | 2 +- scripts/release-candidate.sh | 2 +- scripts/sanchonet.sh | 2 +- test/e2e/README.md | 2 +- test/e2e/docker_compose.sh | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docker_linux.yml b/.github/workflows/docker_linux.yml index 9a4a9aa9094..b1235164692 100644 --- a/.github/workflows/docker_linux.yml +++ b/.github/workflows/docker_linux.yml @@ -7,7 +7,7 @@ on: nodeTag: description: 'Node docker image tag' required: true - default: '8.9.0' + default: '8.9.1' walletTag: description: 'Wallet docker image tag' required: true @@ -41,7 +41,7 @@ jobs: docker-compose logs > logs/docker-compose.log docker-compose down env: - NODE_TAG: ${{ github.event.inputs.nodeTag || '8.9.0'}} + NODE_TAG: ${{ github.event.inputs.nodeTag || '8.9.1'}} WALLET_TAG: ${{ github.event.inputs.walletTag || 'rc-latest'}} NETWORK: preprod WALLET_DB: /tmp/wallet-db diff --git a/.github/workflows/e2e-docker.yml b/.github/workflows/e2e-docker.yml index 8b724ce1bd2..adc26442d90 100644 --- a/.github/workflows/e2e-docker.yml +++ b/.github/workflows/e2e-docker.yml @@ -8,7 +8,7 @@ on: nodeTag: description: 'Node docker-image tag to use' required: true - default: '8.9.0' + default: '8.9.1' walletTag: description: 'Wallet docker-image tag to use' required: true @@ -33,7 +33,7 @@ jobs: TESTS_E2E_FIXTURES: ${{ secrets.TESTS_E2E_FIXTURES }} BUILDKITE_API_TOKEN: ${{ secrets.BUILDKITE_TOKEN_READ_BUILDS_ARTIFACTS }} WALLET: ${{ github.event.inputs.walletTag || 'rc-latest' }} - NODE: ${{ github.event.inputs.nodeTag || '8.9.0' }} + NODE: ${{ github.event.inputs.nodeTag || '8.9.1' }} TESTS_E2E_TOKEN_METADATA: https://metadata.world.dev.cardano.org/ TAGS: ${{ github.event.inputs.tags || 'all' }} E2E_DOCKER_RUN: 1 diff --git a/README.md b/README.md index f10adfcc8aa..f4560be3cf9 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ export NODE_DB=`pwd`/node-db export WALLET_DB=`pwd`/wallet-db # set the node tag and wallet tag to compatible versions -export NODE_TAG=8.9.0 +export NODE_TAG=8.9.1 export WALLET_TAG=2024.3.1 # set a port for the wallet server diff --git a/flake.lock b/flake.lock index 7979f882c9d..72223802a60 100644 --- a/flake.lock +++ b/flake.lock @@ -314,7 +314,7 @@ }, "original": { "owner": "IntersectMBO", - "ref": "8.9.0", + "ref": "8.9.1", "repo": "cardano-node", "type": "github" } diff --git a/flake.nix b/flake.nix index e279fb7baaf..4b68131e363 100644 --- a/flake.nix +++ b/flake.nix @@ -142,7 +142,7 @@ flake = false; }; customConfig.url = "github:input-output-hk/empty-flake"; - cardano-node-runtime.url = "github:IntersectMBO/cardano-node?ref=8.9.0"; + cardano-node-runtime.url = "github:IntersectMBO/cardano-node?ref=8.9.1"; hls = { url = "github:cardano-scaling/haskell-language-server?ref=2.6-patched"; flake = false; diff --git a/scripts/release-candidate.sh b/scripts/release-candidate.sh index 464eea3ff34..e4f2db28358 100755 --- a/scripts/release-candidate.sh +++ b/scripts/release-candidate.sh @@ -34,7 +34,7 @@ echo "OLD_GIT_TAG=$OLD_GIT_TAG" OLD_CABAL_VERSION=$(tag_cabal_ver "$OLD_GIT_TAG") echo "OLD_CABAL_VERSION=$OLD_CABAL_VERSION" -CARDANO_NODE_TAG="8.9.0" +CARDANO_NODE_TAG="8.9.1" echo "CARDANO_NODE_TAG=$CARDANO_NODE_TAG" git checkout "$BASE_COMMIT" diff --git a/scripts/sanchonet.sh b/scripts/sanchonet.sh index 76165f19616..66e996cfe56 100755 --- a/scripts/sanchonet.sh +++ b/scripts/sanchonet.sh @@ -3,7 +3,7 @@ set -euo pipefail export WALLET_TAG=rc-latest -export NODE_TAG=8.9.0 +export NODE_TAG=8.9.1 export WALLET_PORT=8090 export NETWORK=sanchonet export WALLET_DB=/tmp/cardano-wallet-sanchonet.db diff --git a/test/e2e/README.md b/test/e2e/README.md index 105d96e51cc..7899f0e4d71 100644 --- a/test/e2e/README.md +++ b/test/e2e/README.md @@ -73,7 +73,7 @@ One can also start tests against cardano-wallet docker. There is docker-compose- >NETWORK=preprod \ >TESTS_E2E_TOKEN_METADATA=https://metadata.world.dev.cardano.org/ \ >WALLET=dev-master \ ->NODE=8.9.0 \ +>NODE=8.9.1 \ >NODE_CONFIG_PATH=`pwd`/state/configs/$NETWORK \ >DATA=`pwd`/state/node_db/$NETWORK >docker-compose -f docker-compose-test.yml up diff --git a/test/e2e/docker_compose.sh b/test/e2e/docker_compose.sh index dae38e43801..c8653d0a3db 100755 --- a/test/e2e/docker_compose.sh +++ b/test/e2e/docker_compose.sh @@ -3,7 +3,7 @@ NETWORK=preprod \ TESTS_E2E_TOKEN_METADATA=https://metadata.world.dev.cardano.org/ \ WALLET=dev-master \ -NODE=8.9.0 \ +NODE=8.9.1 \ NODE_CONFIG_PATH=`pwd`/state/configs/$NETWORK \ DATA=`pwd`/state/node_db/$NETWORK \ WALLET_DATA=`pwd`/state/wallet_db/$NETWORK \