Skip to content

Commit

Permalink
Prepare release v2.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Oct 1, 2024
1 parent 7551d6c commit 44c6b97
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 41 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.20.0'></a>
## \[2.20.0\] - 2024-10-01

### Added

- A server setting to enable or disable storage of permanent media chunks on the server filesystem
(<https://github.com/cvat-ai/cvat/pull/8272>)
- \[Server API\] `GET /api/jobs/{id}/data/?type=chunk&index=x` parameter combination.
The new `index` parameter allows to retrieve job chunks using 0-based index in each job,
instead of the `number` parameter, which used task chunk ids.
(<https://github.com/cvat-ai/cvat/pull/8272>)

### Changed

- Job assignees will not receive frames from adjacent jobs in chunks
(<https://github.com/cvat-ai/cvat/pull/8272>)

### Deprecated

- \[Server API\] `GET /api/jobs/{id}/data/?type=chunk&number=x` parameter combination
(<https://github.com/cvat-ai/cvat/pull/8272>)

### Removed

- Removed the non-functional `task_subsets` parameter from the project create
and update endpoints
(<https://github.com/cvat-ai/cvat/pull/8492>)

### Fixed

- Various memory leaks in video reading on the server
(<https://github.com/cvat-ai/cvat/pull/8272>)

<a id='changelog-2.19.1'></a>
## \[2.19.1\] - 2024-09-26

Expand Down
24 changes: 0 additions & 24 deletions changelog.d/20240812_161617_mzhiltso_job_chunks.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20241001_131450_roman.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, 20, 0, 'alpha', 0)
VERSION = (2, 20, 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 @@ -79,7 +79,7 @@ services:

cvat_server:
container_name: cvat_server
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on:
<<: *backend-deps
Expand Down Expand Up @@ -113,7 +113,7 @@ services:

cvat_utils:
container_name: cvat_utils
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -130,7 +130,7 @@ services:

cvat_worker_import:
container_name: cvat_worker_import
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -146,7 +146,7 @@ services:

cvat_worker_export:
container_name: cvat_worker_export
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -162,7 +162,7 @@ services:

cvat_worker_annotation:
container_name: cvat_worker_annotation
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -178,7 +178,7 @@ services:

cvat_worker_webhooks:
container_name: cvat_worker_webhooks
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -194,7 +194,7 @@ services:

cvat_worker_quality_reports:
container_name: cvat_worker_quality_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -210,7 +210,7 @@ services:

cvat_worker_analytics_reports:
container_name: cvat_worker_analytics_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.20.0}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -226,7 +226,7 @@ services:

cvat_ui:
container_name: cvat_ui
image: cvat/ui:${CVAT_VERSION:-dev}
image: cvat/ui:${CVAT_VERSION:-v2.20.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 @@ -115,7 +115,7 @@ cvat:
additionalVolumeMounts: []
replicas: 1
image: cvat/server
tag: dev
tag: v2.20.0
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -139,7 +139,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.20.0
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit 44c6b97

Please sign in to comment.