Skip to content

Commit b8c514d

Browse files
KyleJuKyle Ju
andauthored
Upgrade Taskcluster to v41 (#2404)
* Upgrade taskcluster go client to v41 * go get -t -u -v -d ./... & go mod tidy Co-authored-by: Kyle Ju <[email protected]>
1 parent e22d646 commit b8c514d

File tree

3 files changed

+63
-68
lines changed

3 files changed

+63
-68
lines changed

api/taskcluster/webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
mapset "github.com/deckarep/golang-set"
2020
"github.com/google/go-github/v32/github"
2121
tcurls "github.com/taskcluster/taskcluster-lib-urls"
22-
"github.com/taskcluster/taskcluster/v37/clients/client-go/tcqueue"
22+
"github.com/taskcluster/taskcluster/v41/clients/client-go/tcqueue"
2323
uc "github.com/web-platform-tests/wpt.fyi/api/receiver/client"
2424
"github.com/web-platform-tests/wpt.fyi/shared"
2525
)

go.mod

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ go 1.14
44

55
require (
66
cloud.google.com/go v0.77.0
7-
cloud.google.com/go/datastore v1.3.0
8-
cloud.google.com/go/logging v1.1.0
9-
cloud.google.com/go/storage v1.12.0
7+
cloud.google.com/go/datastore v1.4.0
8+
cloud.google.com/go/logging v1.2.0
9+
cloud.google.com/go/storage v1.13.0
1010
github.com/BurntSushi/xgb v0.0.0-20200324125942-20f126ea2843 // indirect
1111
github.com/BurntSushi/xgbutil v0.0.0-20190907113008-ad855c713046 // indirect
1212
github.com/deckarep/golang-set v1.7.1
@@ -21,22 +21,24 @@ require (
2121
github.com/gorilla/mux v1.8.0
2222
github.com/gorilla/securecookie v1.1.1
2323
github.com/karrick/godirwalk v1.16.1 // indirect
24-
github.com/pborman/uuid v1.2.1 // indirect
24+
github.com/magefile/mage v1.11.0 // indirect
2525
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
26-
github.com/rogpeppe/go-internal v1.6.2 // indirect
26+
github.com/rogpeppe/go-internal v1.7.0 // indirect
2727
github.com/samthor/nicehttp v1.0.0
2828
github.com/sirupsen/logrus v1.8.0
29-
github.com/spf13/cobra v1.1.1 // indirect
3029
github.com/stretchr/testify v1.7.0
3130
github.com/taskcluster/taskcluster-lib-urls v13.0.1+incompatible
32-
github.com/taskcluster/taskcluster/v37 v37.5.1
31+
github.com/taskcluster/taskcluster/v41 v41.0.2
3332
github.com/tebeka/selenium v0.9.9
33+
go.opencensus.io v0.22.6 // indirect
3434
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5
3535
golang.org/x/oauth2 v0.0.0-20210216194517-16ff1888fd2e
36+
golang.org/x/sys v0.0.0-20210217105451-b926d437f341 // indirect
37+
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
3638
google.golang.org/api v0.40.0
37-
google.golang.org/genproto v0.0.0-20210212180131-e7f2df4ecc2d
39+
google.golang.org/genproto v0.0.0-20210217220511-c18582744cc2
3840
google.golang.org/grpc v1.35.0
39-
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
41+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
4042
)
4143

4244
// The project has been moved to GitHub and we don't want to depend on bzr (used by launchpad).

0 commit comments

Comments
 (0)