Skip to content

Commit

Permalink
chore: bump cometbft version to 0.37.15 (#5050)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
conorsch authored Feb 4, 2025
1 parent ddca9c7 commit a655851
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deployments/compose/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ services:

# The CometBFT node
cometbft-node0:
image: "docker.io/cometbft/cometbft:v0.37.9"
image: "docker.io/cometbft/cometbft:v0.37.15"
ports:
- "26656:26656"
- "26657:26657"
Expand Down
2 changes: 1 addition & 1 deletion deployments/compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ services:

# The CometBFT node
cometbft-node0:
image: "docker.io/cometbft/cometbft:v0.37.9"
image: "docker.io/cometbft/cometbft:v0.37.15"
ports:
- "26656:26656"
- "26657:26657"
Expand Down
2 changes: 1 addition & 1 deletion deployments/scripts/install-cometbft
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euo pipefail


# Sane defaults
COMETBFT_VERSION="${COMETBFT_VERSION:-0.37.9}"
COMETBFT_VERSION="${COMETBFT_VERSION:-0.37.15}"

# Download and extract
cometbft_download_url="https://github.com/cometbft/cometbft/releases/download/v${COMETBFT_VERSION}/cometbft_${COMETBFT_VERSION}_linux_amd64.tar.gz"
Expand Down
8 changes: 5 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@
# nix-prefetch-git --url https://github.com/cometbft/cometbft --rev <tag>
# and review the output.
cometBftRelease = {
version = "0.37.9";
sha256 = "sha256-4LUdDlDog4kbiwyGo5fZEvtDXa6sIm+SKlSBWq1angc=";
vendorHash = "sha256-0iqI/Z8rqDyQ7JqSrsqA9kADqF6qZy8NxTDNjAYYHts=";
version = "0.37.15";
# Set `sha256` to the value `hash` in the nix-prefetch-git output.
sha256 = "sha256-sX3hehsMNWWiQYbepMcdVoUAqz+lK4x76/ohjGb/J08=";
# Set `vendorHash` to "", run `nix build`, and review the hash.
vendorHash = "sha256-F6km3YpvfdpPeIJB1FwA5lQvPda11odny0EHPD8B6kw=";
};

# Build grpcui from source, for Reflection v1 support.
Expand Down

0 comments on commit a655851

Please sign in to comment.