Skip to content

Commit c8db894

Browse files
committed
Prepare release v0.8.2
Signed-off-by: Yuki Iwai <yuki.iwai.tz@gmail.com>
1 parent 73e2a4c commit c8db894

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

CHANGELOG/CHANGELOG-0.8.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## v0.8.2
2+
3+
Changes since `v0.8.1`:
4+
5+
### Feature
6+
7+
- Helm: Support the topologySpreadConstraints and PodDisruptionBudget (#3282, @woehrl01)
8+
9+
### Bug or Regression
10+
11+
- Fix a bug that could delay the election of a new leader in the Kueue with multiple replicas env. (#3096, @tenzen-y)
12+
- Fix resource consumption computation for partially admitted workloads. (#3206, @trasc)
13+
- Fix restoring parallelism on eviction for partially admitted batch/Jobs. (#3208, @trasc)
14+
- Fix some scenarios for partial admission which are affected by wrong calculation of resources
15+
used by the incoming workload which is partially admitted and preempting. (#3205, @trasc)
16+
- Fix webook validation for batch/Job to allow partial admission of a Job to use all available resources.
17+
It also fixes a scenario of partial re-admission when some of the Pods are already reclaimed. (#3207, @trasc)
18+
- Prevent job webhooks from dropping fields for newer API fields when Kueue libraries are behind the latest released CRDs. (#3358, @mbobrovskyi)
19+
- 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+
23+
### Other (Cleanup or Flake)
24+
25+
- Add a jobframework.BaseWebhook that can be used for custom job integrations (#3355, @mbobrovskyi)
26+
127
## v0.8.1
228

329
Changes since `v0.8.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.8.1
79+
RELEASE_VERSION=v0.8.2
8080
RELEASE_BRANCH=release-0.8
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.8.1/manifests.yaml
60+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.8.2/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.8.1"
21+
appVersion: "v0.8.2"

site/hugo.toml

Lines changed: 1 addition & 1 deletion
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.1"
93+
version = "v0.8.2"
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)