Releases: celestiaorg/celestia-app
v2.2.0-mocha
Upgrade Notice
This release includes a fix for block sync on Mocha. This release is intended for the Mocha testnet.
What's Changed
- ci(goreleaser): fix release candidate suffix (backport #3833) by @mergify in #3838
- chore(go.mod): bump grafana/pyroscope-go deps (backport #3849) by @mergify in #3855
- chore(scripts): mainnet v2 upgrade height (backport #3868) by @mergify in #3872
- fix: mocha block sync on v2.x by @rootulp in #3843
Full Changelog: v2.1.2...v2.2.0-mocha
v2.2.0-arabica
Upgrade Notice
This release includes a fix for block sync on Mocha. This release is intended for the Arabica testnet.
What's Changed
- ci(goreleaser): fix release candidate suffix (backport #3833) by @mergify in #3838
- chore(go.mod): bump grafana/pyroscope-go deps (backport #3849) by @mergify in #3855
- chore(scripts): mainnet v2 upgrade height (backport #3868) by @mergify in #3872
- fix: mocha block sync on v2.x by @rootulp in #3843
Full Changelog: v2.1.2...v2.2.0-arabica
v2.1.2
Upgrade Notice
This release fixes a bug that prevented nodes from using state sync.
What's Changed
- fix: error handling by @ninabarbakadze in #3809
- fix: state sync on v2.x by @rootulp in #3808
- docs: add documentation to enabling BBR by @cmwaters in #3812
- ci: use goreleaser-cross for goreleaser-check command (backport #3806) by @mergify in #3813
Full Changelog: v2.1.1...v2.1.2
v2.1.2-rc1
v2.1.2-rc0
v2.1.1
v2.1.0
Key Features
In this release, we introduce a lightweight transaction indexer as an alternative to the traditional KV indexer. This new indexer addresses the need for a more lightweight way of checking the status of a transaction.
Transaction status tracking:
The new tx_status RPC endpoint allows users to retrieve a transaction's status by its hash. The response includes a status field indicating whether the transaction is:
- Committed:
The transaction has been included in a block. The response also provides:- Block height
- Transaction index within the block
- Execution code
- An error log if the transaction failed during execution
- Pending:
Still in the mempool, awaiting inclusion in a block. - Evicted:
Removed from the mempool, typically due to being outbid in gas fees. - Unknown:
Neither committed nor in the mempool.
Deprecation of broadcast_tx_commit:
- The broadcast_tx_commit endpoint is now deprecated and will be removed in future versions. Users should instead use the new tx_status endpoint alongside broadcast_tx_sync or broadcast_tx_async.
Usage
The indexer can be used by interacting with the tx_status endpoint. Note: consensus nodes support this endpoint regardless of the indexer they have configured in config.toml
What's Changed
- refactor: expose CreateShareToRowRootProofs for downstream use (backport #3739) by @mergify in #3741
- feat: gRPC server for TxStatus endpoint (backport #3754) by @mergify in #3756
- chore: bump sdk to v1.24.1 and core to v1.39.0 (backport #3749) by @mergify in #3758
- fix(scripts): single-node.sh chain ID (backport #3777) by @mergify in #3782
- ci: remove test-interchain (backport #3776) by @mergify in #3799
- refactor: remove unnecessary
config.Seal()
(backport #3786) by @mergify in #3801 - feat: add error log to txstatus (backport #3788) by @mergify in #3789
- ci: fix goreleaser check deprecation warning (backport #3795) by @mergify in #3797
- fix: markdown links (backport #3778) by @mergify in #3798
Full Changelog: v2.0.0...v2.1.0
v1.14.0
Upgrade Notice
This is a strictly non-breaking change that is optional to update to.
What's Changed
- test(v1.x): expand apphash test with all state machine msgs by @ninabarbakadze in #3665
- chore(deps): upgrade to cosmos-sdk v1.24.0-sdk-v0.46.16 (backport #3725) by @mergify in #3730
- refactor: expose CreateShareToRowRootProofs for downstream use (backport #3739) by @mergify in #3740
Full Changelog: v1.13.0...v1.14.0
v2.0.0
Upgrade Notice
Per the major version bump, this release is breaking for consensus node operators and library consumers.
What's Changed
This release prepares the consensus network for the Lemongrass network upgrade by implementing all the CIPs listed in CIP-17:
- CIP-6: Price Enforcement
- CIP-9: Packet Forward Middleware
- CIP-10: Coordinated Upgrades
- CIP-14: Interchain Accounts
- CIP-20: Disable Blobstream module
Node Operators
If you are a consensus node operator, please follow the communication channels listed under network upgrades to learn when this release is recommended for each network (e.g. Mocha, Mainnet Beta).
Consensus node operators are expected to upgrade to this release prior to the Lemongrass hardfork if they intend to continue participating in the network. The command used to start the consensus node or validator node will accept an additional --v2-upgrade-height
flag. See this table for upgrade heights for each network.
Library Consumers
If you are a library consumer, a number of the Go APIs have changed since celestia-app v1.x.x. Some of the notable changes are:
- Code pertaining to the original data square was extracted to celestiaorg/go-square.
- celestia-app v1.x had a shares package. celestia-app v2.x uses go-square/shares
- celestia-app v1.x had a blob.types package with
CreateCommitment
. celestia-app v2.x usesCreateCommitment
from the go-square/inclusion.
- celestia-app v1.x had a lot of functionality included in the signer. celestia-app v2.x split a txClient from the signer.
Full Changelog: v0.9.0...v2.0.0
v1.13.0
Upgrade Notice
This is a strictly non-breaking change that is optional to update to.
What's Changed
- chore: bump celestia core by @ninabarbakadze in #3676
- test(testnode): configure custom min gas price on v1.x by @rootulp in #3674
- chore: skip testnode test in race mode (backport #3696) by @mergify in #3699
- fix(goreleaser): do not mark rcs as latest release (backport #3701) by @mergify in #3702
- refactor(scripts): improve user prompts for single-node.sh (backport #3685) by @mergify in #3707
- chore: add (start share == end share) check in parse namespace (backport #3709) by @mergify in #3710
Full Changelog: v1.12.0...v1.13.0