Skip to content

Commit 19a0009

Browse files
authored
Merge pull request #1430 from input-output-hk/jpraynaud/1410-upgrade-cardano-node-8-7-3
Upgrade Cardano node to `8.7.3`
2 parents 6327548 + e7d1f9f commit 19a0009

File tree

20 files changed

+30
-22
lines changed

20 files changed

+30
-22
lines changed

.github/workflows/test-docker-distribution.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
description: The url of the archive of the Cardano binaries
1919
required: true
2020
type: string
21-
default: https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz
21+
default: https://github.com/input-output-hk/cardano-node/releases/download/8.7.3/cardano-node-8.7.3-linux.tar.gz
2222
dry_run:
2323
description: Dry run will not push the Docker images to the registry
2424
required: true

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/website/root/manual/getting-started/bootstrap-cardano-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ You will see more information about the snapshot:
281281
+-----------------------+-------------------------------------------------------------------------------------------------------------------------------+
282282
| Location 1 | https://storage.googleapis.com/mithril-release-preprod-…aa11b0e2ccf737d4f5def8b0a9f2245eded2b4ec4be876f7bd64deddcbbf.tar.gz |
283283
+-----------------------+-------------------------------------------------------------------------------------------------------------------------------+
284-
| Cardano node version | 8.1.2 |
284+
| Cardano node version | 8.7.3 |
285285
+-----------------------+-------------------------------------------------------------------------------------------------------------------------------+
286286
| Created | 2023-05-31T14:02:40.150189810Z |
287287
+-----------------------+-------------------------------------------------------------------------------------------------------------------------------+

docs/website/root/manual/getting-started/run-signer-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Note that this guide works on a Linux machine only.
7777
* Read rights on the `Database` folder (specified by the `--database-path` setting of the **Cardano node**)
7878
* Read and write rights on the `Inter Process Communication` file (typically defined by the `CARDANO_NODE_SOCKET_PATH` environment variable used to launch the **Cardano node**)
7979

80-
* Install a recent version of [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/8.1.2) (version 8.1.2+).
80+
* Install a recent version of [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/8.7.3) (version 8.7.3+).
8181

8282
* Install a correctly configured Rust toolchain (latest stable version). You can follow the instructions provided [here](https://www.rust-lang.org/learn/get-started).
8383

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.4.24"
3+
version = "0.4.25"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-aggregator/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ RUN /app/target/release/mithril-aggregator --version
3232
FROM debian:11-slim
3333

3434
# Args
35-
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz
35+
ARG CARDANO_NODE_VERSION=8.7.3
36+
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
3637

3738
# Upgrade
3839
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/*

mithril-aggregator/Dockerfile.ci

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ RUN mkdir -p /app/bin
1414
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget && apt-get clean && rm -rf /var/lib/apt/lists/*
1515

1616
# Install cardano-cli
17-
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz
17+
ARG CARDANO_NODE_VERSION=8.7.3
18+
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
1819
RUN wget -nv -O cardano-bin.tar.gz $CARDANO_BIN_URL \
1920
&& tar xzf cardano-bin.tar.gz ./cardano-cli && mv cardano-cli /app/bin \
2021
&& /app/bin/cardano-cli --version \

mithril-aggregator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ docker-build:
3333
cd ../ && docker build -t mithril/mithril-aggregator -f mithril-aggregator/Dockerfile .
3434

3535
docker-build-ci: build
36-
cd ../ && docker build -t mithril/mithril-aggregator -f mithril-aggregator/Dockerfile.ci --build-arg DOCKER_IMAGE_FROM .
36+
cd ../ && docker build -t mithril/mithril-aggregator -f mithril-aggregator/Dockerfile.ci --build-arg DOCKER_IMAGE_FROM --build-arg CARDANO_NODE_VERSION .
3737

3838
docker-run:
3939
docker run --rm -p 8080:8080 --name='mithril-aggregator' mithril/mithril-aggregator serve

mithril-infra/assets/infra.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.3
1+
0.2.4

mithril-infra/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ locals {
141141
variable "cardano_image_id" {
142142
type = string
143143
description = "The Cardano image tag of service to deploy"
144-
default = "8.1.2"
144+
default = "8.7.3"
145145
}
146146

147147
variable "cardano_configurations_repository_commit" {

0 commit comments

Comments
 (0)