Skip to content

Commit a655851

Browse files
authored
chore: bump cometbft version to 0.37.15 (#5050)
## Describe your changes The cometbft version bump is to include patches to security issues. See details in [0]. We already updated the project documentation in [1]. [0] https://github.com/cometbft/cometbft/blob/v0.37.15/CHANGELOG.md#v03715 [1] penumbra-zone/guide#52 ## Checklist before requesting a review - [x] If this code contains consensus-breaking changes, I have added the "consensus-breaking" label. Otherwise, I declare my belief that there are not consensus-breaking changes, for the following reason: > no changes to app code, bumping deps for related tooling
1 parent ddca9c7 commit a655851

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

deployments/compose/docker-compose.dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ services:
5757

5858
# The CometBFT node
5959
cometbft-node0:
60-
image: "docker.io/cometbft/cometbft:v0.37.9"
60+
image: "docker.io/cometbft/cometbft:v0.37.15"
6161
ports:
6262
- "26656:26656"
6363
- "26657:26657"

deployments/compose/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ services:
5757

5858
# The CometBFT node
5959
cometbft-node0:
60-
image: "docker.io/cometbft/cometbft:v0.37.9"
60+
image: "docker.io/cometbft/cometbft:v0.37.15"
6161
ports:
6262
- "26656:26656"
6363
- "26657:26657"

deployments/scripts/install-cometbft

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -euo pipefail
55

66

77
# Sane defaults
8-
COMETBFT_VERSION="${COMETBFT_VERSION:-0.37.9}"
8+
COMETBFT_VERSION="${COMETBFT_VERSION:-0.37.15}"
99

1010
# Download and extract
1111
cometbft_download_url="https://github.com/cometbft/cometbft/releases/download/v${COMETBFT_VERSION}/cometbft_${COMETBFT_VERSION}_linux_amd64.tar.gz"

flake.nix

+5-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@
2626
# nix-prefetch-git --url https://github.com/cometbft/cometbft --rev <tag>
2727
# and review the output.
2828
cometBftRelease = {
29-
version = "0.37.9";
30-
sha256 = "sha256-4LUdDlDog4kbiwyGo5fZEvtDXa6sIm+SKlSBWq1angc=";
31-
vendorHash = "sha256-0iqI/Z8rqDyQ7JqSrsqA9kADqF6qZy8NxTDNjAYYHts=";
29+
version = "0.37.15";
30+
# Set `sha256` to the value `hash` in the nix-prefetch-git output.
31+
sha256 = "sha256-sX3hehsMNWWiQYbepMcdVoUAqz+lK4x76/ohjGb/J08=";
32+
# Set `vendorHash` to "", run `nix build`, and review the hash.
33+
vendorHash = "sha256-F6km3YpvfdpPeIJB1FwA5lQvPda11odny0EHPD8B6kw=";
3234
};
3335

3436
# Build grpcui from source, for Reflection v1 support.

0 commit comments

Comments
 (0)