From 1cd48a06e4cd622642770a9d849cf9232dc242ac Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 1 Nov 2022 18:20:36 +0100 Subject: [PATCH 1/2] ci: notify for 0.45.x releases --- .github/workflows/tag.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 4dc80047f552..101398baeecc 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -24,3 +24,22 @@ jobs: args: release --rm-dist --release-notes ./RELEASE_NOTES.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + release-success: + needs: release + if: ${{ success() }} + runs-on: ubuntu-latest + steps: + - name: Notify Slack on success + uses: rtCamp/action-slack-notify@v2.2.0 + env: + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_CHANNEL: cosmos-sdk + SLACK_USERNAME: Cosmos SDK Release Bot + SLACK_ICON: https://avatars.githubusercontent.com/t/5997665?size=64 + SLACK_COLOR: good + SLACK_TITLE: "Cosmos SDK ${{ github.ref_name }} is tagged :tada:" + SLACK_MESSAGE: "@channel :point_right: https://github.com/cosmos/cosmos-sdk/releases/tag/${{ github.ref_name }}" + SLACK_FOOTER: "" + SLACK_LINK_NAMES: true + MSG_MINIMAL: true From 0ae92777622f88827f9d1974f3e6a2c2b6d24876 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 1 Nov 2022 19:27:24 +0100 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f77ac778f8e8..059fb6b25f68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,11 +45,14 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (deps) Bump IAVL version to [v0.19.4](https://github.com/cosmos/iavl/releases/tag/v0.19.4). +### CLI Breaking Changes + +* [#13656](https://github.com/cosmos/cosmos-sdk/pull/13660) Rename `server.FlagIAVLFastNode` to `server.FlagDisableIAVLFastNode` for clarity. + ### API Breaking Changes * [#13673](https://github.com/cosmos/cosmos-sdk/pull/13673) The `GetFromFields` function now takes `Context` as an argument and removes `genOnly`. - ## v0.45.10 - 2022-10-24 ### Features