-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* frontend - go 1.17.5 * productcatalogservice - go 1.17.5 * shippingservice - go 1.17.5 * checkoutservice - go 1.17.5
- Loading branch information
1 parent
e8e1ea3
commit 92d8f49
Showing
12 changed files
with
2,284 additions
and
246 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,22 +1,42 @@ | ||
module github.com/GoogleCloudPlatform/microservices-demo/src/checkoutservice | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go v0.40.0 | ||
contrib.go.opencensus.io/exporter/jaeger v0.2.0 | ||
contrib.go.opencensus.io/exporter/stackdriver v0.5.0 | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f // indirect | ||
github.com/google/uuid v1.1.1 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/uber/jaeger-client-go v2.21.1+incompatible // indirect | ||
go.opencensus.io v0.21.0 | ||
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 | ||
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect | ||
google.golang.org/api v0.7.1-0.20190709010654-aae1d1b89c27 // indirect | ||
google.golang.org/appengine v1.6.1 // indirect | ||
google.golang.org/genproto v0.0.0-20190708153700-3bdd9d9f5532 // indirect | ||
google.golang.org/grpc v1.22.0 | ||
cloud.google.com/go/profiler v0.1.1 | ||
contrib.go.opencensus.io/exporter/jaeger v0.2.1 | ||
contrib.go.opencensus.io/exporter/stackdriver v0.13.10 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/uuid v1.1.2 | ||
github.com/sirupsen/logrus v1.8.1 | ||
go.opencensus.io v0.23.0 | ||
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 | ||
google.golang.org/grpc v1.40.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.99.0 // indirect | ||
cloud.google.com/go/monitoring v1.1.0 // indirect | ||
cloud.google.com/go/trace v1.0.0 // indirect | ||
github.com/aws/aws-sdk-go v1.37.0 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403 // indirect | ||
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed // indirect | ||
github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.1.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/google/pprof v0.0.0-20211008130755-947d60d73cc0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/api v0.61.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
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,24 +1,44 @@ | ||
module github.com/GoogleCloudPlatform/microservices-demo/src/frontend | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go v0.40.0 | ||
contrib.go.opencensus.io/exporter/jaeger v0.2.0 | ||
contrib.go.opencensus.io/exporter/stackdriver v0.5.0 | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f // indirect | ||
github.com/google/uuid v1.1.1 | ||
github.com/gorilla/mux v1.7.3 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/pkg/errors v0.8.1 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/uber/jaeger-client-go v2.21.1+incompatible // indirect | ||
go.opencensus.io v0.21.0 | ||
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 | ||
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect | ||
google.golang.org/api v0.7.1-0.20190709010654-aae1d1b89c27 // indirect | ||
google.golang.org/appengine v1.6.1 // indirect | ||
google.golang.org/genproto v0.0.0-20190708153700-3bdd9d9f5532 // indirect | ||
google.golang.org/grpc v1.22.0 | ||
cloud.google.com/go v0.99.0 | ||
cloud.google.com/go/profiler v0.1.1 | ||
contrib.go.opencensus.io/exporter/jaeger v0.2.1 | ||
contrib.go.opencensus.io/exporter/stackdriver v0.13.10 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.8.1 | ||
go.opencensus.io v0.23.0 | ||
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 | ||
google.golang.org/grpc v1.43.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/monitoring v1.1.0 // indirect | ||
cloud.google.com/go/trace v1.0.0 // indirect | ||
github.com/aws/aws-sdk-go v1.37.0 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4 // indirect | ||
github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1 // indirect | ||
github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.1.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/google/pprof v0.0.0-20211008130755-947d60d73cc0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/api v0.61.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) |
Oops, something went wrong.