Skip to content

Commit 7520be1

Browse files
authored
Bumped Go version to 1.18 (#1065)
* Bumped Go version to 1.18 * Release notes
1 parent 2c79615 commit 7520be1

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

docs/RELEASE_NOTES.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ If above conditions are met, it is strongly advised to upgrade the MongoDB Kuber
1212
- Bug fixes
1313
- Fixed ignoring changes to existing volumes in the StatefulSet, i.e. changes of the volumes' underlying secret. This could cause that TLS enabled MongoDB deployment was not able to locate TLS certificates when upgrading the operator to versions 0.7.3 or 0.7.4.
1414

15+
- Security fixes
16+
- The operator, readiness and versionhook binaries are now built with 1.18.5 which addresses security issues.
1517

1618
# MongoDB Kubernetes Operator 0.7.4
1719

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/mongodb/mongodb-kubernetes-operator
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/blang/semver v3.5.1+incompatible

scripts/dev/templates/readiness/Dockerfile.builder

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18.4-alpine as builder
1+
FROM golang:1.18.5-alpine as builder
22

33
COPY ./cmd/readiness /build/
44
COPY ./pkg /build/pkg

scripts/dev/templates/versionhook/Dockerfile.builder

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.6 as builder
1+
FROM golang:1.18.5 as builder
22

33
ENV GO111MODULE=on
44
ENV GOFLAGS="-mod=vendor"

0 commit comments

Comments
 (0)