Skip to content

Commit eaa30e4

Browse files
committed
Prepare release v2.29.0
1 parent fb3bde4 commit eaa30e4

13 files changed

+41
-36
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,29 @@ 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.29.0'></a>
20+
## \[2.29.0\] - 2025-02-10
21+
22+
### Added
23+
24+
- Tasks created from cloud storage can be backed up now
25+
(<https://github.com/cvat-ai/cvat/pull/8972>)
26+
27+
- \[CLI\] `function create-native` now sends the function's declared label types
28+
to the server
29+
(<https://github.com/cvat-ai/cvat/pull/9035>)
30+
31+
### Changed
32+
33+
- When invoking Nuclio functions, labels of type `any` can now be mapped to
34+
labels of all types except `skeleton`
35+
(<https://github.com/cvat-ai/cvat/pull/9050>)
36+
37+
### Fixed
38+
39+
- Fixed invalid server-side track interpolation in tasks with deleted frames
40+
(<https://github.com/cvat-ai/cvat/pull/9059>)
41+
1942
<a id='changelog-2.28.0'></a>
2043
## \[2.28.0\] - 2025-02-06
2144

changelog.d/20250204_153709_dmitrii.lavrukhin_backup_task_from_cloud.md

-4
This file was deleted.

changelog.d/20250204_183545_roman_unknown_any.md

-5
This file was deleted.

changelog.d/20250205_193041_mzhiltso_fix_server_track_interpolation.md

-4
This file was deleted.

changelog.d/20250207_153348_roman_native_function_label_type.md

-5
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.28.1
1+
cvat-sdk==2.29.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.28.1"
1+
VERSION = "2.29.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.28.1"
11+
VERSION="2.29.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.28.1",
3+
"version": "2.29.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, 28, 1, "alpha", 0)
7+
VERSION = (2, 29, 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.28.1
4+
version: 2.29.0
55
description: REST API for Computer Vision Annotation Tool (CVAT)
66
termsOfService: https://www.google.com/policies/terms/
77
contact:

docker-compose.yml

+10-10
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.29.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.29.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.29.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.29.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.29.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.29.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.29.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.29.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.29.0}
232232
restart: always
233233
depends_on: *backend-deps
234234
environment:
@@ -244,7 +244,7 @@ services:
244244

245245
cvat_ui:
246246
container_name: cvat_ui
247-
image: cvat/ui:${CVAT_VERSION:-dev}
247+
image: cvat/ui:${CVAT_VERSION:-v2.29.0}
248248
restart: always
249249
depends_on:
250250
- cvat_server

helm-chart/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ cvat:
139139
additionalVolumeMounts: []
140140
replicas: 1
141141
image: cvat/server
142-
tag: dev
142+
tag: v2.29.0
143143
imagePullPolicy: Always
144144
permissionFix:
145145
enabled: true
@@ -161,7 +161,7 @@ cvat:
161161
frontend:
162162
replicas: 1
163163
image: cvat/ui
164-
tag: dev
164+
tag: v2.29.0
165165
imagePullPolicy: Always
166166
labels: {}
167167
# test: test

0 commit comments

Comments
 (0)