Skip to content

Releases: uber-go/multierr

v1.11.0

29 Mar 23:02
de75ae5
Compare
Choose a tag to compare
  • 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

08 Mar 14:47
8767aa9
Compare
Choose a tag to compare
  • Support Go 1.20 Unwrap() []error
  • Remove unused glide.yaml
  • Drop external atomic dependency
  • README: Add Features section

v1.9.0

12 Dec 19:31
39ca40c
Compare
Choose a tag to compare
  • Add AppendFunc that allow passsing functions to similar to
    AppendInvoke.

  • Bump up yaml.v3 dependency to 3.0.1.

v1.8.0

28 Feb 20:36
10aaa3c
Compare
Choose a tag to compare
  • Combine: perform zero allocations when there are no errors.

v1.7.0

06 May 22:25
a5cd550
Compare
Choose a tag to compare
  • Add AppendInvoke to append into errors from defer blocks.

v1.6.0

14 Sep 16:33
3114a8b
Compare
Choose a tag to compare
  • Actually drop library dependency on development-time tooling.

v1.5.0

24 Feb 22:08
b587143
Compare
Choose a tag to compare
  • Drop library dependency on development-time tooling.

v1.4.0

04 Nov 18:43
824d08f
Compare
Choose a tag to compare
  • Add AppendInto function to more ergonomically build errors inside a
    loop.

v1.3.0

29 Oct 22:19
c3fc3d0
Compare
Choose a tag to compare
  • Switch to Go modules.

v1.2.0

26 Sep 22:04
71e610a
Compare
Choose a tag to compare
  • Support extracting and matching against wrapped errors with errors.As
    and errors.Is.