Skip to content
This repository was archived by the owner on Jul 12, 2023. It is now read-only.

Commit 1e7b1d0

Browse files
authored
Update to latest en server (#1046)
1 parent 35cff81 commit 1e7b1d0

File tree

2 files changed

+122
-34
lines changed

2 files changed

+122
-34
lines changed

go.mod

Lines changed: 25 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,27 @@ replace github.com/jackc/puddle => github.com/jeremyfaller/puddle v1.1.2-0.20200
77
replace golang.org/x/sys => golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6
88

99
require (
10-
cloud.google.com/go v0.68.0
10+
cloud.google.com/go v0.71.0
1111
cloud.google.com/go/firestore v1.3.0 // indirect
1212
contrib.go.opencensus.io/integrations/ocsql v0.1.6
1313
firebase.google.com/go v3.13.0+incompatible
14-
github.com/Azure/azure-sdk-for-go v46.4.0+incompatible // indirect
15-
github.com/Azure/go-autorest/autorest v0.11.8 // indirect
16-
github.com/aws/aws-sdk-go v1.35.3 // indirect
14+
github.com/Azure/azure-sdk-for-go v48.1.0+incompatible // indirect
15+
github.com/Azure/go-autorest/autorest v0.11.11 // indirect
16+
github.com/Azure/go-autorest/autorest/azure/auth v0.5.3 // indirect
17+
github.com/Microsoft/go-winio v0.4.15 // indirect
18+
github.com/aws/aws-sdk-go v1.35.24 // indirect
1719
github.com/chromedp/cdproto v0.0.0-20201009231348-1c6a710e77de
1820
github.com/chromedp/chromedp v0.5.3
1921
github.com/client9/misspell v0.3.4
2022
github.com/containerd/continuity v0.0.0-20200928162600-f2cc35102c2a // indirect
2123
github.com/dgrijalva/jwt-go v3.2.0+incompatible
24+
github.com/dimchansky/utfbom v1.1.1 // indirect
2225
github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac // indirect
2326
github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82 // indirect
2427
github.com/gonum/internal v0.0.0-20181124074243-f884aa714029 // indirect
2528
github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9 // indirect
2629
github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9
27-
github.com/google/exposure-notifications-server v0.15.1-0.20201029203442-ccf3479357e2
30+
github.com/google/exposure-notifications-server v0.16.0
2831
github.com/google/go-cmp v0.5.2
2932
github.com/google/uuid v1.1.2
3033
github.com/gorilla/csrf v1.7.0
@@ -33,8 +36,10 @@ require (
3336
github.com/gorilla/schema v1.2.0
3437
github.com/gorilla/securecookie v1.1.1
3538
github.com/gorilla/sessions v1.2.1
39+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
3640
github.com/hashicorp/errwrap v1.1.0 // indirect
3741
github.com/hashicorp/go-multierror v1.1.0
42+
github.com/hashicorp/go-retryablehttp v0.6.8 // indirect
3843
github.com/jinzhu/gorm v1.9.16
3944
github.com/jinzhu/now v1.1.1 // indirect
4045
github.com/lib/pq v1.8.0
@@ -43,6 +48,9 @@ require (
4348
github.com/mikehelmick/go-chaff v0.3.0
4449
github.com/opencensus-integrations/redigo v2.0.1+incompatible
4550
github.com/ory/dockertest v3.3.5+incompatible
51+
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
52+
github.com/prometheus/client_golang v1.8.0 // indirect
53+
github.com/prometheus/common v0.15.0 // indirect
4654
github.com/rakutentech/jwk-go v1.0.1
4755
github.com/russross/blackfriday/v2 v2.0.1
4856
github.com/sethvargo/go-envconfig v0.3.2
@@ -53,16 +61,19 @@ require (
5361
github.com/sethvargo/go-signalcontext v0.1.0
5462
github.com/sirupsen/logrus v1.7.0 // indirect
5563
github.com/unrolled/secure v1.0.8
56-
go.opencensus.io v0.22.4
64+
go.opencensus.io v0.22.5
5765
go.uber.org/zap v1.16.0
58-
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0 // indirect
59-
golang.org/x/net v0.0.0-20201002202402-0a1ea396d57c // indirect
60-
golang.org/x/sync v0.0.0-20200930132711-30421366ff76 // indirect
61-
golang.org/x/sys v0.0.0-20201005172224-997123666555 // indirect
66+
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect
67+
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
68+
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58 // indirect
69+
golang.org/x/sys v0.0.0-20201109165425-215b40eba54c // indirect
70+
golang.org/x/text v0.3.4 // indirect
6271
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
63-
golang.org/x/tools v0.0.0-20201005185003-576e169c3de7
64-
google.golang.org/api v0.32.0
65-
google.golang.org/genproto v0.0.0-20201002142447-3860012362da
72+
golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd
73+
google.golang.org/api v0.35.0
74+
google.golang.org/appengine v1.6.7 // indirect
75+
google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a
76+
google.golang.org/grpc v1.33.2 // indirect
6677
gopkg.in/gormigrate.v1 v1.6.0
67-
honnef.co/go/tools v0.0.1-2020.1.5
78+
honnef.co/go/tools v0.0.1-2020.1.6
6879
)

0 commit comments

Comments
 (0)