Skip to content

Commit

Permalink
Merge pull request #596 from cybozu-go/bump-v0.18.0
Browse files Browse the repository at this point in the history
Bump version to 0.18.0
  • Loading branch information
kmdkuk authored Nov 2, 2023
2 parents 3bad1f5 + 0e7299e commit 6cda238
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
32 changes: 31 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,38 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.18.0] - 2023-11-02

### Notification

With this release, the storage version of CRD has been changed from `v1beta1` to `v1beta2`. [#586](https://github.com/cybozu-go/moco/pull/586)
In addition, `v1beta1` has been deprecated and will be removed in the next version. [#592](https://github.com/cybozu-go/moco/pull/592)

### Added
- Add MySQL 8.0.33 an 8.0.34 containers [#574](https://github.com/cybozu-go/moco/pull/574)
- Support MySQL 8.0.33 and 8.0.34 [#575](https://github.com/cybozu-go/moco/pull/575)
- Enable cpu specification in jobConfig [#582](https://github.com/cybozu-go/moco/pull/582)
- Add tls settings for BackupPolicy [#580](https://github.com/cybozu-go/moco/pull/580)

### Changed
- api: change the storage version to v1beta2 [#586](https://github.com/cybozu-go/moco/pull/586)
- api: add deprecatedversion marker [#592](https://github.com/cybozu-go/moco/pull/592)
- Build moco-controller with go 1.21 [#571](https://github.com/cybozu-go/moco/pull/571)
- Build moco-controller and moco-backup with ubuntu-22.04 [#575](https://github.com/cybozu-go/moco/pull/575)
- Bump golang.org/x/net from 0.10.0 to 0.17.0 [#579](https://github.com/cybozu-go/moco/pull/579)
- Bump google.golang.org/grpc from 1.55.0 to 1.56.3 [#594](https://github.com/cybozu-go/moco/pull/594)

### Fixed
- Use Gomega matcher in Eventually and check pods' labels [#584](https://github.com/cybozu-go/moco/pull/584)
- Remove copy code of FindTopRunner [#585](https://github.com/cybozu-go/moco/pull/585)
- Deduplicate SSA related code [#583](https://github.com/cybozu-go/moco/pull/583)
- Kill old connections when demoting primary [#561](https://github.com/cybozu-go/moco/pull/561)
- Fix documentations [#590](https://github.com/cybozu-go/moco/pull/590), [#589](https://github.com/cybozu-go/moco/pull/589)
- Fix deprecated Goreleaser's options [#591](https://github.com/cybozu-go/moco/pull/591)
- Run e2e tests on larger runners [#593](https://github.com/cybozu-go/moco/pull/593)
- Revert "Fix flaky test" [#595](https://github.com/cybozu-go/moco/pull/595)
- Kill existing connections when changing roles [#587](https://github.com/cybozu-go/moco/pull/587)

## [0.17.0] - 2023-09-11

### Breaking Changes
Expand Down Expand Up @@ -473,7 +502,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.17.0...HEAD
[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.18.0...HEAD
[0.18.0]: https://github.com/cybozu-go/moco/compare/v0.17.0...v0.18.0
[0.17.0]: https://github.com/cybozu-go/moco/compare/v0.16.1...v0.17.0
[0.16.1]: https://github.com/cybozu-go/moco/compare/v0.15.0...v0.16.1
[0.15.0]: https://github.com/cybozu-go/moco/compare/v0.14.1...v0.15.0
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.17.0
newTag: 0.18.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.17.0"
Version = "0.18.0"

// FluentBitImage is the image for slow-log sidecar container.
FluentBitImage = "ghcr.io/cybozu-go/moco/fluent-bit:2.1.8.2"
Expand Down

0 comments on commit 6cda238

Please sign in to comment.