Skip to content

Commit 9ad6cfe

Browse files
Prepare release v0.7.1 (#2543)
Change-Id: I4024a90a07b784a5c194fc4f7060c4dc0230a19b
1 parent 38f210a commit 9ad6cfe

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

CHANGELOG/CHANGELOG-0.7.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## v0.7.1
2+
3+
Changes since `v0.7.0`:
4+
5+
### Feature
6+
7+
- Improved logging for scheduling and preemption in levels 4 and 5 (#2510, @gabesaba, @alculquicondor)
8+
- MultiKueue: Remove remote objects synchronously when the worker cluster is reachable. (#2360, @trasc)
9+
10+
### Bug or Regression
11+
12+
- Fix check that prevents preemptions when a workload requests 0 for a resource that is at nominal or over it. (#2524, @mbobrovskyi, @alculquicondor)
13+
- Fix for the scenario when a workload doesn't match some resource flavors due to affinity or taints
14+
could cause the workload to be continuously retried. (#2440, @KunWuLuan)
15+
- Fix missing fairSharingStatus in ClusterQueue (#2432, @mbobrovskyi)
16+
- Fix missing metric cluster_queue_status. (#2475, @mbobrovskyi)
17+
- Fix panic that could occur when a ClusterQueue is deleted while Kueue was updating the ClusterQueue status. (#2464, @mbobrovskyi)
18+
- Fix panic when there is not enough quota to assign flavors to a Workload in the cohort, when FairSharing is enabled. (#2449, @mbobrovskyi)
19+
- Fix performance issue in logging when processing LocalQueues. (#2492, @alexandear)
20+
- Fix race condition on delete workload from queue manager. (#2465, @mbobrovskyi)
21+
- MultiKueue: Do not reject a JobSet if the corresponding cluster queue doesn't exist (#2442, @vladikkuzn)
22+
- MultiKueue: Skip garbage collection for disconnected clients which could occasionally result in panic. (#2370, @trasc)
23+
- Show weightedShare in ClusterQueue status.fairSharing even if the value is zero (#2522, @alculquicondor)
24+
- Skip duplicate Tolerations when an admission check introduces a toleration that the job also set. (#2499, @trasc)
25+
126
## v0.7.0
227

328
Changes since `v0.6.0`:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(shell git rev-parse HEAD)'
7676

7777
# Update these variables when preparing a new release or a release branch.
7878
# Then run `make prepare-release-branch`
79-
RELEASE_VERSION=v0.7.0
79+
RELEASE_VERSION=v0.7.1
8080
RELEASE_BRANCH=release-0.7
8181

8282
.PHONY: all

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Read the [overview](https://kueue.sigs.k8s.io/docs/overview/) to learn more.
5757
To install the latest release of Kueue in your cluster, run the following command:
5858

5959
```shell
60-
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.7.0/manifests.yaml
60+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.7.1/manifests.yaml
6161
```
6262

6363
The controller runs in the `kueue-system` namespace.

charts/kueue/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ version: 0.1.0
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: "v0.7.0"
21+
appVersion: "v0.7.1"

site/hugo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ ignoreFiles = []
8989
# The major.minor version tag for the version of the docs represented in this
9090
# branch of the repository. Used in the "version-banner" partial to display a
9191
# version number for this doc set.
92-
version = "v0.7.0"
92+
version = "v0.7.1"
9393

9494
# Flag used in the "version-banner" partial to decide whether to display a
9595
# banner on every page indicating that this is an archived version of the docs.

0 commit comments

Comments
 (0)