Skip to content

Releases: go-pogo/errors

v0.12.0

28 Feb 12:37
03cf682

Choose a tag to compare

This release contains breaking changes.

Full Changelog: v0.11.2...v0.12.0

v0.11.2

19 Dec 09:12
fb5b2d4

Choose a tag to compare

Full Changelog: v0.11.1...v0.11.2

v0.11.1

19 Jun 18:58
aa4f9dc

Choose a tag to compare

Full Changelog: v0.11.0...v0.11.1

v0.11.0

11 Jun 11:15
430dee4

Choose a tag to compare

Replace errlist List.Contains with List.Append-/PrependUnique

v0.10.0

07 May 18:12
be4a6d1

Choose a tag to compare

Full Changelog: v0.9.1...v0.10.0

v0.9.1

07 May 17:56
b807df9

Choose a tag to compare

Full Changelog: v0.9.0...v0.9.1

v0.9.0

04 Feb 12:50
381228e

Choose a tag to compare

Full Changelog: v0.8.0...v0.9.0

This release contains breaking changes:

  • minimal go version is changed to 1.20;
  • Append is renamed to AppendInto, a new Append function is introduced;
  • List is moved to pkg errlist;
  • NewList is moved to pkg errlist and renamed to New;
  • DefaultListCapacity is moved to pkg errlist and renamed to DefaultCapacity;
  • WaitGroup is moved to pkg errgroup and renamed to Group;
  • removed deprecated functions Combine;
  • removed deprecated interface DeprecatedMultiError.

v0.8.0

01 Mar 18:11
2bd44b3

Choose a tag to compare

Full Changelog: v0.7.0...v0.8.0

This release contains breaking changes:

  • remove UnsupportedTypeError
  • remove Callers()
  • StackTrace.Frames() no longer returns []xerrors.Frame
  • deprecate Newf in favor of Errorf
  • deprecate Combine in favor of Join
  • deprecate MultiError.Errors() in favor of MultiError.Unwrap()

v0.7.6

21 Jan 10:23
33cf287

Choose a tag to compare

Full Changelog: v0.7.5...v0.7.6

v0.7.5

17 Dec 09:50
6185754

Choose a tag to compare

Make compatible with go1.20 errors updates

- Deprecate Combine in favour of Join
- Deprecate Errors() []error in favour of Unwrap() []error
- remove Is/As methods from multiErr, errors.Is/errors.As can now do this