2.4 KiB
2.4 KiB
Changelog
[Unreleased]
API Breaking
- #20402 Remove Grpc error codes from the error package. This is done in order to keep the dependency graph of errors minimal
- #20539 v2 errors removes
IsOf,Recover,WithTypeand wrapped error. The errors package uses the go std library errors. It provides aWrapandWrapfto help in the migration from v1 to v2.
v1.0.1
Improvements
- #18918 Improve
IsOfby returning earlier when the checked error is nil.
v1.0.0
Features
- #15989 Add
ErrStopIteratingfor modules to use for breaking out of iteration. - #10779 Import code from the
github.com/cosmos/cosmos-sdk/types/errorspackage. - #11274 Add
RegisterWithGRPCCodefunction to associate a gRPC error code with errors.
Improvements
- #11762 Improve error messages.
API Breaking
- #11274
Newnow is an alias forRegisterand should only be used in initialization code.
Bug Fixes
- #11714 Add wrapped error messages in
GRPCStatus()