From 8791523d042a0bb2fd3d0ce650b28a1a23e94731 Mon Sep 17 00:00:00 2001 From: yamatcha Date: Fri, 28 Feb 2025 06:19:56 +0000 Subject: [PATCH] Bump version to v0.26.0 --- CHANGELOG.md | 28 +++++++++++++++++++++++++++- kustomization.yaml | 2 +- version.go | 2 +- 3 files changed, 29 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39c55aa6..e194b5bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,31 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.26.0] - 2025-03-05 +### Breaking Changes + +### ⚠️ Breaking Changes +- Support MySQL 8.4.4/8.0.41 [#775](https://github.com/cybozu-go/moco/pull/775), [#773](https://github.com/cybozu-go/moco/pull/773), [#774](https://github.com/cybozu-go/moco/pull/774) +- Support k8s 1.32 [#770](https://github.com/cybozu-go/moco/pull/770) + +### ⚠️ End support for older versions + - MySQL versions supported after this release are 8.0.28, 8.0.39, 8.0.40, 8.0.41 and 8.4.4 + - K8s versions supported after this release are 1.30, 1.31, 1.32 + +### Changed +- Update mysqld_exporter image [#765](https://github.com/cybozu-go/moco/pull/765) +- Update moco-agent [#770](https://github.com/cybozu-go/moco/pull/770) +- Run e2e test in parallel [#767](https://github.com/cybozu-go/moco/pull/767) + +### Added +- Allow overwriteContainers to specify a securityContext [#778](https://github.com/cybozu-go/moco/pull/778) + +### Fixed +- update known issues [#769](https://github.com/cybozu-go/moco/pull/769) +- Narrow down the target of StatefulSetPartitionReconciler [#781](https://github.com/cybozu-go/moco/pull/781) +- docs: fix spelling in summary.md [#785](https://github.com/cybozu-go/moco/pull/785) + - Our thanks to [@sebastian-philipp](https://github.com/sebastian-philipp) for the contribution + ## [0.25.1] - 2024-12-03 ### Breaking Changes @@ -663,7 +688,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.1...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.26.0...HEAD +[0.26.0]: https://github.com/cybozu-go/moco/compare/v0.25.1...v0.26.0 [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 diff --git a/kustomization.yaml b/kustomization.yaml index 0899107b..5c6eaa4d 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.25.1 + newTag: 0.26.0 diff --git a/version.go b/version.go index e10c3650..187db12c 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package moco const ( // Version is the MOCO version - Version = "0.25.1" + Version = "0.26.0" // FluentBitImage is the image for slow-log sidecar container. FluentBitImage = "ghcr.io/cybozu-go/moco/fluent-bit:3.1.7.1"