Skip to content

Commit

Permalink
Merge pull request #255 from cybozu-go/bump-v0.9.0
Browse files Browse the repository at this point in the history
Prepare for v0.9.0 release
  • Loading branch information
ymmt2005 authored May 31, 2021
2 parents f432b00 + c7b5750 commit a1e8031
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mdbook.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Book
on:
pull_request:
push:
Expand Down
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.9.0] - 2021-05-31

### Added
- Backup and Point-in-Time Recovery feature (#247)
- To use the new backup feature, clusters created with MOCO v0.8 needs to be re-created.
- Support for Kubernetes 1.21 (#251)
- Allow opaque `my.cnf` configurations (#252)
- Documentation site on https://cybozu-go.github.io/moco/ (#254)

### Changed
- Update `moco-agent` to v0.6.5 (#247)

### Fixed
- Controller failed to update Service if `spec.externalTrafficPolicy` is set to Local (#250)

## [0.8.3] - 2021-05-12

### Changed
Expand Down Expand Up @@ -155,7 +170,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.8.3...HEAD
[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.9.0...HEAD
[0.9.0]: https://github.com/cybozu-go/moco/compare/v0.8.3...v0.9.0
[0.8.3]: https://github.com/cybozu-go/moco/compare/v0.8.2...v0.8.3
[0.8.2]: https://github.com/cybozu-go/moco/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/cybozu-go/moco/compare/v0.8.0...v0.8.1
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

# MOCO

<img src="./docs/logo.svg" width="160" alt="moco logo" />

MOCO is a Kubernetes operator for [MySQL][].
Its primary function is to manage MySQL clusters using [GTID-based](https://dev.mysql.com/doc/refman/8.0/en/replication-gtids.html) [semi-synchronous](https://dev.mysql.com/doc/refman/8.0/en/replication-semisync.html) replication. It does _not_ manage [group replication](https://dev.mysql.com/doc/refman/8.0/en/group-replication.html) clusters.

Expand Down
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# MOCO documentation

<img src="./docs/logo.svg" width="160" alt="moco logo" />

This is the documentation site for [MOCO](https://github.com/cybozu-go/moco).
MOCO is a Kubernetes operator for MySQL created and maintained by Cybozu.
1 change: 1 addition & 0 deletions docs/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.8.3
newTag: 0.9.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.8.3"
Version = "0.9.0"

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

0 comments on commit a1e8031

Please sign in to comment.