From 4661a66513885b35aba5382d1ec314f646a787dc Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Tue, 18 Oct 2022 19:39:01 +0200 Subject: [PATCH 1/2] docs: add ApplicationQueryService release notes --- CHANGELOG.md | 1 + RELEASE_NOTES.md | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3328f90dffb7..7a317141d871 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Features * (grpc) [#13485](https://github.com/cosmos/cosmos-sdk/pull/13485) Implement a new gRPC query, `/cosmos/base/node/v1beta1/config`, which provides operator configuration. +* [#13577](https://github.com/cosmos/cosmos-sdk/pull/13577) Added `ApplicationQueryService` interface (the related method is added directly to the `Application` interface and `ApplicationQueryService` is removed in the future version). Applications implementing `ApplicationQueryService` enabling registration of module external gRPC services. When implemented the SDK will automatically register chain information query service introduced in [#13485](https://github.com/cosmos/cosmos-sdk/pull/13485). ### Improvements diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 74323e7611c8..990d8ef5b059 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,11 @@ -# Cosmos SDK v0.46.2 Release Notes +# Cosmos SDK v0.46.3 Release Notes This release introduces a number of bug fixes, features and improvements. +Highlights: + ++ `ApplicationQueryService` was introduced to enable additional query service registration. Applications should implement `RegisterNodeService(client.Context)` method to automatically expose chain information query service implemented in [#13485](https://github.com/cosmos/cosmos-sdk/pull/13485). + Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.46.x/CHANGELOG.md) for an exhaustive list of changes. -**Full Commit History**: https://github.com/cosmos/cosmos-sdk/compare/v0.46.1...v0.46.2 +**Full Commit History**: https://github.com/cosmos/cosmos-sdk/compare/v0.46.2...v0.46.3 From 2fc76224a85791f404a22822efb6ce899f853be0 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Thu, 20 Oct 2022 23:48:24 +0200 Subject: [PATCH 2/2] updates --- RELEASE_NOTES.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 3c4b3a841137..84f64d4c7c02 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -6,7 +6,7 @@ Please upgrade ASAP. Chains must add the following to their go.mod for the application: ```go -replace github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v8.0.0 +replace github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0 ``` Bumping the SDK version should be smooth, however, feel free to tag core devs to review your upgrading PR: @@ -17,7 +17,8 @@ Bumping the SDK version should be smooth, however, feel free to tag core devs to * **CDT**: @ValarDragon, @zmanian Other updates: -+ `ApplicationQueryService` was introduced to enable additional query service registration. Applications should implement `RegisterNodeService(client.Context)` method to automatically expose chain information query service implemented in [#13485](https://github.com/cosmos/cosmos-sdk/pull/13485). -+ Next to this, we have also included a few minor bugfixes. + +* `ApplicationQueryService` was introduced to enable additional query service registration. Applications should implement `RegisterNodeService(client.Context)` method to automatically expose chain information query service implemented in [#13485](https://github.com/cosmos/cosmos-sdk/pull/13485). +* Next to this, we have also included a few minor bugfixes. Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.46.x/CHANGELOG.md) for an exhaustive list of changes.