Skip to content

Commit 637038c

Browse files
crodriguezvegatac0turtlecolin-axner
authored
backport 583 to v2.0.x (#588)
* proto: fix for reflection (#583) * migrate to v1 buf * remove confio * update docker buf image version to fix make proto-all * move proofs outside confio * regenerate proto Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Colin Axnér <[email protected]> * update changelog * update changelog * update tag date in changelog * update changelog Co-authored-by: Marko <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Colin Axnér <[email protected]> Co-authored-by: Carlos Rodriguez <[email protected]>
1 parent e59e5fc commit 637038c

File tree

13 files changed

+187
-153
lines changed

13 files changed

+187
-153
lines changed

CHANGELOG.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
3434

3535
# Changelog
3636

37-
## [v2.0.1](https://github.com/cosmos/ibc-go/releases/tag/v2.0.1) - 2021-12-02
37+
## [v2.0.1](https://github.com/cosmos/ibc-go/releases/tag/v2.0.1) - 2021-12-05
3838

3939
### Dependencies
4040

@@ -43,6 +43,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
4343
### Improvements
4444

4545
* (02-client) [\#568](https://github.com/cosmos/ibc-go/pull/568) In IBC `transfer` cli command use local clock time as reference for relative timestamp timeout if greater than the block timestamp queried from the latest consensus state corresponding to the counterparty channel.
46+
* [\#583](https://github.com/cosmos/ibc-go/pull/583) Move third_party/proto/confio/proofs.proto to third_party/proto/proofs.proto to enable proto service reflection. Migrate `buf` from v1beta1 to v1.
4647

4748
### Bug Fixes
4849

@@ -64,12 +65,16 @@ Ref: https://keepachangelog.com/en/1.0.0/
6465

6566
* [\#384](https://github.com/cosmos/ibc-go/pull/384) Added `NegotiateAppVersion` method to `IBCModule` interface supported by a gRPC query service in `05-port`. This provides routing of requests to the desired application module callback, which in turn performs application version negotiation.
6667

67-
## [v1.2.4](https://github.com/cosmos/ibc-go/releases/tag/v1.2.4) - 2021-12-02
68+
## [v1.2.4](https://github.com/cosmos/ibc-go/releases/tag/v1.2.4) - 2021-12-05
6869

6970
### Dependencies
7071

7172
* [\#567](https://github.com/cosmos/ibc-go/pull/567) Bump SDK version to v0.44.4
7273

74+
### Improvements
75+
76+
* [\#583](https://github.com/cosmos/ibc-go/pull/583) Move third_party/proto/confio/proofs.proto to third_party/proto/proofs.proto to enable proto service reflection. Migrate `buf` from v1beta1 to v1.
77+
7378
## [v1.2.3](https://github.com/cosmos/ibc-go/releases/tag/v1.2.3) - 2021-11-09
7479

7580
### Dependencies
@@ -107,12 +112,16 @@ Ref: https://keepachangelog.com/en/1.0.0/
107112

108113
* [\#386](https://github.com/cosmos/ibc-go/pull/386) Bump [tendermint](https://github.com/tendermint/tendermint) from v0.34.12 to v0.34.13.
109114

110-
## [v1.1.4](https://github.com/cosmos/ibc-go/releases/tag/v1.1.4) - 2021-12-02
115+
## [v1.1.4](https://github.com/cosmos/ibc-go/releases/tag/v1.1.4) - 2021-12-05
111116

112117
### Dependencies
113118

114119
* [\#567](https://github.com/cosmos/ibc-go/pull/567) Bump SDK version to v0.44.4
115120

121+
### Improvements
122+
123+
* [\#583](https://github.com/cosmos/ibc-go/pull/583) Move third_party/proto/confio/proofs.proto to third_party/proto/proofs.proto to enable proto service reflection. Migrate `buf` from v1beta1 to v1.
124+
116125
## [v1.1.3](https://github.com/cosmos/ibc-go/releases/tag/v1.1.3) - 2021-11-09
117126

118127
### Dependencies

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SIMAPP = ./testing/simapp
1111
MOCKS_DIR = $(CURDIR)/tests/mocks
1212
HTTPS_GIT := https://github.com/cosmos/ibc-go.git
1313
DOCKER := $(shell which docker)
14-
DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf
14+
DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf:1.0.0-rc8
1515

1616
export GO111MODULE = on
1717

buf.work.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Generated by "buf config migrate-v1beta1". Edit as necessary, and
2+
# remove this comment when you're finished.
3+
#
4+
# This workspace file points to the roots found in your
5+
# previous "buf.yaml" configuration.
6+
version: v1
7+
directories:
8+
- proto
9+
- third_party/proto

modules/core/02-client/types/tx.pb.go

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

modules/core/23-commitment/types/commitment.pb.go

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

0 commit comments

Comments
 (0)