Skip to content

Commit

Permalink
Update pxapi go deps in line with latest pxapi repo changes (#1780)
Browse files Browse the repository at this point in the history
Summary: Update pxapi go deps in line with latest pxapi repo changes

This propagates the changes to the pxapi repo to upgrade its
dependencies to address grpc vulnerabilities

Relevant Issues: N/A

Type of change: /kind dependencies

Test Plan: Verified that the pxapi go changes worked with the examples
in the repo (see #1 for more
details)

Signed-off-by: Dom Del Nano <[email protected]>
GitOrigin-RevId: dffdb3b681f35583cc3749ca2ecb56593c29f752
  • Loading branch information
ddelnano authored and copybaranaut committed Nov 25, 2023
1 parent 424f739 commit 6fec9b3
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 147 deletions.
37 changes: 18 additions & 19 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,38 +1,37 @@
module px.dev/pxapi

go 1.17
go 1.20

require (
github.com/gofrs/uuid v4.0.0+incompatible
github.com/gofrs/uuid v4.4.0+incompatible
github.com/gogo/protobuf v1.3.2
github.com/golang/mock v1.6.0
github.com/lestrrat-go/jwx v1.2.17
github.com/lestrrat-go/jwx v1.2.26
github.com/olekukonko/tablewriter v0.0.5
github.com/stretchr/testify v1.8.0
google.golang.org/grpc v1.43.0
github.com/stretchr/testify v1.8.4
google.golang.org/grpc v1.59.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.0-20210816181553-5444fa50b93d // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
github.com/lestrrat-go/blackmagic v1.0.0 // indirect
github.com/lestrrat-go/httpcc v1.0.0 // indirect
github.com/lestrrat-go/iter v1.0.1 // indirect
github.com/lestrrat-go/option v1.0.0 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
google.golang.org/protobuf v1.28.1 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Expand Down
Loading

0 comments on commit 6fec9b3

Please sign in to comment.