Skip to content

Commit

Permalink
ci: bump cometbft v0.37.2 -> v0.37.5
Browse files Browse the repository at this point in the history
Increments the minor version of CometBFT used in deployments.
This commit changes the CometBFT version everywhere, except in the guide
docs. After we confirm on preview that the version bump works fine,
then we can update the docs, and mention in subsequent release notes.

Refs #4021.
  • Loading branch information
conorsch committed Mar 14, 2024
1 parent b0a8a66 commit fbb960d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions crates/core/app/src/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ impl App {
// the target, presuming that some transactions might be yanked.
// For more details, see the specification:
// - Adapting existing applications to use ABCI+:
// https://github.com/cometbft/cometbft/blob/v0.37.2/spec/abci/abci%2B%2B_comet_expected_behavior.md#adapting-existing-applications-that-use-abci
// https://github.com/cometbft/cometbft/blob/v0.37.5/spec/abci/abci%2B%2B_comet_expected_behavior.md#adapting-existing-applications-that-use-abci
// - Application requirements:
// https://github.com/cometbft/cometbft/blob/v0.37.2/spec/abci/abci%2B%2B_app_requirements
// https://github.com/cometbft/cometbft/blob/v0.37.5/spec/abci/abci%2B%2B_app_requirements
for tx in proposal.txs {
let tx_len_bytes = tx.len() as u64;
proposal_size_bytes = proposal_size_bytes.saturating_add(tx_len_bytes);
Expand Down
2 changes: 1 addition & 1 deletion deployments/charts/penumbra-network/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ cometbft:
repository: cometbft/cometbft
pullPolicy: IfNotPresent
# https://github.com/cometbft/cometbft#supported-versions
tag: "v0.37.2"
tag: "v0.37.5"
containerArgs:
- start
- --proxy_app=tcp://127.0.0.1:26658
Expand Down
2 changes: 1 addition & 1 deletion deployments/charts/penumbra-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cometbft:
repository: cometbft/cometbft
pullPolicy: IfNotPresent
# https://github.com/cometbft/cometbft#supported-versions
tag: "v0.37.2"
tag: "v0.37.5"
# Override sections of the CometBFT config. Applies to all nodes.
config:
p2p:
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 @@ -55,7 +55,7 @@ services:

# The CometBFT node
cometbft-node0:
image: "docker.io/cometbft/cometbft:v0.37.2"
image: "docker.io/cometbft/cometbft:v0.37.5"
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.2}"
COMETBFT_VERSION="${COMETBFT_VERSION:-0.37.5}"

# 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

0 comments on commit fbb960d

Please sign in to comment.