Skip to content

Commit

Permalink
Merge pull request #19 from ThreeDotsLabs/bump-go-version
Browse files Browse the repository at this point in the history
Bump deps
  • Loading branch information
m110 authored Oct 9, 2021
2 parents 6c919f9 + 8415b5c commit e1ca59c
Show file tree
Hide file tree
Showing 5 changed files with 275 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ version: 2
jobs:
build:
docker:
- image: golang:1.12
- image: golang:1.17
steps:
- checkout
- run: go build ./...
Expand Down
2 changes: 1 addition & 1 deletion .circleci/docker-compose.override.yml
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
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: '3'
services:
googlecloud:
image: google/cloud-sdk:298.0.0
image: google/cloud-sdk:360.0.0
entrypoint: gcloud --quiet beta emulators pubsub start --host-port=0.0.0.0:8085 --verbosity=debug --log-http
ports:
- 8085:8085
Expand Down
47 changes: 33 additions & 14 deletions go.mod
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
)
Loading

0 comments on commit e1ca59c

Please sign in to comment.