Skip to content

Commit

Permalink
chore: prepare core,tx,collections changelogs and update mergify conf…
Browse files Browse the repository at this point in the history
…ig for v0.5 (cosmos#16442)
  • Loading branch information
julienrbrt authored Jun 7, 2023
1 parent 393af6c commit cfeb102
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ pull_request_rules:
commit_message_template: |
{{ title }} (#{{ number }})
{{ body }}
- name: backport patches to v0.50.x branch
conditions:
- base=main
- label=backport/v0.50.x
actions:
backport:
branches:
- release/v0.50.x
- name: backport patches to v0.47.x branch
conditions:
- base=main
Expand All @@ -40,11 +48,3 @@ pull_request_rules:
backport:
branches:
- release/v0.45.x
- name: backport patches to v0.44.x branch
conditions:
- base=main
- label=backport/0.44.x
actions:
backport:
branches:
- release/v0.44.x
6 changes: 4 additions & 2 deletions collections/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ Ref: https://keepachangelog.com/en/1.0.0/

## [Unreleased]

## [v0.2.0](https://github.com/cosmos/cosmos-sdk/releases/tag/collections%2Fv0.2.0)

### Features

* [#16074](https://github.com/cosmos/cosmos-sdk/pull/16074)makes the generic Collection interface public, still highly unstable.
* [#16074](https://github.com/cosmos/cosmos-sdk/pull/16074)Makes the generic Collection interface public, still highly unstable.

### API Breaking

* [#16127](https://github.com/cosmos/cosmos-sdk/pull/16127) – In the `Walk` method the call back function being passed is allowed to error.

## [v0.1.0](https://github.com/cosmos/cosmos-sdk/releases/tag/collections%2Fv0.1.0)

Collections `v0.1.0` is released! Check out the [docs](https://docs.cosmos.network/main/packages/collections) to know how to use the APIs.
Collections `v0.1.0` is released! Check out the [docs](https://docs.cosmos.network/main/packages/collections) to know how to use the APIs.
5 changes: 5 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ Ref: https://keepachangelog.com/en/1.0.0/

## [Unreleased]

## [v0.8.0](https://github.com/cosmos/cosmos-sdk/releases/tag/core%2Fv0.8.0)

* [#15519](https://github.com/cosmos/cosmos-sdk/pull/15519) Update `comet.VoteInfo` for CometBFT v0.38.
* [#16310](https://github.com/cosmos/cosmos-sdk/pull/16310) Add `gas.Service` and `gas.GasMeter` interfaces.

## [v0.7.0](https://github.com/cosmos/cosmos-sdk/releases/tag/core%2Fv0.7.0)

* [#15850](https://github.com/cosmos/cosmos-sdk/pull/15850) Add `comet` and `header` packages.
Expand Down
10 changes: 7 additions & 3 deletions x/tx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,19 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## Unreleased
## [Unreleased]

## v0.8.0

### Improvements

* [#16340](https://github.com/cosmos/cosmos-sdk/pull/16340): add `DefineCustomGetSigners` API function.

## v0.7.0

### API Breaking

* [#16044](https://github.com/cosmos/cosmos-sdk/pull/16044): rename aminojson.NewAminoJSON -> aminojson.NewEncoder
* [#16044](https://github.com/cosmos/cosmos-sdk/pull/16044): rename aminojson.NewAminoJSON -> aminojson.NewEncoder.
* [#16047](https://github.com/cosmos/cosmos-sdk/pull/16047): aminojson.NewEncoder now takes EncoderOptions as an argument.
* [#16254](https://github.com/cosmos/cosmos-sdk/pull/16254): aminojson.Encoder.Marshal now sorts all fields like encoding/json.Marshal does, hence no more need for sdk.\*SortJSON.

Expand All @@ -52,7 +55,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Improvements

* [#15871](https://github.com/cosmos/cosmos-sdk/pull/15871)
* [#15871](https://github.com/cosmos/cosmos-sdk/pull/15871)
* `HandlerMap` now has a `DefaultMode()` getter method
* Textual types use `signing.ProtoFileResolver` instead of `protoregistry.Files`

Expand All @@ -67,6 +70,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* `GetSignersOptions.ProtoFiles` has been renamed to `signing.Options.FileResolver`

### Bug Fixes

* [#15849](https://github.com/cosmos/cosmos-sdk/pull/15849) Fix int64 usage for 32 bit platforms.

## v0.5.1
Expand Down

0 comments on commit cfeb102

Please sign in to comment.