Bump protobuf lib and fix deprecation warnings (#285)

* Bump github.com/golang/protobuf from 1.4.2 to 1.5.2

Bumps [github.com/golang/protobuf](https://github.com/golang/protobuf) from 1.4.2 to 1.5.2.
- [Release notes](https://github.com/golang/protobuf/releases)
- [Commits](https://github.com/golang/protobuf/compare/v1.4.2...v1.5.2)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---

* Also pulls along update of golang.google.org/protobuf to v1.26
* Fix deprecation warnings about `ptypes` package
This commit is contained in:
Jeff Widman
2022-02-04 14:19:52 -08:00
committed by GitHub
parent 57a2cd1a09
commit b890db745f
3 changed files with 16 additions and 9 deletions

4
go.mod
View File

@@ -5,11 +5,11 @@ go 1.15
require (
cloud.google.com/go v0.56.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.4.2
github.com/golang/protobuf v1.5.2
github.com/jhump/protoreflect v1.10.2
golang.org/x/text v0.3.7 // indirect
google.golang.org/grpc v1.37.0
google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12
google.golang.org/protobuf v1.26.0
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)