Skip to content

Commit e7d7841

Browse files
authored
Update latest version to v0.8.3 (#3444)
Signed-off-by: Yuki Iwai <[email protected]>
1 parent c42f87e commit e7d7841

File tree

6 files changed

+21
-12
lines changed

6 files changed

+21
-12
lines changed

CHANGELOG/CHANGELOG-0.8.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v0.8.3
2+
3+
Changes since `v0.8.2`:
4+
5+
## Changes by Kind
6+
7+
### Bug or Regression
8+
9+
- Workload is requeued with all AdmissionChecks set to Pending if there was an AdmissionCheck in Retry state. (#3323, @PBundyra)
10+
- Account for NumOfHosts when calculating PodSet assignments for RayJob and RayCluster (#3384, @andrewsykim)
11+
112
## v0.8.2
213

314
Changes since `v0.8.1`:
@@ -17,8 +28,6 @@ Changes since `v0.8.1`:
1728
It also fixes a scenario of partial re-admission when some of the Pods are already reclaimed. (#3207, @trasc)
1829
- Prevent job webhooks from dropping fields for newer API fields when Kueue libraries are behind the latest released CRDs. (#3358, @mbobrovskyi)
1930
- RayJob's implementation of Finished() now inspects at JobDeploymentStatus (#3128, @andrewsykim)
20-
- Workload is requeued with all AdmissionChecks set to Pending if there was an AdmissionCheck in Retry state. (#3323, @PBundyra)
21-
- Account for NumOfHosts when calculating PodSet assignments for RayJob and RayCluster (#3384, @andrewsykim)
2231

2332
### Other (Cleanup or Flake)
2433

Makefile

+1-1
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.8.2
79+
RELEASE_VERSION=v0.8.3
8080
RELEASE_BRANCH=main
8181

8282
.PHONY: all

README.md

+1-1
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.8.2/manifests.yaml
60+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.8.3/manifests.yaml
6161
```
6262

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

SECURITY-INSIGHTS.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
header:
22
schema-version: 1.0.0
33
expiration-date: '2024-09-28T01:00:00.000Z'
4-
last-updated: '2024-11-04'
5-
last-reviewed: '2024-11-04'
6-
commit-hash: c8db8941353ccdc6b59257513bd6ad48766a400c
4+
last-updated: '2024-11-05'
5+
last-reviewed: '2024-11-05'
6+
commit-hash: 982a9f33cd97af592e3a63e1520a8821dd0f2a75
77
project-url: 'https://github.com/kubernetes-sigs/kueue'
8-
project-release: 0.8.2
8+
project-release: 0.8.3
99
changelog: 'https://github.com/kubernetes-sigs/kueue/tree/main/CHANGELOG'
1010
license: 'https://github.com/kubernetes-sigs/kueue/blob/main/LICENSE'
1111
project-lifecycle:
@@ -28,7 +28,7 @@ documentation:
2828
- 'https://kueue.sigs.k8s.io/docs/'
2929
distribution-points:
3030
- >-
31-
https://github.com/kubernetes-sigs/kueue/releases/download/v0.8.2/manifests.yaml
31+
https://github.com/kubernetes-sigs/kueue/releases/download/v0.8.3/manifests.yaml
3232
security-artifacts:
3333
threat-model:
3434
threat-model-created: false
@@ -62,5 +62,5 @@ dependencies:
6262
dependencies-lists:
6363
- 'https://github.com/kubernetes-sigs/kueue/blob/main/go.mod'
6464
sbom:
65-
- sbom-file: https://github.com/kubernetes-sigs/kueue/releases/download/v0.8.2/kueue-v0.8.2.spdx.json
65+
- sbom-file: https://github.com/kubernetes-sigs/kueue/releases/download/v0.8.3/kueue-v0.8.3.spdx.json
6666
sbom-format: SPDX

charts/kueue/Chart.yaml

+1-1
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.8.2"
21+
appVersion: "v0.8.3"

site/hugo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ 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.8.2"
93+
version = "v0.8.3"
9494

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

0 commit comments

Comments
 (0)