From 9dd85f4123e7d8716f082f6f995fc341778018b3 Mon Sep 17 00:00:00 2001 From: Masayuki Ishii Date: Wed, 9 Feb 2022 09:17:27 +0000 Subject: [PATCH] Bump version to 0.11.0 --- CHANGELOG.md | 22 +++++++++++++++++++++- kustomization.yaml | 2 +- version.go | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7db52bc6..2be9b3cff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.11.0] - 2022-03-07 + +### Added +- Add MySQLCluster v1beta2 (#350, #359, #376) +- Support MySQL 8.0.28 (#369) + +### Changed +- Using SSA with moco-controller (#364, #372, #373, #374, #379) +- Update krew description (#351) +- Update klog to v2 (#355) +- Update Fluent Bit container image to v1.8.11 (#357) + +### Fixed +- Stop using Reconcile's context for ClusterManager (#353) +- backup: calculate disk usage accurately (#356) +- Do not stop gathering cluster status if one or more Pods are pending (#366) +- Add nil check when restoring errant replica status (#367) +- Update how-to doc to grant PROXY when replicating cluster from outside (#381) + ## [0.10.9] - 2021-11-18 ### Fixed @@ -282,7 +301,8 @@ The `MySQLCluster` created by MOCO `< v0.5.0` has no compatibility with `>= v0.5 - Bootstrap a vanilla MySQL cluster with no replicas (#2). -[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.10.9...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/cybozu-go/moco/compare/v0.10.9...v0.11.0 [0.10.9]: https://github.com/cybozu-go/moco/compare/v0.10.8...v0.10.9 [0.10.8]: https://github.com/cybozu-go/moco/compare/v0.10.7...v0.10.8 [0.10.7]: https://github.com/cybozu-go/moco/compare/v0.10.6...v0.10.7 diff --git a/kustomization.yaml b/kustomization.yaml index cf0586382..2f9e11258 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.10.9 + newTag: 0.11.0 diff --git a/version.go b/version.go index 9deee4986..2356ae0e1 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.10.9" + Version = "0.11.0" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "quay.io/cybozu/fluent-bit:1.8.11.1"