Skip to content

Commit

Permalink
[ADP-3352] Bump to node 8.9.2 (#4554)
Browse files Browse the repository at this point in the history
- [x] Use node 8.9.2 as a compile-time dependency constraints
- [x] Use node 8.9.2 as a run-time tag in our test suite
- [x] Refer to node 8.9.2 in the docs

ADP-3352
  • Loading branch information
paolino authored Apr 19, 2024
2 parents a64347c + 7a1cce3 commit 9308896
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/sanchonet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/docker_compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 9308896

Please sign in to comment.