Skip to content

Commit d3c7766

Browse files
committed
Prepare release v2.31.0
1 parent 5fbf59a commit d3c7766

18 files changed

+70
-72
lines changed

CHANGELOG.md

+51
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,57 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
<!-- scriv-insert-here -->
1818

19+
<a id='changelog-2.31.0'></a>
20+
## \[2.31.0\] - 2025-03-03
21+
22+
### Added
23+
24+
- \[SDK\] Auto-annotation detection functions can now output shape/keypoint attributes
25+
(<https://github.com/cvat-ai/cvat/pull/9090>)
26+
27+
- \[SDK\] Added a utility module for working with label attributes,
28+
`cvat_sdk.attributes`
29+
(<https://github.com/cvat-ai/cvat/pull/9090>)
30+
31+
- Simple merging for consensus-enabled tasks
32+
(<https://github.com/cvat-ai/cvat/pull/8953>)
33+
34+
- A setting to display rectangles and ellipses dimensions and rotation
35+
(<https://github.com/cvat-ai/cvat/pull/9142>)
36+
37+
### Changed
38+
39+
- Hidden points in skeletons now also contribute to the skeleton similarity
40+
in quality computations and in consensus merging
41+
(<https://github.com/cvat-ai/cvat/pull/8953>)
42+
43+
- SDK `task.upload_data()` can accept resources of the `Path` type
44+
when `resource_type` is `REMOTE` or `SHARE`
45+
(<https://github.com/cvat-ai/cvat/pull/9114>)
46+
47+
### Deprecated
48+
49+
- Utilizing `PUT /api/tasks|jobs/id/annotations?rq_id=rq_id` API endpoint
50+
to check the status of the import process
51+
(<https://github.com/cvat-ai/cvat/pull/9102>)
52+
53+
### Fixed
54+
55+
- 500 status code returned by API endpoints that support TUS OPTIONS requests
56+
(<https://github.com/cvat-ai/cvat/pull/9077>)
57+
58+
- Possible race condition that could occur when importing annotations
59+
(<https://github.com/cvat-ai/cvat/pull/9102>)
60+
61+
- Issue label scaling on image filter application
62+
(<https://github.com/cvat-ai/cvat/pull/9126>)
63+
64+
- Invalid display of images in simple GT jobs
65+
(<https://github.com/cvat-ai/cvat/pull/9155>)
66+
67+
- Related images in a simple GT jobs are displayed incorrectly
68+
(<https://github.com/cvat-ai/cvat/pull/9162>)
69+
1970
<a id='changelog-2.30.0'></a>
2071
## \[2.30.0\] - 2025-02-14
2172

changelog.d/20250211_145801_roman_aa_attributes.md

-8
This file was deleted.

changelog.d/20250212_115404_maria_fix_type_annotation.md

-4
This file was deleted.

changelog.d/20250213_182204_mzhiltso_consensus_simple_merging.md

-10
This file was deleted.

changelog.d/20250214_123016_maria_fix_rq_job_can_depends_on_itself.md

-10
This file was deleted.

changelog.d/20250220_003314_ravinduwe_resource_path_fix.md

-5
This file was deleted.

changelog.d/20250224_103541_klakhov_fix_fit.md

-4
This file was deleted.

changelog.d/20250224_114044_sekachev.bs_display_dimensions_support.md

-4
This file was deleted.

changelog.d/20250228_163221_mzhiltso_fix_included_frame_handling.md

-4
This file was deleted.

changelog.d/20250303_114253_mzhiltso_fix_related_image_display_in_gt_jobs.md

-4
This file was deleted.

cvat-cli/requirements/base.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cvat-sdk==2.30.1
1+
cvat-sdk==2.31.0
22

33
attrs>=24.2.0
44
Pillow>=10.3.0

cvat-cli/src/cvat_cli/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.30.1"
1+
VERSION = "2.31.0"

cvat-sdk/gen/generate.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88

99
GENERATOR_VERSION="v6.0.1"
1010

11-
VERSION="2.30.1"
11+
VERSION="2.31.0"
1212
LIB_NAME="cvat_sdk"
1313
LAYER1_LIB_NAME="${LIB_NAME}/api_client"
1414
DST_DIR="$(cd "$(dirname -- "$0")/.." && pwd)"

cvat-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cvat-ui",
3-
"version": "2.30.1",
3+
"version": "2.31.0",
44
"description": "CVAT single-page application",
55
"main": "src/index.tsx",
66
"scripts": {

cvat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
from cvat.utils.version import get_version
66

7-
VERSION = (2, 30, 1, "alpha", 0)
7+
VERSION = (2, 31, 0, "final", 0)
88

99
__version__ = get_version(VERSION)

cvat/schema.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: CVAT REST API
4-
version: 2.30.1
4+
version: 2.31.0
55
description: REST API for Computer Vision Annotation Tool (CVAT)
66
termsOfService: https://www.google.com/policies/terms/
77
contact:

docker-compose.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ services:
8181

8282
cvat_server:
8383
container_name: cvat_server
84-
image: cvat/server:${CVAT_VERSION:-dev}
84+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
8585
restart: always
8686
depends_on:
8787
<<: *backend-deps
@@ -115,7 +115,7 @@ services:
115115

116116
cvat_utils:
117117
container_name: cvat_utils
118-
image: cvat/server:${CVAT_VERSION:-dev}
118+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
119119
restart: always
120120
depends_on: *backend-deps
121121
environment:
@@ -132,7 +132,7 @@ services:
132132

133133
cvat_worker_import:
134134
container_name: cvat_worker_import
135-
image: cvat/server:${CVAT_VERSION:-dev}
135+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
136136
restart: always
137137
depends_on: *backend-deps
138138
environment:
@@ -148,7 +148,7 @@ services:
148148

149149
cvat_worker_export:
150150
container_name: cvat_worker_export
151-
image: cvat/server:${CVAT_VERSION:-dev}
151+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
152152
restart: always
153153
depends_on: *backend-deps
154154
environment:
@@ -164,7 +164,7 @@ services:
164164

165165
cvat_worker_annotation:
166166
container_name: cvat_worker_annotation
167-
image: cvat/server:${CVAT_VERSION:-dev}
167+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
168168
restart: always
169169
depends_on: *backend-deps
170170
environment:
@@ -180,7 +180,7 @@ services:
180180

181181
cvat_worker_webhooks:
182182
container_name: cvat_worker_webhooks
183-
image: cvat/server:${CVAT_VERSION:-dev}
183+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
184184
restart: always
185185
depends_on: *backend-deps
186186
environment:
@@ -196,7 +196,7 @@ services:
196196

197197
cvat_worker_quality_reports:
198198
container_name: cvat_worker_quality_reports
199-
image: cvat/server:${CVAT_VERSION:-dev}
199+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
200200
restart: always
201201
depends_on: *backend-deps
202202
environment:
@@ -212,7 +212,7 @@ services:
212212

213213
cvat_worker_analytics_reports:
214214
container_name: cvat_worker_analytics_reports
215-
image: cvat/server:${CVAT_VERSION:-dev}
215+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
216216
restart: always
217217
depends_on: *backend-deps
218218
environment:
@@ -228,7 +228,7 @@ services:
228228

229229
cvat_worker_chunks:
230230
container_name: cvat_worker_chunks
231-
image: cvat/server:${CVAT_VERSION:-dev}
231+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
232232
restart: always
233233
depends_on: *backend-deps
234234
environment:
@@ -244,7 +244,7 @@ services:
244244

245245
cvat_worker_consensus:
246246
container_name: cvat_worker_consensus
247-
image: cvat/server:${CVAT_VERSION:-dev}
247+
image: cvat/server:${CVAT_VERSION:-v2.31.0}
248248
restart: always
249249
depends_on: *backend-deps
250250
environment:
@@ -260,7 +260,7 @@ services:
260260

261261
cvat_ui:
262262
container_name: cvat_ui
263-
image: cvat/ui:${CVAT_VERSION:-dev}
263+
image: cvat/ui:${CVAT_VERSION:-v2.31.0}
264264
restart: always
265265
depends_on:
266266
- cvat_server

helm-chart/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ cvat:
149149
additionalVolumeMounts: []
150150
replicas: 1
151151
image: cvat/server
152-
tag: dev
152+
tag: v2.31.0
153153
imagePullPolicy: Always
154154
permissionFix:
155155
enabled: true
@@ -171,7 +171,7 @@ cvat:
171171
frontend:
172172
replicas: 1
173173
image: cvat/ui
174-
tag: dev
174+
tag: v2.31.0
175175
imagePullPolicy: Always
176176
labels: {}
177177
# test: test

0 commit comments

Comments
 (0)