diff --git a/CHANGELOG.md b/CHANGELOG.md index 63c554b6a..7e9754120 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.10.7] - 2021-11-02 + +### Added +- Add MySQL 8.0.27 Support (#330) +- Add Helm charts (#317) +- Support krew release (#312) + +### Fixed +- Fix available status when all replicas are not ready (#323) +- Dynamically adjust part size when uploading backup files (#319) +- Disable replication_sender_observe_commit_only (#333) +- kubectl-moco: Fix crash bug when kubeconfig file does not exist (#327) +- kubeclt-moco: Import auth plugin (#328) +- kubectl-moco: Remove redundant error message (#329) + ## [0.10.6] - 2021-10-05 ### Added @@ -252,7 +267,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.6...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.10.7...HEAD +[0.10.7]: https://github.com/cybozu-go/moco/compare/v0.10.6...v0.10.7 [0.10.6]: https://github.com/cybozu-go/moco/compare/v0.10.5...v0.10.6 [0.10.5]: https://github.com/cybozu-go/moco/compare/v0.10.4...v0.10.5 [0.10.4]: https://github.com/cybozu-go/moco/compare/v0.10.3...v0.10.4 diff --git a/kustomization.yaml b/kustomization.yaml index eed068dd5..650b9f545 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.10.6 + newTag: 0.10.7 diff --git a/version.go b/version.go index 0a94d8207..ee715b28a 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.10.6" + Version = "0.10.7" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "quay.io/cybozu/fluent-bit:1.7.8.1"