Skip to content

Commit 7a3498f

Browse files
authored
Prepare v0.11.5 (#5354)
1 parent 5f21795 commit 7a3498f

File tree

6 files changed

+26
-7
lines changed

6 files changed

+26
-7
lines changed

CHANGELOG/CHANGELOG-0.11.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v0.11.5
2+
3+
Changes since `v0.11.4`:
4+
5+
## Changes by Kind
6+
7+
### Bug or Regression
8+
9+
- Fix Kueue crash caused by race condition when deleting ClusterQueue (#5296, @gabesaba)
10+
- Fix RayJob webhook validation when `LocalQueueDefaulting` feature is enabled. (#5073, @MaysaMacedo)
11+
- Fix a bug where PropagateResourceRequests would always trigger an API status patch call. (#5132, @alexeldeib)
12+
- Fix panic due to nil ptr exception in scheduler when ClusterQueue is deleted concurrently. (#5207, @sohankunkerkar)
13+
- Fix the bug which prevented running Jobs (with queue-name label) owned by other Jobs for which Kueue does not
14+
have the necessary RBAC permissions (for example kserve or CronJob). (#5263, @mimowo)
15+
- TAS: Fix RBAC configuration for the Topology API (#5122, @qti-haeyoon)
16+
- TAS: Fix the bug where TAS workloads may be admitted after restart of the Kueue controller. (#5334, @mimowo)
17+
- TAS: fix accounting of TAS usage for workloads with multiple PodSets. This bug could prevent admitting workloads which otherwise could fit. (#5342, @lchrzaszcz)
18+
- TAS: fix issues with the initialization of TAS cache in case of errors in event handlers. (#5351, @mimowo)
19+
120
## v0.11.4
221

322
Changes since `v0.11.3`:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(shell git rev-parse HEAD)'
7979

8080
# Update these variables when preparing a new release or a release branch.
8181
# Then run `make prepare-release-branch`
82-
RELEASE_VERSION=v0.11.4
82+
RELEASE_VERSION=v0.11.5
8383
RELEASE_BRANCH=release-0.11
8484
# Version used form Helm which is not using the leading "v"
8585
CHART_VERSION := $(shell echo $(RELEASE_VERSION) | cut -c2-)
@@ -405,4 +405,4 @@ ray-project-mini-image-build:
405405
.PHONY: kind-ray-project-mini-image-build
406406
kind-ray-project-mini-image-build: PLATFORMS=linux/amd64
407407
kind-ray-project-mini-image-build: PUSH=--load
408-
kind-ray-project-mini-image-build: ray-project-mini-image-build
408+
kind-ray-project-mini-image-build: ray-project-mini-image-build

README.md

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

6060
```shell
61-
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.11.4/manifests.yaml
61+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.11.5/manifests.yaml
6262
```
6363

6464
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
@@ -21,4 +21,4 @@ version: 0.1.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "v0.11.4"
24+
appVersion: "v0.11.5"

charts/kueue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ helm install kueue kueue/ --create-namespace --namespace kueue-system
3737
Or use the charts pushed to `us-central1-docker.pkg.dev/k8s-staging-images/kueue/charts/kueue`:
3838

3939
```bash
40-
helm install kueue oci://us-central1-docker.pkg.dev/k8s-staging-images/kueue/charts/kueue --version="0.11.4" --create-namespace --namespace=kueue-system
40+
helm install kueue oci://us-central1-docker.pkg.dev/k8s-staging-images/kueue/charts/kueue --version="0.11.5" --create-namespace --namespace=kueue-system
4141
```
4242

4343
##### Verify that controller pods are running properly.

site/hugo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ ignoreFiles = []
9090
# The major.minor version tag for the version of the docs represented in this
9191
# branch of the repository. Used in the "version-banner" partial to display a
9292
# version number for this doc set.
93-
version = "v0.11.4"
93+
version = "v0.11.5"
9494

9595
# Version of Kueue without the leading "v", as used for Helm charts.
96-
chart_version = "0.11.4"
96+
chart_version = "0.11.5"
9797

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

0 commit comments

Comments
 (0)