-
Notifications
You must be signed in to change notification settings - Fork 24
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 #19 from ThreeDotsLabs/bump-go-version
Bump deps
- Loading branch information
Showing
5 changed files
with
275 additions
and
62 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
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 @@ | ||
version: '3' | ||
services: | ||
watermill: | ||
image: golang:1.12 | ||
image: golang:1.17 | ||
command: /bin/true | ||
volumes: | ||
- .:/app | ||
|
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
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,19 +1,38 @@ | ||
module github.com/ThreeDotsLabs/watermill-googlecloud | ||
|
||
go 1.12 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go v0.63.0 // indirect | ||
cloud.google.com/go/pubsub v1.6.1 | ||
github.com/ThreeDotsLabs/watermill v1.2.0-rc.3 | ||
github.com/cenkalti/backoff/v3 v3.0.0 | ||
github.com/hashicorp/go-multierror v1.0.0 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/stretchr/testify v1.4.0 | ||
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc // indirect | ||
golang.org/x/sys v0.0.0-20200817155316-9781c653f443 // indirect | ||
golang.org/x/tools v0.0.0-20200818005847-188abfa75333 // indirect | ||
google.golang.org/api v0.30.0 | ||
google.golang.org/genproto v0.0.0-20200815001618-f69a88009b70 // indirect | ||
google.golang.org/grpc v1.31.0 | ||
cloud.google.com/go v0.97.0 // indirect | ||
cloud.google.com/go/pubsub v1.17.0 | ||
github.com/ThreeDotsLabs/watermill v1.2.0-rc.5 | ||
github.com/cenkalti/backoff/v3 v3.2.2 | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/net v0.0.0-20211008194852-3b03d305991f // indirect | ||
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/api v0.58.0 | ||
google.golang.org/genproto v0.0.0-20211008145708-270636b82663 // indirect | ||
google.golang.org/grpc v1.41.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // 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.1.1 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
Oops, something went wrong.