From 59d2cd6a3ea965e80fe8aff12a53869e6068f6ee Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Thu, 24 Mar 2022 15:15:23 +0800 Subject: [PATCH] add v0.7 changelog (#220) Signed-off-by: Wei Liu --- CHANGELOG/CHANGELOG-v0.7.md | 21 +++++++++++++++++++++ pkg/features/feature.go | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG/CHANGELOG-v0.7.md diff --git a/CHANGELOG/CHANGELOG-v0.7.md b/CHANGELOG/CHANGELOG-v0.7.md new file mode 100644 index 000000000..ec93161ca --- /dev/null +++ b/CHANGELOG/CHANGELOG-v0.7.md @@ -0,0 +1,21 @@ +# Changelog since v0.6.0 +All notable changes to this project will be documented in this file. + +## v0.7.0 + +### New Features +* Support to to maintain a default cluster set for managed clusters. ([#204](https://github.com/open-cluster-management-io/registration/pull/204) [@elgnay](https://github.com/elgnay), [#198](https://github.com/open-cluster-management-io/registration/pull/198) [#202](https://github.com/open-cluster-management-io/registration/pull/202) [ycyaoxdu](https://github.com/ycyaoxdu), [#205](https://github.com/open-cluster-management-io/registration/pull/205) [ldpliu](https://github.com/ldpliu)) + +### Added +* Support v1beta1 CSR to be compatible with low versions of Kubernetes for hub cluster. ([#214](https://github.com/open-cluster-management-io/registration/pull/214) [@yue9944882](https://github.com/yue9944882)) +* Support to run registration webhooks locally. ([#200](https://github.com/open-cluster-management-io/registration/pull/200) [xuezhaojun](https://github.com/xuezhaojun)) +* Add managed cluster taints update e2e test. ([#212](https://github.com/open-cluster-management-io/registration/pull/212) [JiahaoWei-RH](https://github.com/JiahaoWei-RH)) + +### Changes +N/C + +### Bug Fixes +* Avoid useless error log messages in registration webhooks. ([#215](https://github.com/open-cluster-management-io/registration/pull/215) [@qiujian16](https://github.com/qiujian16)) + +### Removed & Deprecated +* Stop to build latest image in release branch. ([#218](https://github.com/open-cluster-management-io/registration/pull/218) [@qiujian16](https://github.com/qiujian16)) diff --git a/pkg/features/feature.go b/pkg/features/feature.go index 3c103a71d..ef1ed2574 100644 --- a/pkg/features/feature.go +++ b/pkg/features/feature.go @@ -29,7 +29,7 @@ const ( // registration and maintains the status of managed cluster addons through watching their leases. AddonManagement featuregate.Feature = "AddonManagement" - // DefaultCluster will make registration hub controller to maintain a default cluster set. All clusters + // DefaultClusterSet will make registration hub controller to maintain a default cluster set. All clusters // without clusterset label will be automatically added into the default cluster set by adding a label // "cluster.open-cluster-management.io/clusterset=default" to the clusters. DefaultClusterSet featuregate.Feature = "DefaultClusterSet"