Skip to content

Commit

Permalink
chore: updating CHANGELOG for v1.0.0-rc1 (backport cometbft#3384) (c…
Browse files Browse the repository at this point in the history
…ometbft#3386)

Reference: cometbft#3255 

Updating CHANGELOG to cut RC1

---

#### PR checklist

- [ ] Tests written/updated
- [X] Changelog entry added in `.changelog` (we use
[unclog](https://github.com/informalsystems/unclog) to manage our
changelog)
- [ ] Updated relevant documentation (`docs/` or `spec/`) and code
comments
- [ ] Title follows the [Conventional
Commits](https://www.conventionalcommits.org/en/v1.0.0/) spec
<hr>This is an automatic backport of pull request cometbft#3384 done by
[Mergify](https://mergify.com).

Co-authored-by: Andy Nogueira <me@andynogueira.dev>
  • Loading branch information
mergify[bot] and andynog authored Jul 1, 2024
1 parent e9aa288 commit 86da002
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .changelog/unreleased/summary.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*June 20, 2024*
*July 1, 2024*

This is a major release of CometBFT that includes several substantial changes
that aim to reduce bandwidth consumption, enable modularity, improve
Expand Down
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

*June 20, 2024*
*July 1, 2024*

This is a major release of CometBFT that includes several substantial changes
that aim to reduce bandwidth consumption, enable modularity, improve
Expand Down Expand Up @@ -104,6 +104,8 @@ longer used. ([\#3084](https://github.com/cometbft/cometbft/issues/3084))
([\#558](https://github.com/cometbft/cometbft/issues/558))
- `[crypto]` Remove unnecessary `Sha256` wrapper
([\#3248](https://github.com/cometbft/cometbft/pull/3248))
- `[crypto]` Remove unnecessary `xchacha20` and `xsalsa20` implementations
([\#3347](https://github.com/cometbft/cometbft/pull/3347))
- `[evidence]` Move to `internal`
([\#1485](https://github.com/cometbft/cometbft/pull/1485))
- `[go/runtime]` Bump minimum Go version to v1.22
Expand Down Expand Up @@ -143,6 +145,10 @@ longer used. ([\#3084](https://github.com/cometbft/cometbft/issues/3084))
([\#1485](https://github.com/cometbft/cometbft/pull/1485))
- `[libs/timer]` Move to `internal`
([\#1485](https://github.com/cometbft/cometbft/pull/1485))
- `[mempool]` Add to the `Mempool` interface a new method `PreUpdate()`. This method should be
called before acquiring the mempool lock, to signal that a new update is coming. Also add to
`ErrMempoolIsFull` a new field `RecheckFull`.
([\#3314](https://github.com/cometbft/cometbft/pull/3314))
- `[mempool]` Change the signature of `CheckTx` in the `Mempool` interface to
`CheckTx(tx types.Tx, sender p2p.ID) (*abcicli.ReqRes, error)`.
([\#1010](https://github.com/cometbft/cometbft/issues/1010), [\#3084](https://github.com/cometbft/cometbft/issues/3084))
Expand Down Expand Up @@ -276,6 +282,8 @@ longer used. ([\#3084](https://github.com/cometbft/cometbft/issues/3084))
([\#1687](https://github.com/cometbft/cometbft/pull/1687))
- `[p2p/pex]` Gracefully shutdown Reactor ([\#2010](https://github.com/cometbft/cometbft/pull/2010))
- `[privval]` Retry accepting a connection ([\#2047](https://github.com/cometbft/cometbft/pull/2047))
- `[rpc]` Fix nil pointer error in `/tx` and `/tx_search` when block is
absent ([\#3352](https://github.com/cometbft/cometbft/issues/3352))
- `[state/indexer]` Respect both height params while querying for events
([\#1529](https://github.com/cometbft/cometbft/pull/1529))
- `[state/pruning]` When no blocks are pruned, do not attempt to prune statestore
Expand Down Expand Up @@ -423,6 +431,9 @@ longer used. ([\#3084](https://github.com/cometbft/cometbft/issues/3084))
- `[abci]` Increase ABCI socket message size limit to 2GB ([\#1730](https://github.com/cometbft/cometbft/pull/1730): @troykessler)
- `[blockstore]` Remove a redundant `Header.ValidateBasic` call in `LoadBlockMeta`, 75% reducing this time.
([\#2964](https://github.com/cometbft/cometbft/pull/2964))
- `[blockstore]` Use LRU caches for LoadBlockPart. Make the LoadBlockPart and LoadBlockCommit APIs
return mutative copies, that the caller is expected to not modify. This saves on memory copying.
([\#3342](https://github.com/cometbft/cometbft/issues/3342))
- `[blockstore]` Use LRU caches in blockstore, significiantly improving consensus gossip routine performance
([\#3003](https://github.com/cometbft/cometbft/issues/3003))
- `[blocksync]` Avoid double-calling `types.BlockFromProto` for performance
Expand All @@ -441,6 +452,9 @@ longer used. ([\#3084](https://github.com/cometbft/cometbft/issues/3084))
- `[cli/node]` The genesis hash provided with the `--genesis-hash` is now
forwarded to the node, instead of reading the file.
([\#1324](https://github.com/cometbft/cometbft/pull/1324))
- `[cmd]` Add support for all key types in `gen-validator` command. Use
`--key-type=` (or `-k`) to specify the key type (e.g., `-k secp256k1`).
([\#1757](https://github.com/cometbft/cometbft/issues/1757))
- `[config]` Added `[storage.pruning]` and `[storage.pruning.data_companion]`
sections to facilitate background pruning and data companion (ADR 101)
operations ([\#1096](https://github.com/cometbft/cometbft/issues/1096))
Expand Down Expand Up @@ -504,6 +518,8 @@ longer used. ([\#3084](https://github.com/cometbft/cometbft/issues/3084))
([\#2453](https://github.com/cometbft/cometbft/pull/2453))
- `[e2e]` Log the number of transactions that were sent successfully or failed.
([\#2328](https://github.com/cometbft/cometbft/pull/2328))
- `[e2e]` add option to the 'runner logs' command to output logs separately.
([\#3353](https://github.com/cometbft/cometbft/pull/3353))
- `[event-bus]` Remove the debug logs in PublishEventTx, which were noticed production slowdowns.
([\#2911](https://github.com/cometbft/cometbft/pull/2911))
- `[flowrate]` Remove expensive time.Now() calls from flowrate calls.
Expand Down Expand Up @@ -531,6 +547,9 @@ longer used. ([\#3084](https://github.com/cometbft/cometbft/issues/3084))
which the node gossip transactions.
([\#1558](https://github.com/cometbft/cometbft/pull/1558))
([\#1584](https://github.com/cometbft/cometbft/pull/1584))
- `[mempool]` Before updating the mempool, consider it as full if rechecking is still in progress.
This will stop accepting transactions in the mempool if the node can't keep up with re-CheckTx.
([\#3314](https://github.com/cometbft/cometbft/pull/3314))
- `[node]` On upgrade, after [\#1296](https://github.com/cometbft/cometbft/pull/1296), delete the genesis file existing in the DB.
([\#1297](https://github.com/cometbft/cometbft/pull/1297))
- `[node]` Remove genesis persistence in state db, replaced by a hash
Expand Down

0 comments on commit 86da002

Please sign in to comment.