Skip to content

Commit

Permalink
Merge pull request #8425 from cvat-ai/dev-release-2.18.0
Browse files Browse the repository at this point in the history
Update develop after v2.18.0
  • Loading branch information
azhavoro authored Sep 10, 2024
2 parents 0fafb79 + 99358c4 commit 264e828
Show file tree
Hide file tree
Showing 15 changed files with 64 additions and 65 deletions.
59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,65 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.18.0'></a>
## \[2.18.0\] - 2024-09-10

### Added

- New quality settings `Target metric`, `Target metric threshold`, `Max validations per job`
(<https://github.com/cvat-ai/cvat/pull/8347>)

- Ability to specify location when exporting datasets and backups using SDK
(<https://github.com/cvat-ai/cvat/pull/8255>)

- Shortcuts in user interface now may be customized depends on a user requirements
(<https://github.com/cvat-ai/cvat/pull/8186>)

- Added analytics events for function calls
(<https://github.com/cvat-ai/cvat/pull/8395>)

### Changed

- `Mean annotaion quality` card on quality page now displays a value depending on `Target metric` setting
(<https://github.com/cvat-ai/cvat/pull/8347>)

- When cancelling a request, a user is no longer required to have
permissions to perform the original action
(<https://github.com/cvat-ai/cvat/pull/8369>)

- Lambda function endpoints now return 500 instead of 404
if a function's metadata is invalid
(<https://github.com/cvat-ai/cvat/pull/8406>)

- An unknown lambda function type is now treated as invalid metadata
and the function is no longer included in the list endpoint output
(<https://github.com/cvat-ai/cvat/pull/8406>)

### Removed

- Legacy component to setup shortcuts to switch a label
(<https://github.com/cvat-ai/cvat/pull/8416>)

### Fixed

- An issue that occurred when exporting the same dataset or backup twice in a row using SDK
(<https://github.com/cvat-ai/cvat/pull/8255>)
- An issue that occurred when exporting a dataset or backup using SDK
when the default project or task location refers to cloud storage
(<https://github.com/cvat-ai/cvat/pull/8255>)

- Export crashed on skeleton track with missing shapes
(<https://github.com/cvat-ai/cvat/pull/8377>)

- One lambda function with invalid metadata will no longer
break function listing
(<https://github.com/cvat-ai/cvat/pull/8406>)

### Security

- Fixed a missing authorization vulnerability in webhook delivery endpoints
(<https://github.com/cvat-ai/cvat/security/advisories/GHSA-p3c9-m7jr-jxxj>)

<a id='changelog-2.17.0'></a>
## \[2.17.0\] - 2024-08-27

Expand Down

This file was deleted.

12 changes: 0 additions & 12 deletions changelog.d/20240827_171721_maria_update_high_level_export_sdk.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240828_053041_roman_rm_extra_checks.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240828_125533_sekachev.bs_HEAD.md

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240903_155336_roman_function_events.md

This file was deleted.

15 changes: 0 additions & 15 deletions changelog.d/20240905_201903_roman_lambda_error_handling.md

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.18.0
cvat-sdk~=2.19.0
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.18.0"
VERSION = "2.19.0"
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.18.0"
VERSION="2.19.0"
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, 18, 0, 'alpha', 0)
VERSION = (2, 19, 0, '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.18.0
version: 2.19.0
description: REST API for Computer Vision Annotation Tool (CVAT)
termsOfService: https://www.google.com/policies/terms/
contact:
Expand Down

0 comments on commit 264e828

Please sign in to comment.