From 591b0b89eaae63b9be4f96205335b97307fca409 Mon Sep 17 00:00:00 2001 From: Qing Hao Date: Fri, 3 Feb 2023 16:55:36 +0800 Subject: [PATCH] add changelog for v0.10.0 (#97) Signed-off-by: haoqing0110 --- .github/workflows/go-postsubmit.yml | 2 +- .github/workflows/go-presubmit.yml | 2 +- CHANGELOG/CHANGELOG-v0.10.md | 25 +++++++++++++++++++++++++ 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG/CHANGELOG-v0.10.md diff --git a/.github/workflows/go-postsubmit.yml b/.github/workflows/go-postsubmit.yml index ec06933d9..58d573f2d 100644 --- a/.github/workflows/go-postsubmit.yml +++ b/.github/workflows/go-postsubmit.yml @@ -30,7 +30,7 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - name: install imagebuilder - run: go install github.com/openshift/imagebuilder/cmd/imagebuilder@v1.2.1 + run: go install github.com/openshift/imagebuilder/cmd/imagebuilder@v1.2.3 - name: images run: make images - name: push diff --git a/.github/workflows/go-presubmit.yml b/.github/workflows/go-presubmit.yml index 4f8ec590c..5ea6ffd47 100644 --- a/.github/workflows/go-presubmit.yml +++ b/.github/workflows/go-presubmit.yml @@ -111,7 +111,7 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - name: install imagebuilder - run: go install github.com/openshift/imagebuilder/cmd/imagebuilder@v1.2.1 + run: go install github.com/openshift/imagebuilder/cmd/imagebuilder@v1.2.3 - name: images run: make images - name: setup kind diff --git a/CHANGELOG/CHANGELOG-v0.10.md b/CHANGELOG/CHANGELOG-v0.10.md new file mode 100644 index 000000000..c52a4c884 --- /dev/null +++ b/CHANGELOG/CHANGELOG-v0.10.md @@ -0,0 +1,25 @@ +# Changelog since v0.9.0 +All notable changes to this project will be documented in this file. + +## v0.10.0 + +### New Features +N/C + +### Added +N/C + +### Changes +* Watch the `AddOnPlacementScore` during scheduling. This enable `PlacementDecision` to reflect `AddOnPlacementScore` more frequently than every 5 minutes [#87](https://github.com/open-cluster-management-io/placement/issues/87). ([#89](https://github.com/open-cluster-management-io/placement/pull/89) [@qiujian16](https://github.com/qiujian16)) +* Create empty `PlacementDecision` when no cluster selected. ([#95](https://github.com/open-cluster-management-io/placement/pull/95) [@haoqing0110](https://github.com/haoqing0110)) +* Enhance the integration testing. ([#90](https://github.com/open-cluster-management-io/placement/pull/90) [@qiujian16](https://github.com/qiujian16)) ([#91](https://github.com/open-cluster-management-io/placement/pull/91) [@zhujian7](https://github.com/zhujian7)) ([#93](https://github.com/open-cluster-management-io/placement/pull/93) [@haoqing0110](https://github.com/haoqing0110)) +* Upgrade `ManagedClusterSet` and `ManagedClusterSetBinding` API to v1beta2. ([#82](https://github.com/open-cluster-management-io/placement/pull/82) [@ldpliu](https://github.com/ldpliu)) +* Upgrade golang to 1.19. ([#84](https://github.com/open-cluster-management-io/placement/pull/84) [@haoqing0110](https://github.com/haoqing0110)) +* Upgrade ginkgo to v2. ([#88](https://github.com/open-cluster-management-io/placement/pull/88) [@zhujian7](https://github.com/zhujian7)) +* Upgrade github action. ([#94](https://github.com/open-cluster-management-io/placement/pull/94) [@ycyaoxdu](https://github.com/ycyaoxdu)) + +### Bug Fixes +N/C + +### Removed & Deprecated +N/C \ No newline at end of file