Skip to content

Commit

Permalink
Merge pull request #480 from cybozu-go/bump-v0.14.0
Browse files Browse the repository at this point in the history
Bump version to 0.14.0
  • Loading branch information
masa213f authored Nov 29, 2022
2 parents dee1730 + 23c9a01 commit 2b69ec9
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
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.14.0] - 2022-11-28

### Breaking Changes
This release allows MOCO users to leave the moco-init binary out of a custom mysqld container image.
Now the moco-init binary is copied from the moco-agent container through an emptyDir volume.

To maintain backward compatibility, the [`moco-mysql` images](https://quay.io/repository/cybozu/moco-mysql?tab=tags) provided by Cybozu still contain the old moco-init binary.

### Added
- Copy moco-init binary from moco-agent image [#461](https://github.com/cybozu-go/moco/pull/461)
- Support Kubernetes v1.25 [#467](https://github.com/cybozu-go/moco/pull/467)
- Support MySQL 8.0.31 [#479](https://github.com/cybozu-go/moco/pull/479)
- Introduce completion [#470](https://github.com/cybozu-go/moco/pull/470), [#473](https://github.com/cybozu-go/moco/pull/473)
- Uses a probe defined by the user [#472](https://github.com/cybozu-go/moco/pull/472)

### Fixed
- Ignore MySQL error 1094 when killing connections [#476](https://github.com/cybozu-go/moco/pull/476)
- Detect differences of service appropriately [#457](https://github.com/cybozu-go/moco/pull/457)
- Normalize time values in Certificate resource [#460](https://github.com/cybozu-go/moco/pull/460)

### Changed
- Use reusing workflow [#465](https://github.com/cybozu-go/moco/pull/465)
- Stop using set-output [#469](https://github.com/cybozu-go/moco/pull/469)
- Update dependencies [#478](https://github.com/cybozu-go/moco/pull/478)

## [0.13.0] - 2022-09-12

### Added
Expand Down Expand Up @@ -354,7 +379,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.13.0...HEAD
[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.14.0...HEAD
[0.14.0]: https://github.com/cybozu-go/moco/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/cybozu-go/moco/compare/v0.12.1...v0.13.0
[0.12.1]: https://github.com/cybozu-go/moco/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/cybozu-go/moco/compare/v0.11.1...v0.12.0
Expand Down
5 changes: 5 additions & 0 deletions charts/moco/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added
- Add topologySpreadConstraints helm chart value [#455](https://github.com/cybozu-go/moco/pull/455)
- Add extraArgs to helm values [#466](https://github.com/cybozu-go/moco/pull/466)
- Specify minimum Kubernetes version [#468](https://github.com/cybozu-go/moco/pull/468)

## [0.3.0] - 2022-09-12

This release has breaking changes to the helm chart.
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.13.0
newTag: 0.14.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.13.0"
Version = "0.14.0"

// FluentBitImage is the image for slow-log sidecar container.
FluentBitImage = "quay.io/cybozu/fluent-bit:1.9.7.2"
Expand Down

0 comments on commit 2b69ec9

Please sign in to comment.