-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from getamis/upgrade-go-1.19
Upgrade go 1.19
- Loading branch information
Showing
4 changed files
with
900 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
language: go | ||
|
||
go: | ||
- "1.16" | ||
- "1.19" | ||
|
||
services: | ||
- docker | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,112 @@ | ||
module github.com/getamis/sirius | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect | ||
github.com/Microsoft/go-winio v0.4.13 // indirect | ||
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect | ||
github.com/aws/aws-sdk-go v1.19.39 | ||
github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc // indirect | ||
github.com/denisenkom/go-mssqldb v0.0.0-20190412130859-3b1d194e553a // indirect | ||
github.com/docker/docker v1.4.2-0.20171124023022-dfe2c023a34d // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect | ||
github.com/frankban/quicktest v1.4.1 // indirect | ||
github.com/fsouza/go-dockerclient v1.2.0 | ||
github.com/aws/aws-sdk-go v1.44.221 | ||
github.com/fsouza/go-dockerclient v1.9.0 | ||
github.com/go-sql-driver/mysql v1.4.1 | ||
github.com/go-stack/stack v1.8.0 | ||
github.com/gofrs/uuid v4.0.0+incompatible // indirect | ||
github.com/gogo/protobuf v1.3.2 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/gotestyourself/gotestyourself v2.2.0+incompatible // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 | ||
github.com/grpc-ecosystem/grpc-gateway v1.16.0 | ||
github.com/hashicorp/go-hclog v0.10.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.6.3 // indirect | ||
github.com/hashicorp/vault/api v1.0.5-0.20190909201928-35325e2c3262 | ||
github.com/jinzhu/gorm v1.9.2 | ||
github.com/jinzhu/inflection v0.0.0-20170102125226-1c35d901db3d // indirect | ||
github.com/jinzhu/now v1.1.2 // indirect | ||
github.com/lib/pq v1.2.0 | ||
github.com/mattn/go-sqlite3 v1.14.7 // indirect | ||
github.com/onsi/ginkgo v1.7.0 | ||
github.com/onsi/gomega v1.4.3 | ||
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect | ||
github.com/opencontainers/image-spec v1.0.1 // indirect | ||
github.com/opencontainers/runc v0.1.1 // indirect | ||
github.com/opencontainers/selinux v1.8.2 // indirect | ||
github.com/pierrec/lz4 v2.3.0+incompatible // indirect | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/onsi/ginkgo v1.12.1 | ||
github.com/onsi/gomega v1.10.3 | ||
github.com/prometheus/client_golang v1.11.1 | ||
github.com/rollbar/rollbar-go v1.0.1 | ||
github.com/rs/cors v1.4.0 | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/urfave/negroni v0.3.0 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/urfave/negroni/v3 v3.0.0 | ||
go.etcd.io/etcd/client/v3 v3.5.0 | ||
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 | ||
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c | ||
google.golang.org/grpc v1.38.0 | ||
golang.org/x/net v0.8.0 | ||
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 | ||
google.golang.org/grpc v1.47.0 | ||
gopkg.in/redis.v5 v5.2.9 | ||
gopkg.in/square/go-jose.v2 v2.4.0 // indirect | ||
gotest.tools v2.2.0+incompatible // indirect | ||
) | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Microsoft/go-winio v0.6.0 // indirect | ||
github.com/Microsoft/hcsshim v0.9.5 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/containerd/cgroups v1.0.4 // indirect | ||
github.com/containerd/containerd v1.6.10 // indirect | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd/v22 v22.3.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/denisenkom/go-mssqldb v0.0.0-20190412130859-3b1d194e553a // indirect | ||
github.com/docker/docker v20.10.21+incompatible // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect | ||
github.com/fatih/color v1.7.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gofrs/uuid v4.0.0+incompatible // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-hclog v0.10.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.6.3 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.1 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/vault/sdk v0.1.14-0.20190909201848-e0fbf9b652e2 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jinzhu/inflection v0.0.0-20170102125226-1c35d901db3d // indirect | ||
github.com/jinzhu/now v1.1.2 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/mattn/go-colorable v0.1.4 // indirect | ||
github.com/mattn/go-isatty v0.0.10 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/moby/sys/mount v0.3.3 // indirect | ||
github.com/moby/sys/mountinfo v0.6.2 // indirect | ||
github.com/moby/term v0.0.0-20221128092401-c43b287e0e0f // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/nxadm/tail v1.4.4 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect | ||
github.com/opencontainers/runc v1.1.4 // indirect | ||
github.com/pierrec/lz4 v2.3.0+incompatible // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.30.0 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.0 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.0 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.17.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
gopkg.in/square/go-jose.v2 v2.5.1 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.