Skip to content

Commit

Permalink
Prepare release v2.21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Oct 31, 2024
1 parent 23e1e0a commit f1c7a1e
Show file tree
Hide file tree
Showing 14 changed files with 46 additions and 43 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.21.3'></a>
## \[2.21.3\] - 2024-10-31

### Changed

- CLI no longer prints the stack trace in case of HTTP errors
(<https://github.com/cvat-ai/cvat/pull/8601>)

### Removed

- Dropped support for Python 3.8 since its EOL was on 2024-10-07
(<https://github.com/cvat-ai/cvat/pull/8360>)

### Fixed

- Requests page crush with `Cannot read property 'target' of undefined` error
(<https://github.com/cvat-ai/cvat/pull/8575>)

- Tags in ground truth job were displayed as `tag (GT)`
(<https://github.com/cvat-ai/cvat/pull/8586>)

- Tags in ground truth job couldn't be deleted via `x` button
(<https://github.com/cvat-ai/cvat/pull/8586>)

- Exception 'Canvas is busy' when change frame during drag/resize a track
(<https://github.com/cvat-ai/cvat/pull/8598>)

- A shape gets shifted if auto save triggered during dragging
(<https://github.com/cvat-ai/cvat/pull/8598>)

<a id='changelog-2.21.2'></a>
## \[2.21.2\] - 2024-10-24

Expand Down

This file was deleted.

7 changes: 0 additions & 7 deletions changelog.d/20241023_120236_klakhov_improve_gt_tags.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20241028_140908_sekachev.bs.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20241028_140945_sekachev.bs.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20241029_113229_maria_drop_python_3_8_support.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20241029_134200_roman_cli_refactor.md

This file was deleted.

2 changes: 1 addition & 1 deletion cvat-cli/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cvat-sdk~=2.22.0
cvat-sdk~=2.21.3
Pillow>=10.3.0
setuptools>=70.0.0 # not directly required, pinned by Snyk to avoid a vulnerability
2 changes: 1 addition & 1 deletion cvat-cli/src/cvat_cli/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.22.0"
VERSION = "2.21.3"
2 changes: 1 addition & 1 deletion cvat-sdk/gen/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -e

GENERATOR_VERSION="v6.0.1"

VERSION="2.22.0"
VERSION="2.21.3"
LIB_NAME="cvat_sdk"
LAYER1_LIB_NAME="${LIB_NAME}/api_client"
DST_DIR="$(cd "$(dirname -- "$0")/.." && pwd)"
Expand Down
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, 22, 0, 'alpha', 0)
VERSION = (2, 21, 3, 'final', 0)

__version__ = get_version(VERSION)
2 changes: 1 addition & 1 deletion cvat/schema.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: CVAT REST API
version: 2.22.0
version: 2.21.3
description: REST API for Computer Vision Annotation Tool (CVAT)
termsOfService: https://www.google.com/policies/terms/
contact:
Expand Down
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.21.3}
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.21.3}
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.21.3}
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.21.3}
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.21.3}
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.21.3}
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.21.3}
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.21.3}
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.21.3}
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 @@ -129,7 +129,7 @@ cvat:
additionalVolumeMounts: []
replicas: 1
image: cvat/server
tag: dev
tag: v2.21.3
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -153,7 +153,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.21.3
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit f1c7a1e

Please sign in to comment.