From b00e45641054b7cca2ce50476fefd5b711e1ecd9 Mon Sep 17 00:00:00 2001 From: Calin Don Date: Mon, 22 May 2023 15:45:00 +0300 Subject: [PATCH] Prepare v0.6.3 release --- CHANGELOG.md | 10 +++++++++- test.mk | 5 +++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 test.mk diff --git a/CHANGELOG.md b/CHANGELOG.md index a7db366f5..5c267e751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,19 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +### Changed +### Removed +### Fixed + +## [0.6.3] - 2023-05-22 + ### Added * Add `mysql-operator.presslabs.org/resourceDeletionPolicy` annotation for `MysqlDatabase` and `MysqlUser` * Add `PtHeartbeatResources` in `.Spec.PodSpec` to allow the user specifying resources for pt-heartbeat. * Set `MysqlCluter.Spec.BackupSchedule` to empty string to disable recurrent backups +* Add support for backing up to HDFS ### Changed @@ -33,7 +41,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). * Orchestrator can't properly update or migrate when it more than one * Operator service account have no access to update mysqlbackups/status * Recurrent backup remote delete policy can not update according to the `cluster.Spec.BackupRemoteDeletePolicy` -* When the operator is restarted, it will process the Pod list once to prevent the state of the pod from being changed automatically because it is not updated (especially if the pvc is full). +* When the operator is restarted, it will process the Pod list once to prevent the state of the pod from being changed automatically because it is not updated (especially if the PVC is full). ## [0.6.2] - 2021-12-28 diff --git a/test.mk b/test.mk new file mode 100644 index 000000000..338d125d4 --- /dev/null +++ b/test.mk @@ -0,0 +1,5 @@ +include build/makelib/utils.mk +all: + $(info |$(subst $(SPACE),_,$(strip one foo bar))|) + $(info $(call list-join,_,mysql-operator foo bar)) +.PHONY: all