58 lines
2.0 KiB
Markdown
58 lines
2.0 KiB
Markdown
<!--
|
|
Guiding Principles:
|
|
|
|
Changelogs are for humans, not machines.
|
|
There should be an entry for every single version.
|
|
The same types of changes should be grouped.
|
|
Versions and sections should be linkable.
|
|
The latest version comes first.
|
|
The release date of each version is displayed.
|
|
Mention whether you follow Semantic Versioning.
|
|
|
|
Usage:
|
|
|
|
Changelog entries are generated by git cliff ref: https://github.com/orhun/git-cliff
|
|
|
|
Each commit should be conventional, the following message groups are supported.
|
|
|
|
* feat: A new feature
|
|
* fix: A bug fix
|
|
* docs: Documentation only changes
|
|
* style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
|
|
* refactor: A code change that neither fixes a bug nor adds a feature
|
|
* perf: A code change that improves performance
|
|
* test: Adding missing tests or correcting existing tests
|
|
* build: Changes that affect the build system or external dependencies (example scopes: go, npm)
|
|
* ci: Changes to our CI configuration files and scripts (example scopes: GH Actions)
|
|
* chore: Other changes that don't modify src or test files
|
|
* revert: Reverts a previous commit
|
|
|
|
When a change is made that affects the API or state machine, the commit message prefix should be suffixed with `!`.
|
|
|
|
Ref: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
|
|
-->
|
|
|
|
# Changelog
|
|
|
|
## [Unreleased]
|
|
|
|
## [v1.0.0] - 2024-12-19
|
|
|
|
* [#22849](https://github.com/cosmos/cosmos-sdk/pull/22849) Avoid telemetry server conflicts on port 7180
|
|
|
|
## [v1.0.0-rc.4] - 2024-12-10
|
|
|
|
* [#22810](https://github.com/cosmos/cosmos-sdk/pull/22810) Avoid HTTP server conflicts on port 8080
|
|
|
|
## [v1.0.0-rc.3] - 2024-12-05
|
|
|
|
* [#22774](https://github.com/cosmos/cosmos-sdk/pull/22774) Add greater than or equal support in Rest test suite
|
|
|
|
## [v1.0.0-rc.2] - 2024-11-26
|
|
|
|
* [#22577](https://github.com/cosmos/cosmos-sdk/pull/22577) Support invalid RPC response for CometBFT v1
|
|
|
|
## [v1.0.0-rc.1] - 2024-11-26
|
|
|
|
* [#22578](https://github.com/cosmos/cosmos-sdk/pull/22578) Extract system test framework
|