From 160a72e4298bbc2b22cb886c516a5c7138ab511d Mon Sep 17 00:00:00 2001 From: yamatcha Date: Mon, 2 Dec 2024 05:19:47 +0000 Subject: [PATCH] Bump version to v0.25.1 --- CHANGELOG.md | 18 ++++++++++++++++-- kustomization.yaml | 2 +- version.go | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29d9fe41..39c55aa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## [0.25.0] - 2024-11-20 +## [0.25.1] - 2024-12-03 + +### Breaking Changes +[#751](https://github.com/cybozu-go/moco/pull/751), included in this release, needs ValidatingAdmissionPolicy. But this feature is not enabled default when K8s version < 1.30. So you have to enable the feature manually when you use those version. ### Changed - Set timeoutSeconds to 50sec [#746](https://github.com/cybozu-go/moco/pull/746) @@ -14,6 +17,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - build MySQL and mysqld_exporter images [#754](https://github.com/cybozu-go/moco/pull/754) +- Add log-rotation-size [#762](https://github.com/cybozu-go/moco/pull/762) + +### Fixed +- issue-759: Select the appropriate apiVersion [#760](https://github.com/cybozu-go/moco/pull/760) + + +## [0.25.0] - 2024-11-20 + +This release was aborted due to a bug. +https://github.com/cybozu-go/moco/issues/759 ## [0.24.1] - 2024-09-20 @@ -650,7 +663,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.25.0...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.25.1...HEAD +[0.25.1]: https://github.com/cybozu-go/moco/compare/v0.25.0...v0.25.1 [0.25.0]: https://github.com/cybozu-go/moco/compare/v0.24.1...v0.25.0 [0.24.1]: https://github.com/cybozu-go/moco/compare/v0.23.2...v0.24.1 [0.23.2]: https://github.com/cybozu-go/moco/compare/v0.23.1...v0.23.2 diff --git a/kustomization.yaml b/kustomization.yaml index b5e6e7b0..0899107b 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.25.0 + newTag: 0.25.1 diff --git a/version.go b/version.go index 11e79e97..d92794b9 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.25.0" + Version = "0.25.1" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "ghcr.io/cybozu-go/moco/fluent-bit:3.1.7.1"