Skip to content

Commit 7f88c60

Browse files
docs: add ApplicationQueryService release notes (#13587)
* docs: add ApplicationQueryService release notes * updates Co-authored-by: Julien Robert <[email protected]>
1 parent 6d32deb commit 7f88c60

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ replace github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v8.0
5555

5656
* [#13435](https://github.com/cosmos/cosmos-sdk/pull/13435) Extend error context when a simulation fails.
5757
* (grpc) [#13485](https://github.com/cosmos/cosmos-sdk/pull/13485) Implement a new gRPC query, `/cosmos/base/node/v1beta1/config`, which provides operator configuration.
58+
* [#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).
5859
* (cli) [#13147](https://github.com/cosmos/cosmos-sdk/pull/13147) Add the `--append` flag to the `sign-batch` CLI cmd to combine the messages and sign those txs which are created with `--generate-only`.
5960
* (cli) [#13454](https://github.com/cosmos/cosmos-sdk/pull/13454) `sign-batch` CLI can now read multiple transaction files.
6061

RELEASE_NOTES.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
This is a security release for the [Dragonberry security advisory](https://forum.cosmos.network/t/ibc-security-advisory-dragonberry/7702).
44
Please upgrade ASAP.
55

6-
Next to this, we have also included a few minor bugfixes.
7-
86
Chains must add the following to their go.mod for the application:
97

108
```go
11-
replace github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v8.0.0
9+
replace github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
1210
```
1311

1412
Bumping the SDK version should be smooth, however, feel free to tag core devs to review your upgrading PR:
@@ -17,3 +15,10 @@ Bumping the SDK version should be smooth, however, feel free to tag core devs to
1715
* **EST**: @ebuchman, @alexanderbez, @aaronc
1816
* **PST**: @jtremback, @nicolaslara, @czarcas7ic, @p0mvn
1917
* **CDT**: @ValarDragon, @zmanian
18+
19+
Other updates:
20+
21+
* `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).
22+
* Next to this, we have also included a few minor bugfixes.
23+
24+
Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.46.x/CHANGELOG.md) for an exhaustive list of changes.

0 commit comments

Comments
 (0)