Releases: uber-go/multierr
Releases · uber-go/multierr
v1.11.0
- Errors now supports any error that implements multiple-error interface.
- Add Every function to allow checking if all errors in the chain satisfies errors.Is against the target error.
v1.10.0
- Support Go 1.20 Unwrap() []error
- Remove unused glide.yaml
- Drop external atomic dependency
- README: Add Features section
v1.8.0
Combine
: perform zero allocations when there are no errors.
v1.7.0
- Add
AppendInvoke
to append into errors from defer
blocks.
v1.6.0
- Actually drop library dependency on development-time tooling.
v1.5.0
- Drop library dependency on development-time tooling.
v1.4.0
- Add
AppendInto
function to more ergonomically build errors inside a
loop.
v1.2.0
- Support extracting and matching against wrapped errors with
errors.As
and errors.Is
.