Skip to content

Bumped Go version to 1.18 #1065

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ If above conditions are met, it is strongly advised to upgrade the MongoDB Kuber
- Bug fixes
- 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.

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

# MongoDB Kubernetes Operator 0.7.4

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mongodb/mongodb-kubernetes-operator

go 1.17
go 1.18

require (
github.com/blang/semver v3.5.1+incompatible
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev/templates/readiness/Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.4-alpine as builder
FROM golang:1.18.5-alpine as builder

COPY ./cmd/readiness /build/
COPY ./pkg /build/pkg
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev/templates/versionhook/Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17.6 as builder
FROM golang:1.18.5 as builder

ENV GO111MODULE=on
ENV GOFLAGS="-mod=vendor"
Expand Down