From f30b0970ed11ca720f5e7df0311a209728fe8510 Mon Sep 17 00:00:00 2001 From: zoetrope Date: Tue, 14 Nov 2023 16:28:34 +0900 Subject: [PATCH] Bump version to 0.19.0 --- CHANGELOG.md | 19 ++++++++++++++++++- kustomization.yaml | 2 +- version.go | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3abe9d4bc..7e97244ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.19.0] - 2023-11-14 + +### Breaking Changes + +⚠️ The MOCO API version v1beta1 is no longer served. +If you deploy a custom resource that contains v1beta1, it will fail. +Please update the version of your custom resources before upgrading MOCO to v0.19.0. + +### Fixed + +- Pass password via command arguments on backup to avoid partial log line. [#605](https://github.com/cybozu-go/moco/pull/605) + +### Changed + +- The API version v1beta1 is no longer served. [#608](https://github.com/cybozu-go/moco/pull/608) + ## [0.18.1] - 2023-11-06 The release workflow for 0.18.0 failed due to an error, and will be corrected and re-released as 0.18.1. @@ -509,7 +525,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.18.1...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.19.0...HEAD +[0.19.0]: https://github.com/cybozu-go/moco/compare/v0.18.1...v0.19.0 [0.18.1]: https://github.com/cybozu-go/moco/compare/v0.18.0...v0.18.1 [0.18.0]: https://github.com/cybozu-go/moco/compare/v0.17.0...v0.18.0 [0.17.0]: https://github.com/cybozu-go/moco/compare/v0.16.1...v0.17.0 diff --git a/kustomization.yaml b/kustomization.yaml index 0fa86b9d9..abd2b9ec0 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.18.1 + newTag: 0.19.0 diff --git a/version.go b/version.go index cb65b0473..d977b5e38 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.18.1" + Version = "0.19.0" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "ghcr.io/cybozu-go/moco/fluent-bit:2.1.8.2"