Skip to content

Commit

Permalink
Prepare release v2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Nov 22, 2023
1 parent 410ea0b commit 9ce4878
Show file tree
Hide file tree
Showing 16 changed files with 78 additions and 80 deletions.
66 changes: 66 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,72 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- scriv-insert-here -->

<a id='changelog-2.9.0'></a>
## \[2.9.0\] - 2023-11-22

### Added

- CVAT now supports serverless Nuclio functions returning skeleton annotations.
Added keypoint detector supporting skeletons with following classes: body, head, foot, hands.
Deployment command: `./deploy_cpu.sh pytorch/mmpose/hrnet32/nuclio/`
(<https://github.com/opencv/cvat/pull/7033>)

- Implemented a feature allowing to slice one polygon/mask shape into two parts
(<https://github.com/opencv/cvat/pull/7084>)
- Implemented a feature allowing to join several masks into a single one
(<https://github.com/opencv/cvat/pull/7084>)

- \[Helm\] Values that apply to all backend deployments/jobs
(<https://github.com/opencv/cvat/pull/7148>)

### Changed

- Ignore the "use cache" option on the server when creating a task with cloud storage data (except images)
(<https://github.com/opencv/cvat/pull/7087>)

- The Docker Compose file and Helm chart now enable Traefik access logs by
default, and change the log format to JSON
(<https://github.com/opencv/cvat/pull/7109>)

- \[Helm\] The PersistentVolumeClaim for the volume used to hold application
data is now retained after uninstall
(<https://github.com/opencv/cvat/pull/7123>)

- \[Helm\] All backend-related deployments now use `cvat-app` as the value
for the `app` label
(<https://github.com/opencv/cvat/pull/7127>)

- \[Helm\] Minimum compatible Kubernetes version is 1.19.0.
(<https://github.com/opencv/cvat/pull/7132>)

- \[Helm\] The CVAT hostname can be configured with `ingress.hostname` option.
(<https://github.com/opencv/cvat/pull/7132>)

- \[Helm\] `ingress.tls` configuration has been reworked.
(<https://github.com/opencv/cvat/pull/7132>)

- \[Helm\] Traefik subchart updated to 25.0.0 (appVersion v2.10.5)
(<https://github.com/opencv/cvat/pull/7132>)

- \[Docker Compose\] Update Traefik to v2.10.*
(<https://github.com/opencv/cvat/pull/7150>)

### Removed

\[Helm\] `ingress.hosts` has been removed, use `ingress.hostname` instead.
(<https://github.com/opencv/cvat/pull/7132>)

### Fixed

- Data race condition during GT job creation
(<https://github.com/opencv/cvat/pull/7096>)

- Job state can not be changed many time without reloading annotation view.
(<https://github.com/opencv/cvat/pull/7158>)

- Compressed chunks do not use exif rotation tag
(<https://github.com/opencv/cvat/pull/7162>)

<a id='changelog-2.8.2'></a>
## \[2.8.2\] - 2023-11-06

Expand Down
6 changes: 0 additions & 6 deletions changelog.d/20231024_123046_boris_keypoints.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20231104_113802_mzhiltsov_fix_atomic_uses.md

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20231107_183551_roman_traefik_logs.md

This file was deleted.

6 changes: 0 additions & 6 deletions changelog.d/20231108_134600_boris_join_slice.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20231110_134452_roman_helm_keep_pvc.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20231113_174833_roman_refactor_values.md

This file was deleted.

17 changes: 0 additions & 17 deletions changelog.d/20231115_110934_andrey_update_helm.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20231116_140728_roman_backend_settings.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20231116_153601_andrey_update_traefik.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20231122_111559_sekachev.bs_fixed_exif.md

This file was deleted.

2 changes: 1 addition & 1 deletion cvat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from cvat.utils.version import get_version

VERSION = (2, 9, 0, 'alpha', 0)
VERSION = (2, 9, 0, 'final', 0)

__version__ = get_version(VERSION)
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ services:

cvat_server:
container_name: cvat_server
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand Down Expand Up @@ -77,7 +77,7 @@ services:

cvat_utils:
container_name: cvat_utils
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -97,7 +97,7 @@ services:

cvat_worker_import:
container_name: cvat_worker_import
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -115,7 +115,7 @@ services:

cvat_worker_export:
container_name: cvat_worker_export
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -133,7 +133,7 @@ services:

cvat_worker_annotation:
container_name: cvat_worker_annotation
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -152,7 +152,7 @@ services:

cvat_worker_webhooks:
container_name: cvat_worker_webhooks
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -171,7 +171,7 @@ services:

cvat_worker_quality_reports:
container_name: cvat_worker_quality_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -189,7 +189,7 @@ services:

cvat_worker_analytics_reports:
container_name: cvat_worker_analytics_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -207,7 +207,7 @@ services:

cvat_ui:
container_name: cvat_ui
image: cvat/ui:${CVAT_VERSION:-dev}
image: cvat/ui:${CVAT_VERSION:-v2.9.0}
restart: always
depends_on:
- cvat_server
Expand Down
4 changes: 2 additions & 2 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ cvat:
additionalVolumeMounts: []
replicas: 1
image: cvat/server
tag: dev
tag: v2.9.0
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -137,7 +137,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.9.0
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit 9ce4878

Please sign in to comment.