Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d9d46fd

Browse files
committedSep 15, 2022
[#3579] Update go 1.17 and golang.org/x/sys lib
Updates Go to 1.17 as golang.org/x/sys only allows 2 versions behind the latest one. Go 1.19 was released last month.
1 parent 62295e6 commit d9d46fd

File tree

152 files changed

+6560
-2956
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+6560
-2956
lines changed
 

‎cmd/convox/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: all build package release
22

3-
pkg_darwin = pkg/convox-darwin-10.16-amd64
3+
pkg_darwin = pkg/convox-darwin-amd64
44
pkg_darwin_arm64 = pkg/convox-darwin-arm64
55
pkg_linux = pkg/convox-linux-amd64
66
pkg_linux_arm64 = pkg/convox-linux-arm64
@@ -20,7 +20,7 @@ package:
2020

2121
go install github.com/crazy-max/xgo@v0.7.5
2222
if [ -f /.dockerenv ]; then tar cz $(GOPATH) | docker run -v $(GOPATH):/gopath -i ubuntu tar xz -C /gopath --strip-components 2; fi
23-
cd ../.. && $(GOPATH)/bin/xgo -branch $(shell git rev-parse HEAD) -pkg cmd/convox -out cmd/convox/pkg/convox -go 1.16.x -targets 'darwin/amd64' -ldflags "-X main.version=$(VERSION)" .
23+
cd ../.. && $(GOPATH)/bin/xgo -branch $(shell git rev-parse HEAD) -pkg cmd/convox -out cmd/convox/pkg/convox -go 1.17.x -targets 'darwin/amd64' -ldflags "-X main.version=$(VERSION)" .
2424
if [ -f /.dockerenv ]; then mkdir -p pkg && docker run -v $(GOPATH):/gopath -i ubuntu tar czv /gopath/src/github.com/convox/rack/cmd/convox/pkg | tar xzv -C pkg --strip-components 8; fi
2525

2626
release: package

‎go.mod

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/convox/rack
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/PuerkitoBio/goquery v1.1.0
@@ -53,25 +53,50 @@ require (
5353
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
5454
github.com/convox/go-u2fhost v0.0.0-20220210143516-c133f566e496
5555
github.com/convox/inotify v0.0.0-20170313035821-b56f5149b5c6 // indirect
56+
github.com/davecgh/go-spew v1.1.1 // indirect
5657
github.com/docker/spdystream v0.0.0-20170912183627-bc6354cbbc29 // indirect
5758
github.com/elazarl/goproxy v0.0.0-20210801061803-8e322dfb79c4 // indirect
59+
github.com/ghodss/yaml v1.0.0 // indirect
60+
github.com/gobuffalo/envy v1.6.12 // indirect
61+
github.com/gobuffalo/packd v0.0.0-20181212173646-eca3b8fd6687 // indirect
62+
github.com/gobuffalo/syncx v0.0.0-20181120194010-558ac7de985f // indirect
63+
github.com/gogo/protobuf v1.2.1 // indirect
64+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
65+
github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef // indirect
66+
github.com/golang/protobuf v1.3.1 // indirect
67+
github.com/google/btree v1.0.0 // indirect
5868
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
5969
github.com/googleapis/gnostic v0.2.0 // indirect
70+
github.com/gorilla/context v1.1.1 // indirect
71+
github.com/gorilla/securecookie v1.1.1 // indirect
72+
github.com/gorilla/sessions v1.1.3 // indirect
6073
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
6174
github.com/hashicorp/golang-lru v0.0.0-20180201235237-0fb14efe8c47 // indirect
6275
github.com/headzoo/ut v0.0.0-20181013193318-a13b5a7a02ca // indirect
6376
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
77+
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
78+
github.com/joho/godotenv v1.3.0 // indirect
6479
github.com/json-iterator/go v1.1.5 // indirect
80+
github.com/mattn/go-colorable v0.0.9 // indirect
81+
github.com/mattn/go-isatty v0.0.4 // indirect
6582
github.com/mattn/go-runewidth v0.0.4 // indirect
6683
github.com/moby/moby v1.13.1 // indirect
6784
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6885
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
6986
github.com/opencontainers/runc v0.1.1 // indirect
7087
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
88+
github.com/pmezard/go-difflib v1.0.0 // indirect
89+
github.com/rogpeppe/go-internal v1.1.0 // indirect
90+
github.com/sebest/xff v0.0.0-20160910043805-6c115e0ffa35 // indirect
7191
github.com/segmentio/backo-go v0.0.0-20160424052352-204274ad699c // indirect
92+
github.com/spf13/pflag v1.0.3 // indirect
93+
github.com/stretchr/objx v0.1.1 // indirect
7294
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
7395
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
74-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
96+
golang.org/x/sys v0.0.0-20220913153101-76c7481b5158 // indirect
97+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
98+
golang.org/x/text v0.3.7 // indirect
99+
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
75100
gopkg.in/inf.v0 v0.9.1 // indirect
76101
k8s.io/kube-openapi v0.0.0-20180731170545-e3762e86a74c // indirect
77102
)

‎go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,8 +573,8 @@ golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7w
573573
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
574574
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
575575
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
576-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f h1:v4INt8xihDGvnrfjMDVXGxw9wrfxYyCjk0KbXjhR55s=
577-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
576+
golang.org/x/sys v0.0.0-20220913153101-76c7481b5158 h1:XQphkCZeKYaMRSo28HqvvNYuLOoM5CIOOvTZfthvTgI=
577+
golang.org/x/sys v0.0.0-20220913153101-76c7481b5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
578578
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
579579
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
580580
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=

‎vendor/github.com/bearsh/hid/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.