diff --git a/CHANGELOG/CHANGELOG-0.6.md b/CHANGELOG/CHANGELOG-0.6.md index b39a971b1a..53e02d42c8 100644 --- a/CHANGELOG/CHANGELOG-0.6.md +++ b/CHANGELOG/CHANGELOG-0.6.md @@ -1,3 +1,25 @@ +## v0.6.1 + +Changes Since `v0.6.0`: + +### Feature + +- Added MultiKueue worker connection monitoring and reconnect. (#1809, @trasc) +- The Failed pods in a pod-group are finalized once a replacement pods are created. (#1801, @trasc) + +### Bug or Regression + +- Exclude Pod labels, preemptionPolicy and container images when determining whether pods in a pod group have the same shape. (#1760, @alculquicondor) +- Fix incorrect quota management when lendingLimit enabled in preemption (#1826, @kerthcet, @B1F030) +- Fix the configuration for the number of reconcilers for the Pod integration. It was only reconciling one group at a time. (#1837, @alculquicondor) +- Kueue visibility API is no longer installed by default. Users can install it via helm or applying the visibility-api.yaml artifact. (#1764, @trasc) +- WaitForPodsReady: Fix a bug that the requeueState isn't reset. (#1843, @tenzen-y) + +### Other (Cleanup or Flake) + +- Avoid API calls for admission attempts when Workload already has condition Admitted=false (#1845, @alculquicondor) +- Skip requeueing of Workloads when there is a status update for a ClusterQueue, saving on API calls for Workloads that were already attempted for admission. (#1832, @alculquicondor) + ## v0.6.0 Changes since `v0.5.0`: diff --git a/Makefile b/Makefile index f6732d900c..cfa51ee78c 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(shell git rev-parse HEAD)' # Update these variables when preparing a new release or a release branch. # Then run `make prepare-release-branch` -RELEASE_VERSION=v0.6.0 +RELEASE_VERSION=v0.6.1 RELEASE_BRANCH=release-0.6 .PHONY: all diff --git a/README.md b/README.md index 5ce449faf5..dbe6ae2820 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Read the [overview](https://kueue.sigs.k8s.io/docs/overview/) to learn more. To install the latest release of Kueue in your cluster, run the following command: ```shell -kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.6.0/manifests.yaml +kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.6.1/manifests.yaml ``` The controller runs in the `kueue-system` namespace. diff --git a/charts/kueue/Chart.yaml b/charts/kueue/Chart.yaml index 3c9ed1ba6d..ab98fe240f 100644 --- a/charts/kueue/Chart.yaml +++ b/charts/kueue/Chart.yaml @@ -18,4 +18,4 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v0.6.0" +appVersion: "v0.6.1" diff --git a/site/config.toml b/site/config.toml index a90adbddd7..7d8733915d 100644 --- a/site/config.toml +++ b/site/config.toml @@ -92,7 +92,7 @@ ignoreFiles = [] # The major.minor version tag for the version of the docs represented in this # branch of the repository. Used in the "version-banner" partial to display a # version number for this doc set. - version = "v0.6.0" + version = "v0.6.1" # Flag used in the "version-banner" partial to decide whether to display a # banner on every page indicating that this is an archived version of the docs.