Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.26.0 #784

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ resources:

images:
- name: ghcr.io/cybozu-go/moco
newTag: 0.25.1
newTag: 0.26.0
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down