Bump Go to 1.17

Change-Id: Ideb635db1a553c5de4a0b700a080f935249990fb
This commit is contained in:
Leo 2021-08-30 16:42:32 +02:00 committed by Leopold Schabel
parent 4ac19518bd
commit 4f22a44969
7 changed files with 30 additions and 8 deletions

View File

@ -4,7 +4,7 @@
The following dependencies are required for local development:
- [Go](https://golang.org/dl/) >= 1.16.6
- [Go](https://golang.org/dl/) >= 1.17.0
- [Tilt](http://tilt.dev/) >= 0.20.8
- Any of the local Kubernetes clusters supported by Tilt.
We strongly recommend [minikube](https://kubernetes.io/docs/setup/learning-environment/minikube/) >=
@ -22,7 +22,7 @@ The minikube default is too low, adjust it like this:
minikube ssh 'echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p'
This should work on Linux, MacOS and possibly even Windows.
This should work on Linux, MacOS and Windows.
By default, the devnet is deployed to the `wormhole` namespace rather than `default`. This makes it easy to clean up the
entire deployment by simply removing the namespace, which isn't possible with `default`. Change your default namespace

View File

@ -1,6 +1,6 @@
module github.com/certusone/wormhole/clients/eth
go 1.16
go 1.17
require (
github.com/certusone/wormhole/node v0.0.0-20210722131135-a191017d22d0

View File

@ -96,7 +96,7 @@ frequency). Light clients have much lower hardware requirements.
For security reasons, we do not provide a pre-built binary. You need to check out the repo and build the
guardiand binary from source. A Git repo is much harder to tamper with than release binaries.
To build the Wormhole node, you need [Go](https://golang.org/dl/) >= 1.16.5.
To build the Wormhole node, you need [Go](https://golang.org/dl/) >= 1.17.0.
First, check out the version of the Wormhole repo that you want to deploy:

View File

@ -1,8 +1,30 @@
module github.com/certusone/wormhole/events_database
go 1.16
go 1.17
require (
cloud.google.com/go/bigtable v1.10.1
google.golang.org/api v0.48.0
)
require (
cloud.google.com/go v0.83.0 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
github.com/jstemmer/go-junit-report v0.9.1 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 // indirect
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c // indirect
golang.org/x/sys v0.0.0-20210603125802-9665404d3644 // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/tools v0.1.2 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08 // indirect
google.golang.org/grpc v1.38.0 // indirect
google.golang.org/protobuf v1.26.0 // indirect
)

View File

@ -1,5 +1,5 @@
# syntax=docker.io/docker/dockerfile:experimental@sha256:de85b2f3a3e8a2f7fe48e8e84a65f6fdd5cd5183afa6412fff9caa6871649c44
FROM docker.io/golang:1.15.6@sha256:de97bab9325c4c3904f8f7fec8eb469169a1d247bdc97dcab38c2c75cf4b4c5d
FROM docker.io/golang:1.17.0@sha256:06e92e576fc7a7067a268d47727f3083c0a564331bfcbfdde633157fc91fb17d
WORKDIR /app

View File

@ -1,6 +1,6 @@
module github.com/certusone/wormhole/node
go 1.16
go 1.17
require (
cloud.google.com/go/bigtable v1.10.1

View File

@ -1,6 +1,6 @@
module github.com/certusone/wormhole/node/tools
go 1.16
go 1.17
require (
github.com/bufbuild/buf v0.48.2