Skip to content

Commit

Permalink
[#4864] Bump cardano-node to version 10.1.3 (#4867)
Browse files Browse the repository at this point in the history
- Bump time runtime dependency of node to version 10.1.3
- No need to bump any compile time dep as `cabal freeze` on the node
gave `any.ouroboros-network ==0.17.1.2`

fix #4864
  • Loading branch information
paolino authored Dec 6, 2024
2 parents ee160b6 + b548ae0 commit f0377bf
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Or modify the `docker-compose.yml` to host your client in the `mainnet_default`

### Running on preprod

Preprod network is broken for node 10.1.2 at some block in the past.
Preprod network is broken for node 10.1.3 at some block in the past.
One way to overcome that limitation is to download a snapshot that used an old version node (1.35.2)
to trespass that point.
Use `snpashot.sh` to download the snapshot.
Expand Down
2 changes: 2 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ constraints:
-- Cardano Node dependencies:
, io-classes >= 1.4
, io-classes -asserts

, cardano-ledger-api ==1.9.4.0

, ouroboros-network == 0.17.1.2

Expand Down
20 changes: 10 additions & 10 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=10.1.2";
cardano-node-runtime.url = "github:IntersectMBO/cardano-node?ref=10.1.3";
};

outputs = { self, nixpkgs, nixpkgs-unstable, hostNixpkgs, flake-utils,
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ integration-tests match:
node:
nix shell \
--accept-flake-config \
'github:IntersectMBO/cardano-node?ref=10.1.2#cardano-node' \
'github:IntersectMBO/cardano-node?ref=10.1.2#cardano-cli'
'github:IntersectMBO/cardano-node?ref=10.1.3#cardano-node' \
'github:IntersectMBO/cardano-node?ref=10.1.3#cardano-cli'

# run babbage integration tests matching the given pattern via nix
babbage-integration-tests-match match:
Expand Down
2 changes: 1 addition & 1 deletion run/common/docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RELEASE_WALLET_TAG=2024.11.18
WALLET_TAG=${WALLET_TAG:=$RELEASE_WALLET_TAG}
export WALLET_TAG

NODE_TAG=10.1.2
NODE_TAG=10.1.3
export NODE_TAG

# Generate a random port for the wallet service and export it
Expand Down
2 changes: 1 addition & 1 deletion scripts/buildkite/main/docker-smoke-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rsync -a --delete "$NODE_STATE_DIR/db/" "$TESTS_NODE_DB"
WALLET_TAG=$(buildkite-agent meta-data get "release-cabal-version")
export WALLET_TAG

NODE_TAG="10.1.2"
NODE_TAG="10.1.3"
export NODE_TAG

NODE_DB="$TESTS_NODE_DB"
Expand Down
2 changes: 1 addition & 1 deletion scripts/buildkite/release/docker-smoke-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rsync -a --delete "$NODE_STATE_DIR/db/" "$TESTS_NODE_DB"
WALLET_TAG=$(buildkite-agent meta-data get "release-cabal-version")
export WALLET_TAG

NODE_TAG="10.1.2"
NODE_TAG="10.1.3"
export NODE_TAG

NODE_DB="$TESTS_NODE_DB"
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="10.1.2"
CARDANO_NODE_TAG="10.1.3"
echo "CARDANO_NODE_TAG=$CARDANO_NODE_TAG"

git checkout "$BASE_COMMIT"
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,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=10.1.2 \
>NODE=10.1.3 \
>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=10.1.2 \
NODE=10.1.3 \
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 f0377bf

Please sign in to comment.