Skip to content

Commit

Permalink
update changelog for v0.6.0 (#343)
Browse files Browse the repository at this point in the history
Signed-off-by: ycyaoxdu <[email protected]>
  • Loading branch information
ycyaoxdu authored May 31, 2023
1 parent 76e0fe8 commit 99eb0d2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
21 changes: 17 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
[comment]: # ( Copyright Contributors to the Open Cluster Management project )
# Release Content
## Additions
- [feature: enhance unjoin command to support hosted klusterlet](https://github.com/open-cluster-management-io/clusteradm/pull/317) @ycyaoxdu
- [Add feature-gate flag for init and join](https://github.com/open-cluster-management-io/clusteradm/pull/325) @qiujian16
- [Add interactiveMode in proxy.](https://github.com/open-cluster-management-io/clusteradm/pull/328) @xuezhaojun
- [Add cmd to create placement](https://github.com/open-cluster-management-io/clusteradm/pull/331) @qiujian16
- [Apply manifestowkr replicaset when use --replicaset label](https://github.com/open-cluster-management-io/clusteradm/pull/337) @qiujian16
- [Set autoApproveUsers with ManagedClusterAutoApproval feature gates](https://github.com/open-cluster-management-io/clusteradm/pull/341) @qiujian16

## Breaking Changes

## Changes
- [Unify help text for --bundle-version ](https://github.com/open-cluster-management-io/clusteradm/pull/311) @nirs
- [Refine --bundle-version help](https://github.com/open-cluster-management-io/clusteradm/pull/312) @nirs
- [Upgrade to golang 1.19](https://github.com/open-cluster-management-io/clusteradm/pull/312) @qiujian16
- [Refactor get addon cmd](https://github.com/open-cluster-management-io/clusteradm/pull/316) @qiujian16
- [Refactor cluster and clusters flags](https://github.com/open-cluster-management-io/clusteradm/pull/327) @qiujian16
- [Rm applier](https://github.com/open-cluster-management-io/clusteradm/pull/332) @qiujian16
- [Remove applier deps from tests](https://github.com/open-cluster-management-io/clusteradm/pull/333) @qiujian16
- [List clusters when getting clusterset](https://github.com/open-cluster-management-io/clusteradm/pull/335) @qiujian16

## Bug Fixes

- [Bug Fix: remove bootstratp secret during clean](https://github.com/open-cluster-management-io/clusteradm/pull/319) @USER0308
- [add preflight check for cluster name](https://github.com/open-cluster-management-io/clusteradm/pull/321) @ycyaoxdu
- [Fix get work filter and return more details](https://github.com/open-cluster-management-io/clusteradm/pull/326) @qiujian16
- [Fix: flaky e2e failed because of "Error: cluster manager still exists"](https://github.com/open-cluster-management-io/clusteradm/pull/329) @xuezhaojun
- [fix: version break line](https://github.com/open-cluster-management-io/clusteradm/pull/330) @huiwq1990
- [fix 3 CVEs: CVE-2022-27664, CVE-2022-32149, CVE-2022-28948](https://github.com/open-cluster-management-io/clusteradm/pull/345) @ycyangxdu
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.5.1
v0.6.0
12 changes: 11 additions & 1 deletion pkg/helpers/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type VersionBundle struct {
AddonManager string
}

var defaultBundleVersion = "0.10.0"
var defaultBundleVersion = "0.11.0"

func GetDefaultBundleVersion() string {
return defaultBundleVersion
Expand Down Expand Up @@ -105,6 +105,16 @@ func GetVersionBundle(version string) (VersionBundle, error) {
PolicyAddon: "v0.10.0",
}

versionBundleList["0.11.0"] = VersionBundle{
Registration: "v0.11.0",
Placement: "v0.11.0",
Work: "v0.11.0",
Operator: "v0.11.0",
AddonManager: "v0.7.0",
AppAddon: "v0.11.0",
PolicyAddon: "v0.11.0",
}

// default
versionBundleList["default"] = versionBundleList[defaultBundleVersion]

Expand Down

0 comments on commit 99eb0d2

Please sign in to comment.