kubernetes/vendor/go.uber.org/multierr
Jordan Liggitt 5cfc39ef5e Update protobuf,grpc,etcd dependencies
1. Updated etcd/protobuf/grpc dependencies:

echo "
hack/pin-dependency.sh github.com/golang/protobuf latest
hack/pin-dependency.sh google.golang.org/protobuf latest
hack/pin-dependency.sh go.etcd.io/etcd/api/v3 v3.5.0-rc.0
hack/pin-dependency.sh go.etcd.io/etcd/client/v3 v3.5.0-rc.0
hack/pin-dependency.sh go.etcd.io/etcd/client/pkg/v3 v3.5.0-rc.0
hack/pin-dependency.sh go.etcd.io/etcd/pkg/v3 v3.5.0-rc.0
hack/pin-dependency.sh go.etcd.io/etcd/server/v3 v3.5.0-rc.0
hack/pin-dependency.sh go.etcd.io/etcd/tests/v3 v3.5.0-rc.0
hack/pin-dependency.sh google.golang.org/grpc latest
" | bash

2. Linted transitive dependencies until versions are clean:

hack/lint-dependencies.sh  | grep "  hack/pin-dependency.sh" | bash

3. Linted dependencies until dropped versions are clean:

hack/lint-dependencies.sh  | grep "dropreplace" | bash

4. Updated vendor and internal modules:

hack/update-vendor.sh
hack/update-internal-modules.sh

Repeated steps 2-4 until clean
2021-06-15 10:06:09 -04:00
..
.codecov.yml
.gitignore update uber zap to 1.16.0 to fix a nil pointer exception 2021-04-01 15:28:29 +08:00
.travis.yml Update protobuf,grpc,etcd dependencies 2021-06-15 10:06:09 -04:00
CHANGELOG.md Update protobuf,grpc,etcd dependencies 2021-06-15 10:06:09 -04:00
error.go Update protobuf,grpc,etcd dependencies 2021-06-15 10:06:09 -04:00
glide.yaml
go113.go update uber zap to 1.16.0 to fix a nil pointer exception 2021-04-01 15:28:29 +08:00
go.mod Update protobuf,grpc,etcd dependencies 2021-06-15 10:06:09 -04:00
go.sum Update protobuf,grpc,etcd dependencies 2021-06-15 10:06:09 -04:00
LICENSE.txt
Makefile Update protobuf,grpc,etcd dependencies 2021-06-15 10:06:09 -04:00
README.md update uber zap to 1.16.0 to fix a nil pointer exception 2021-04-01 15:28:29 +08:00

multierr GoDoc Build Status Coverage Status

multierr allows combining one or more Go errors together.

Installation

go get -u go.uber.org/multierr

Status

Stable: No breaking changes will be made before 2.0.


Released under the MIT License.