You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: channel handshake version improvements (#1283)
* refactor: returning version from OnChanOpenInit
* refactor: update tests and add version to proto resp
* refactor: adding version to msg server resp
* refactor: remove unncessary if & update version on Endpoint.Ack
* fix: ics29 OnChanOpenInit remake versionMetaData before returning
* chore: update godoc
* test: adding check for expected version string
* test: adding test case for passing empty version string to ics20 onChanOpenInit
* Update modules/apps/29-fee/ibc_module.go
Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>
* chore: comment
* chore: changelog
* fix: ica now discards auth module version
* chore: update changelog
* adding default version for ics29
* fix: using transfer module directly rather than calling full middleware stack
* fix testing bug
* refactor: test now uses bool for isFeeEnabled rather than direct check
* docs: updating comment and migration docs
Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>
* (transfer) [\#1250](https://github.com/cosmos/ibc-go/pull/1250) Deprecate `GetTransferAccount` since the `transfer` module account is never used.
46
+
* (channel) [\#1283](https://github.com/cosmos/ibc-go/pull/1283) The `OnChanOpenInit` application callback now returns a version string in line with the latest [spec changes](https://github.com/cosmos/ibc/pull/629).
46
47
* (modules/29-fee)[\#1338](https://github.com/cosmos/ibc-go/pull/1338) Renaming `Result` field in `IncentivizedAcknowledgement` to `AppAcknowledgement`.
47
48
* (modules/29-fee)[\#1343](https://github.com/cosmos/ibc-go/pull/1343) Renaming `KeyForwardRelayerAddress` to `KeyRelayerAddressForAsyncAck`, and `ParseKeyForwardRelayerAddress` to `ParseKeyRelayerAddressForAsyncAck`.
Copy file name to clipboardexpand all lines: docs/migrations/v3-to-v4.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Migrating from ibc-go v2 to v3
1
+
# Migrating from ibc-go v3 to v4
2
2
3
3
This document is intended to highlight significant changes which may require more information than presented in the CHANGELOG.
4
4
Any changes that must be done by a user of ibc-go should be documented here.
@@ -23,4 +23,8 @@ No genesis or in-place migrations required when upgrading from v1 or v2 of ibc-g
23
23
The `WriteAcknowledgement` API now takes the `exported.Acknowledgement` type instead of passing in the acknowledgement byte array directly.
24
24
This is an API breaking change and as such IBC application developers will have to update any calls to `WriteAcknowledgement`.
25
25
26
+
The `OnChanOpenInit` application callback has been modified.
27
+
The return signature now includes the application version as detailed in the latest IBC [spec changes](https://github.com/cosmos/ibc/pull/629).
0 commit comments