Skip to content

Commit 8a688ec

Browse files
Merge pull request #756 from cybozu-go/bump-v0.25.0
Bump version to v0.25.0
2 parents 1471dee + 2db2ed7 commit 8a688ec

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGELOG.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,32 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [0.25.0] - 2024-11-20
9+
10+
### Changed
11+
- Set timeoutSeconds to 50sec [#746](https://github.com/cybozu-go/moco/pull/746)
12+
- Migrate to Ginkgo v2 [#750](https://github.com/cybozu-go/moco/pull/750)
13+
- pods are deleted without waiting for completion when switchover takes a long time [#751](https://github.com/cybozu-go/moco/pull/751)
14+
15+
### Added
16+
- build MySQL and mysqld_exporter images [#754](https://github.com/cybozu-go/moco/pull/754)
17+
818
## [0.24.1] - 2024-09-20
919

1020
### Changed
1121
- Update fluent-bit image to 3.1.7 [#738](https://github.com/cybozu-go/moco/pull/738)
1222
- Add support for k8s 1.30 and 1.31 [#727](https://github.com/cybozu-go/moco/pull/727)
1323
- Bump google.golang.org/grpc from 1.64.0 to 1.64.1 [719](https://github.com/cybozu-go/moco/pull/719)
1424

15-
## Added
25+
### Added
1626
- Add mysql-configmap-history-limit flags [#733](https://github.com/cybozu-go/moco/pull/733)
1727
- rebuild mysql image and add mysqld 8.0.39, 8.4.2 [#728](https://github.com/cybozu-go/moco/pull/728)
1828
- Add statefulset partition controller [#633](https://github.com/cybozu-go/moco/pull/633),[#628](https://github.com/cybozu-go/moco/pull/628)
1929
- Load only the named schema from the dump files [#726](https://github.com/cybozu-go/moco/pull/726)
2030
- Add procedure to set cluster to read-only [#724](https://github.com/cybozu-go/moco/pull/724)
2131
- Allows customization of service ports [#723](https://github.com/cybozu-go/moco/pull/723)
2232

23-
## Fixed
33+
### Fixed
2434
- Add a line break to kubectl-moco start/stop command's message [#737](https://github.com/cybozu-go/moco/pull/737)
2535
- Cannot replicate because the master purged required binary logs [#731](https://github.com/cybozu-go/moco/pull/731)
2636
- Add missing assertion method [#709](https://github.com/cybozu-go/moco/pull/709)
@@ -640,7 +650,8 @@ The `MySQLCluster` created by MOCO `< v0.5.0` has no compatibility with `>= v0.5
640650

641651
- Bootstrap a vanilla MySQL cluster with no replicas (#2).
642652

643-
[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.24.1...HEAD
653+
[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.25.0...HEAD
654+
[0.25.0]: https://github.com/cybozu-go/moco/compare/v0.24.1...v0.25.0
644655
[0.24.1]: https://github.com/cybozu-go/moco/compare/v0.23.2...v0.24.1
645656
[0.23.2]: https://github.com/cybozu-go/moco/compare/v0.23.1...v0.23.2
646657
[0.23.1]: https://github.com/cybozu-go/moco/compare/v0.21.1...v0.23.1

kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ resources:
33

44
images:
55
- name: ghcr.io/cybozu-go/moco
6-
newTag: 0.24.1
6+
newTag: 0.25.0

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package moco
22

33
const (
44
// Version is the MOCO version
5-
Version = "0.24.1"
5+
Version = "0.25.0"
66

77
// FluentBitImage is the image for slow-log sidecar container.
88
FluentBitImage = "ghcr.io/cybozu-go/moco/fluent-bit:3.1.7.1"

0 commit comments

Comments
 (0)