Skip to content

Commit

Permalink
Merge pull request #8850 from cvat-ai/dev-release-2.24.0
Browse files Browse the repository at this point in the history
Update develop after v2.24.0
  • Loading branch information
azhavoro authored Dec 20, 2024
2 parents b2a8c1b + 1f29aae commit 54534e8
Show file tree
Hide file tree
Showing 17 changed files with 72 additions and 74 deletions.
67 changes: 67 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,73 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.24.0'></a>
## \[2.24.0\] - 2024-12-20

### Added

- \[CLI\] Added new commands: `project create`, `project delete`, `project ls`
(<https://github.com/cvat-ai/cvat/pull/8787>)

- \[SDK\] You can now use `client.projects.remove_by_ids` to remove multiple
projects
(<https://github.com/cvat-ai/cvat/pull/8787>)

- Support for boolean parameters in annotations actions
(<https://github.com/cvat-ai/cvat/pull/8798>)

### Changed

- Improved uniformity of validation frames distribution in honeypot tasks and
random honeypot rerolls
(<https://github.com/cvat-ai/cvat/pull/8776>)

- \[CLI\] Switched to a new subcommand hierarchy; now CLI subcommands
have the form `cvat-cli <resource> <action>`
(<https://github.com/cvat-ai/cvat/pull/8787>)

- \[CLI\] The output of the `task create`, `task create-from-backup` and
`project create` commands is now just the created resource ID,
making it machine-readable
(<https://github.com/cvat-ai/cvat/pull/8833>)

- /api/events can now be used to receive events from several sources
(<https://github.com/cvat-ai/cvat/pull/8799>)

### Deprecated

- \[CLI\] All existing CLI commands of the form `cvat-cli <action>`
are now deprecated. Use `cvat-cli task <action>` instead
(<https://github.com/cvat-ai/cvat/pull/8787>)

### Removed

- Automatic calculation of quality reports in tasks
(<https://github.com/cvat-ai/cvat/pull/8790>)

### Fixed

- Uploading a skeleton template in configurator does not work
(<https://github.com/cvat-ai/cvat/pull/8822>)

- Installation of YOLOv7 on GPU
(<https://github.com/cvat-ai/cvat/pull/8824>)

- \[Server API\] Significantly improved preformance of honeypot changes in tasks
(<https://github.com/cvat-ai/cvat/pull/8789>)
- \[Server API\] `PATCH tasks/id/validation_layout` responses now include correct
`disabled_frames` and handle simultaneous updates of
`disabled_frames` and honeypot frames correctly
(<https://github.com/cvat-ai/cvat/pull/8789>)

- Fixed handling of tracks keyframes from deleted frames on export
(<https://github.com/cvat-ai/cvat/pull/8834>)

- Exporting datasets could start significantly later than expected, both for 1
and several users in the same project/task/job (<https://github.com/cvat-ai/cvat/pull/8721>)
- Scheduled RQ jobs could not be restarted due to incorrect RQ job status
updating and handling (<https://github.com/cvat-ai/cvat/pull/8721>)

<a id='changelog-2.23.1'></a>
## \[2.23.1\] - 2024-12-09

Expand Down

This file was deleted.

20 changes: 0 additions & 20 deletions changelog.d/20241206_184906_roman_cli_hierarchy.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20241209_110126_sekachev.bs_support_boolean.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions changelog.d/20241216_144316_roman_machine_readable_create.md

This file was deleted.

This file was deleted.

This file was deleted.

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.23.2
cvat-sdk~=2.24.1
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.23.2"
VERSION = "2.24.1"
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.23.2"
VERSION="2.24.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/__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, 23, 2, "alpha", 0)
VERSION = (2, 24, 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.23.2
version: 2.24.1
description: REST API for Computer Vision Annotation Tool (CVAT)
termsOfService: https://www.google.com/policies/terms/
contact:
Expand Down

0 comments on commit 54534e8

Please sign in to comment.