File tree 6 files changed +21
-12
lines changed
6 files changed +21
-12
lines changed Original file line number Diff line number Diff line change
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
+
1
12
## v0.8.2
2
13
3
14
Changes since ` v0.8.1 ` :
@@ -17,8 +28,6 @@ Changes since `v0.8.1`:
17
28
It also fixes a scenario of partial re-admission when some of the Pods are already reclaimed. (#3207 , @trasc )
18
29
- Prevent job webhooks from dropping fields for newer API fields when Kueue libraries are behind the latest released CRDs. (#3358 , @mbobrovskyi )
19
30
- 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 )
22
31
23
32
### Other (Cleanup or Flake)
24
33
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(shell git rev-parse HEAD)'
76
76
77
77
# Update these variables when preparing a new release or a release branch.
78
78
# Then run `make prepare-release-branch`
79
- RELEASE_VERSION =v0.8.2
79
+ RELEASE_VERSION =v0.8.3
80
80
RELEASE_BRANCH =main
81
81
82
82
.PHONY : all
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Read the [overview](https://kueue.sigs.k8s.io/docs/overview/) to learn more.
57
57
To install the latest release of Kueue in your cluster, run the following command:
58
58
59
59
``` 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
61
61
```
62
62
63
63
The controller runs in the ` kueue-system ` namespace.
Original file line number Diff line number Diff line change 1
1
header :
2
2
schema-version : 1.0.0
3
3
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
7
7
project-url : ' https://github.com/kubernetes-sigs/kueue'
8
- project-release : 0.8.2
8
+ project-release : 0.8.3
9
9
changelog : ' https://github.com/kubernetes-sigs/kueue/tree/main/CHANGELOG'
10
10
license : ' https://github.com/kubernetes-sigs/kueue/blob/main/LICENSE'
11
11
project-lifecycle :
@@ -28,7 +28,7 @@ documentation:
28
28
- ' https://kueue.sigs.k8s.io/docs/'
29
29
distribution-points :
30
30
- >-
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
32
32
security-artifacts :
33
33
threat-model :
34
34
threat-model-created : false
@@ -62,5 +62,5 @@ dependencies:
62
62
dependencies-lists :
63
63
- ' https://github.com/kubernetes-sigs/kueue/blob/main/go.mod'
64
64
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
66
66
sbom-format : SPDX
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ version: 0.1.0
18
18
# incremented each time you make changes to the application. Versions are not expected to
19
19
# follow Semantic Versioning. They should reflect the version the application is using.
20
20
# It is recommended to use it with quotes.
21
- appVersion : " v0.8.2 "
21
+ appVersion : " v0.8.3 "
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ ignoreFiles = []
90
90
# The major.minor version tag for the version of the docs represented in this
91
91
# branch of the repository. Used in the "version-banner" partial to display a
92
92
# version number for this doc set.
93
- version = " v0.8.2 "
93
+ version = " v0.8.3 "
94
94
95
95
# Flag used in the "version-banner" partial to decide whether to display a
96
96
# banner on every page indicating that this is an archived version of the docs.
You can’t perform that action at this time.
0 commit comments