Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
azhavoro authored Feb 10, 2025
2 parents 439bcc6 + db293b7 commit 8890ad2
Show file tree
Hide file tree
Showing 13 changed files with 35 additions and 25 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.29.0'></a>
## \[2.29.0\] - 2025-02-10

### Added

- Tasks created from cloud storage can be backed up now
(<https://github.com/cvat-ai/cvat/pull/8972>)

- \[CLI\] `function create-native` now sends the function's declared label types
to the server
(<https://github.com/cvat-ai/cvat/pull/9035>)

### Changed

- When invoking Nuclio functions, labels of type `any` can now be mapped to
labels of all types except `skeleton`
(<https://github.com/cvat-ai/cvat/pull/9050>)

### Fixed

- Fixed invalid server-side track interpolation in tasks with deleted frames
(<https://github.com/cvat-ai/cvat/pull/9059>)

<a id='changelog-2.28.0'></a>
## \[2.28.0\] - 2025-02-06

Expand Down

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20250204_183545_roman_unknown_any.md

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 5 additions & 0 deletions changelog.d/20250210_172119_roman_missing_kwargs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### Fixed

- \[SDK\] `skeleton_label_spec` now correctly forwards `kwargs` to
`PatchedLabelRequest`
(<https://github.com/cvat-ai/cvat/pull/9087>)
2 changes: 1 addition & 1 deletion cvat-cli/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cvat-sdk==2.28.1
cvat-sdk==2.29.1

attrs>=24.2.0
Pillow>=10.3.0
Expand Down
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.28.1"
VERSION = "2.29.1"
2 changes: 1 addition & 1 deletion cvat-sdk/cvat_sdk/auto_annotation/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def skeleton_label_spec(
name: str, id: int, sublabels: Sequence[models.SublabelRequest], **kwargs
) -> models.PatchedLabelRequest:
"""Helper factory function for PatchedLabelRequest with type="skeleton"."""
return models.PatchedLabelRequest(name=name, id=id, type="skeleton", sublabels=sublabels)
return label_spec(name, id, type="skeleton", sublabels=sublabels, **kwargs)


# pylint: disable-next=redefined-builtin
Expand Down
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.28.1"
VERSION="2.29.1"
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-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "2.28.1",
"version": "2.29.1",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {
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, 28, 1, "alpha", 0)
VERSION = (2, 29, 1, "alpha", 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.28.1
version: 2.29.1
description: REST API for Computer Vision Annotation Tool (CVAT)
termsOfService: https://www.google.com/policies/terms/
contact:
Expand Down

0 comments on commit 8890ad2

Please sign in to comment.