Skip to content

Commit 92d8f49

Browse files
authoredDec 22, 2021
* frontend - go 1.17.5 * productcatalogservice - go 1.17.5 * shippingservice - go 1.17.5 * checkoutservice - go 1.17.5
1 parent e8e1ea3 commit 92d8f49

File tree

12 files changed

+2284
-246
lines changed

12 files changed

+2284
-246
lines changed
 

‎src/checkoutservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.15-alpine as builder
15+
FROM golang:1.17.5-alpine as builder
1616
RUN apk add --no-cache ca-certificates git
1717
RUN apk add build-base
1818
WORKDIR /src

‎src/checkoutservice/go.mod

+37-17
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,42 @@
11
module github.com/GoogleCloudPlatform/microservices-demo/src/checkoutservice
22

3-
go 1.15
3+
go 1.17
44

55
require (
6-
cloud.google.com/go v0.40.0
7-
contrib.go.opencensus.io/exporter/jaeger v0.2.0
8-
contrib.go.opencensus.io/exporter/stackdriver v0.5.0
9-
github.com/golang/protobuf v1.3.1
10-
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f // indirect
11-
github.com/google/uuid v1.1.1
12-
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
13-
github.com/sirupsen/logrus v1.4.2
14-
github.com/uber/jaeger-client-go v2.21.1+incompatible // indirect
15-
go.opencensus.io v0.21.0
16-
golang.org/x/net v0.0.0-20190628185345-da137c7871d7
17-
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect
18-
google.golang.org/api v0.7.1-0.20190709010654-aae1d1b89c27 // indirect
19-
google.golang.org/appengine v1.6.1 // indirect
20-
google.golang.org/genproto v0.0.0-20190708153700-3bdd9d9f5532 // indirect
21-
google.golang.org/grpc v1.22.0
6+
cloud.google.com/go/profiler v0.1.1
7+
contrib.go.opencensus.io/exporter/jaeger v0.2.1
8+
contrib.go.opencensus.io/exporter/stackdriver v0.13.10
9+
github.com/golang/protobuf v1.5.2
10+
github.com/google/uuid v1.1.2
11+
github.com/sirupsen/logrus v1.8.1
12+
go.opencensus.io v0.23.0
13+
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420
14+
google.golang.org/grpc v1.40.0
15+
)
16+
17+
require (
18+
cloud.google.com/go v0.99.0 // indirect
19+
cloud.google.com/go/monitoring v1.1.0 // indirect
20+
cloud.google.com/go/trace v1.0.0 // indirect
21+
github.com/aws/aws-sdk-go v1.37.0 // indirect
22+
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
23+
github.com/cespare/xxhash v1.1.0 // indirect
24+
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403 // indirect
25+
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed // indirect
26+
github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0 // indirect
27+
github.com/envoyproxy/protoc-gen-validate v0.1.0 // indirect
28+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
29+
github.com/google/go-cmp v0.5.6 // indirect
30+
github.com/google/pprof v0.0.0-20211008130755-947d60d73cc0 // indirect
31+
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
32+
github.com/jmespath/go-jmespath v0.4.0 // indirect
33+
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect
34+
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
35+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
36+
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect
37+
golang.org/x/text v0.3.6 // indirect
38+
google.golang.org/api v0.61.0 // indirect
39+
google.golang.org/appengine v1.6.7 // indirect
40+
google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0 // indirect
41+
google.golang.org/protobuf v1.27.1 // indirect
2242
)

‎src/checkoutservice/go.sum

+527-43
Large diffs are not rendered by default.

‎src/frontend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.15-alpine as builder
15+
FROM golang:1.17.5-alpine as builder
1616
RUN apk add --no-cache ca-certificates git
1717
RUN apk add build-base
1818
WORKDIR /src

‎src/frontend/go.mod

+39-19
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,44 @@
11
module github.com/GoogleCloudPlatform/microservices-demo/src/frontend
22

3-
go 1.15
3+
go 1.17
44

55
require (
6-
cloud.google.com/go v0.40.0
7-
contrib.go.opencensus.io/exporter/jaeger v0.2.0
8-
contrib.go.opencensus.io/exporter/stackdriver v0.5.0
9-
github.com/golang/protobuf v1.3.1
10-
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f // indirect
11-
github.com/google/uuid v1.1.1
12-
github.com/gorilla/mux v1.7.3
13-
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
14-
github.com/pkg/errors v0.8.1
15-
github.com/sirupsen/logrus v1.4.2
16-
github.com/uber/jaeger-client-go v2.21.1+incompatible // indirect
17-
go.opencensus.io v0.21.0
18-
golang.org/x/net v0.0.0-20190628185345-da137c7871d7
19-
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect
20-
google.golang.org/api v0.7.1-0.20190709010654-aae1d1b89c27 // indirect
21-
google.golang.org/appengine v1.6.1 // indirect
22-
google.golang.org/genproto v0.0.0-20190708153700-3bdd9d9f5532 // indirect
23-
google.golang.org/grpc v1.22.0
6+
cloud.google.com/go v0.99.0
7+
cloud.google.com/go/profiler v0.1.1
8+
contrib.go.opencensus.io/exporter/jaeger v0.2.1
9+
contrib.go.opencensus.io/exporter/stackdriver v0.13.10
10+
github.com/golang/protobuf v1.5.2
11+
github.com/google/uuid v1.3.0
12+
github.com/gorilla/mux v1.8.0
13+
github.com/pkg/errors v0.9.1
14+
github.com/sirupsen/logrus v1.8.1
15+
go.opencensus.io v0.23.0
16+
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420
17+
google.golang.org/grpc v1.43.0
2418
)
19+
20+
require (
21+
cloud.google.com/go/monitoring v1.1.0 // indirect
22+
cloud.google.com/go/trace v1.0.0 // indirect
23+
github.com/aws/aws-sdk-go v1.37.0 // indirect
24+
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
25+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
26+
github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4 // indirect
27+
github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1 // indirect
28+
github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021 // indirect
29+
github.com/envoyproxy/protoc-gen-validate v0.1.0 // indirect
30+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
31+
github.com/google/go-cmp v0.5.6 // indirect
32+
github.com/google/pprof v0.0.0-20211008130755-947d60d73cc0 // indirect
33+
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
34+
github.com/jmespath/go-jmespath v0.4.0 // indirect
35+
github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect
36+
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
37+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
38+
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect
39+
golang.org/x/text v0.3.6 // indirect
40+
google.golang.org/api v0.61.0 // indirect
41+
google.golang.org/appengine v1.6.7 // indirect
42+
google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0 // indirect
43+
google.golang.org/protobuf v1.27.1 // indirect
44+
)

0 commit comments

Comments
 (0)
Please sign in to comment.