summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/go.uber.org/multierr@v1.6.0/CHANGELOG.md
blob: 6f1db9ef4a0a4facfe23a1ba9de3fadfd5c82a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Releases
========

v1.6.0 (2020-09-14)
===================

-   Actually drop library dependency on development-time tooling.


v1.5.0 (2020-02-24)
===================

-   Drop library dependency on development-time tooling.


v1.4.0 (2019-11-04)
===================

-   Add `AppendInto` function to more ergonomically build errors inside a
    loop.


v1.3.0 (2019-10-29)
===================

-   Switch to Go modules.


v1.2.0 (2019-09-26)
===================

-   Support extracting and matching against wrapped errors with `errors.As`
    and `errors.Is`.


v1.1.0 (2017-06-30)
===================

-   Added an `Errors(error) []error` function to extract the underlying list of
    errors for a multierr error.


v1.0.0 (2017-05-31)
===================

No changes since v0.2.0. This release is committing to making no breaking
changes to the current API in the 1.X series.


v0.2.0 (2017-04-11)
===================

-   Repeatedly appending to the same error is now faster due to fewer
    allocations.


v0.1.0 (2017-31-03)
===================

-   Initial release