Skip to content

Commit 1ad7fad

Browse files
fix(client/v2): fix comment parsing (backport cosmos#19377) (cosmos#19777)
Co-authored-by: Julien Robert <[email protected]>
1 parent 0df2902 commit 1ad7fad

File tree

8 files changed

+388
-30
lines changed

8 files changed

+388
-30
lines changed

client/v2/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ Ref: https://keepachangelog.com/en/1.0.0/
4242

4343
* [#19618](https://github.com/cosmos/cosmos-sdk/pull/19618) Marshal enum as string in queries.
4444
* [#19060](https://github.com/cosmos/cosmos-sdk/pull/19060) Use client context from root (or enhanced) command in autocli commands.
45-
* Note, the given command must have a `client.Context` in its context.
45+
* Note, the given command must have a `client.Context` in its context.
4646
* [#19216](https://github.com/cosmos/cosmos-sdk/pull/19216) Do not overwrite TxConfig, use directly the one provided in context. TxConfig should always be set in the `client.Context` in `root.go` of an app.
4747

4848
### Bug Fixes
4949

50+
* [#19377](https://github.com/cosmos/cosmos-sdk/pull/19377) Partly fix comment parsing in autocli.
5051
* [#19060](https://github.com/cosmos/cosmos-sdk/pull/19060) Simplify key flag parsing logic in flag handler.
5152

5253
## [v2.0.0-beta.1] - 2023-11-07

client/v2/internal/testpb/msg.proto

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ service Msg {
1414
rpc Send(MsgRequest) returns (MsgResponse);
1515
}
1616

17+
// MsgRequest is a sample request message
1718
message MsgRequest {
1819
// u32 is an uint32
1920
uint32 u32 = 1;

client/v2/internal/testpb/msg.pulsar.go

+130-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/v2/internal/testpb/msg_grpc.pb.go

+10-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)