diff --git a/.github/workflows/docker_linux.yml b/.github/workflows/docker_linux.yml index b1235164692..4b199c55184 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.1' + default: '8.9.2' 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.1'}} + NODE_TAG: ${{ github.event.inputs.nodeTag || '8.9.2'}} 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 e7ce239ca3d..062730ddca5 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.1' + default: '8.9.2' 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.1' }} + NODE: ${{ github.event.inputs.nodeTag || '8.9.2' }} 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 c579db94e51..002bf8ca0f6 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.1 +export NODE_TAG=8.9.2 export WALLET_TAG=2024.3.27 # set a port for the wallet server diff --git a/cabal.project b/cabal.project index 76902c0b797..3de57829489 100644 --- a/cabal.project +++ b/cabal.project @@ -201,7 +201,7 @@ constraints: , bech32 == 1.1.3 -- Cardano Node dependencies: - , cardano-node == 8.9.1 + , cardano-node == 8.9.2 , cardano-api ^>=8.39.2.0 , cardano-crypto-class >=2.1.4.0 , cardano-crypto-class +secp256k1-support diff --git a/flake.lock b/flake.lock index 89e7ae936a5..6b28e6b4a04 100644 --- a/flake.lock +++ b/flake.lock @@ -20,11 +20,11 @@ "CHaP_2": { "flake": false, "locked": { - "lastModified": 1710945682, - "narHash": "sha256-xp1txUjrtCuKHAy0nvz/lu0MlNdNnzvP8l2p9MFB73Y=", + "lastModified": 1712590917, + "narHash": "sha256-DgXSWHF5b/UtM+ACBWLPNtMNTSGQrmtl/ME7e7dheLo=", "owner": "intersectmbo", "repo": "cardano-haskell-packages", - "rev": "8df2bf06e4525ec39c106cd2593e3c5fd7f2b081", + "rev": "251738d00d5799850c6eb610c4ab7b175b66224a", "type": "github" }, "original": { @@ -305,16 +305,16 @@ "utils": "utils_2" }, "locked": { - "lastModified": 1710951389, - "narHash": "sha256-PxMlVzTLMuVeu04QcGOxjaSMnpWJG78J0Rul3423too=", + "lastModified": 1712656951, + "narHash": "sha256-YwV2uvau+/ORON4mbHVLsyEPzpSmiNEhiSzsjLp62fs=", "owner": "IntersectMBO", "repo": "cardano-node", - "rev": "da945ea983d4722a9ffe54250edba9a193a57cf0", + "rev": "424983fa186786397f5a99539f51710abf62c37b", "type": "github" }, "original": { "owner": "IntersectMBO", - "ref": "8.9.1", + "ref": "8.9.2", "repo": "cardano-node", "type": "github" } diff --git a/flake.nix b/flake.nix index 4b68131e363..b8303b2ab9d 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.1"; + cardano-node-runtime.url = "github:IntersectMBO/cardano-node?ref=8.9.2"; 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 e4f2db28358..025e8c60b49 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.1" +CARDANO_NODE_TAG="8.9.2" echo "CARDANO_NODE_TAG=$CARDANO_NODE_TAG" git checkout "$BASE_COMMIT" diff --git a/scripts/sanchonet.sh b/scripts/sanchonet.sh index 66e996cfe56..c0c1ae43dcf 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.1 +export NODE_TAG=8.9.2 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 7899f0e4d71..714132ef648 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.1 \ +>NODE=8.9.2 \ >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 c8653d0a3db..48d83e859af 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.1 \ +NODE=8.9.2 \ NODE_CONFIG_PATH=`pwd`/state/configs/$NETWORK \ DATA=`pwd`/state/node_db/$NETWORK \ WALLET_DATA=`pwd`/state/wallet_db/$NETWORK \