diff --git a/CHANGELOG.md b/CHANGELOG.md index 02550f9ee8e7..76694d291264 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,65 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 + +## \[2.18.0\] - 2024-09-10 + +### Added + +- New quality settings `Target metric`, `Target metric threshold`, `Max validations per job` + () + +- Ability to specify location when exporting datasets and backups using SDK + () + +- Shortcuts in user interface now may be customized depends on a user requirements + () + +- Added analytics events for function calls + () + +### Changed + +- `Mean annotaion quality` card on quality page now displays a value depending on `Target metric` setting + () + +- When cancelling a request, a user is no longer required to have + permissions to perform the original action + () + +- Lambda function endpoints now return 500 instead of 404 + if a function's metadata is invalid + () + +- An unknown lambda function type is now treated as invalid metadata + and the function is no longer included in the list endpoint output + () + +### Removed + +- Legacy component to setup shortcuts to switch a label + () + +### Fixed + +- An issue that occurred when exporting the same dataset or backup twice in a row using SDK + () +- An issue that occurred when exporting a dataset or backup using SDK + when the default project or task location refers to cloud storage + () + +- Export crashed on skeleton track with missing shapes + () + +- One lambda function with invalid metadata will no longer + break function listing + () + +### Security + +- Fixed a missing authorization vulnerability in webhook delivery endpoints + () + ## \[2.17.0\] - 2024-08-27 diff --git a/changelog.d/20240826_171536_klakhov_update_quality_settings.md b/changelog.d/20240826_171536_klakhov_update_quality_settings.md deleted file mode 100644 index fa29245c025c..000000000000 --- a/changelog.d/20240826_171536_klakhov_update_quality_settings.md +++ /dev/null @@ -1,8 +0,0 @@ -### Added - -- New quality settings `Target metric`, `Target metric threshold`, `Max validations per job` - () - -### Changed -- `Mean annotaion quality` card on quality page now displays a value depending on `Target metric` setting - () diff --git a/changelog.d/20240827_171721_maria_update_high_level_export_sdk.md b/changelog.d/20240827_171721_maria_update_high_level_export_sdk.md deleted file mode 100644 index 5bde9d30d348..000000000000 --- a/changelog.d/20240827_171721_maria_update_high_level_export_sdk.md +++ /dev/null @@ -1,12 +0,0 @@ -### Fixed - -- An issue that occurred when exporting the same dataset or backup twice in a row using SDK - () -- An issue that occurred when exporting a dataset or backup using SDK - when the default project or task location refers to cloud storage - () - -### Added - -- Ability to specify location when exporting datasets and backups using SDK - () diff --git a/changelog.d/20240828_053041_roman_rm_extra_checks.md b/changelog.d/20240828_053041_roman_rm_extra_checks.md deleted file mode 100644 index 74337256b1f4..000000000000 --- a/changelog.d/20240828_053041_roman_rm_extra_checks.md +++ /dev/null @@ -1,5 +0,0 @@ -### Changed - -- When cancelling a request, a user is no longer required to have - permissions to perform the original action - () diff --git a/changelog.d/20240828_125533_sekachev.bs_HEAD.md b/changelog.d/20240828_125533_sekachev.bs_HEAD.md deleted file mode 100644 index 0a9e9093d3de..000000000000 --- a/changelog.d/20240828_125533_sekachev.bs_HEAD.md +++ /dev/null @@ -1,4 +0,0 @@ -### Added - -- Shortcuts in user interface now may be customized depends on a user requirements - () diff --git a/changelog.d/20240902_144949_roman_sec_webhooks_access_control.md b/changelog.d/20240902_144949_roman_sec_webhooks_access_control.md deleted file mode 100644 index e48d6cb25062..000000000000 --- a/changelog.d/20240902_144949_roman_sec_webhooks_access_control.md +++ /dev/null @@ -1,4 +0,0 @@ -### Security - -- Fixed a missing authorization vulnerability in webhook delivery endpoints - () diff --git a/changelog.d/20240903_152945_dmitrii.lavrukhin_skeleton_tracks_with_missing_shapes.md b/changelog.d/20240903_152945_dmitrii.lavrukhin_skeleton_tracks_with_missing_shapes.md deleted file mode 100644 index 9a6e34e22fba..000000000000 --- a/changelog.d/20240903_152945_dmitrii.lavrukhin_skeleton_tracks_with_missing_shapes.md +++ /dev/null @@ -1,4 +0,0 @@ -### Fixed - -- Export crashed on skeleton track with missing shapes - () diff --git a/changelog.d/20240903_155336_roman_function_events.md b/changelog.d/20240903_155336_roman_function_events.md deleted file mode 100644 index 1673e6336346..000000000000 --- a/changelog.d/20240903_155336_roman_function_events.md +++ /dev/null @@ -1,4 +0,0 @@ -### Added - -- Added analytics events for function calls - () diff --git a/changelog.d/20240905_201903_roman_lambda_error_handling.md b/changelog.d/20240905_201903_roman_lambda_error_handling.md deleted file mode 100644 index 323bf7960bf8..000000000000 --- a/changelog.d/20240905_201903_roman_lambda_error_handling.md +++ /dev/null @@ -1,15 +0,0 @@ -### Changed - -- Lambda function endpoints now return 500 instead of 404 - if a function's metadata is invalid - () - -- An unknown lambda function type is now treated as invalid metadata - and the function is no longer included in the list endpoint output - () - -### Fixed - -- One lambda function with invalid metadata will no longer - break function listing - () diff --git a/changelog.d/20240908_224722_sekachev.bs_removed_legacy_component_to_setup_shortcuts.md b/changelog.d/20240908_224722_sekachev.bs_removed_legacy_component_to_setup_shortcuts.md deleted file mode 100644 index 96d6e63f41bc..000000000000 --- a/changelog.d/20240908_224722_sekachev.bs_removed_legacy_component_to_setup_shortcuts.md +++ /dev/null @@ -1,4 +0,0 @@ -### Removed - -- Legacy component to setup shortcuts to switch a label - () diff --git a/cvat-cli/requirements/base.txt b/cvat-cli/requirements/base.txt index 53104e8575e9..faf23813c8aa 100644 --- a/cvat-cli/requirements/base.txt +++ b/cvat-cli/requirements/base.txt @@ -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 diff --git a/cvat-cli/src/cvat_cli/version.py b/cvat-cli/src/cvat_cli/version.py index 36d8b988b2bb..e982493d5113 100644 --- a/cvat-cli/src/cvat_cli/version.py +++ b/cvat-cli/src/cvat_cli/version.py @@ -1 +1 @@ -VERSION = "2.18.0" +VERSION = "2.19.0" diff --git a/cvat-sdk/gen/generate.sh b/cvat-sdk/gen/generate.sh index 6a687d10736b..8e89efeb2bad 100755 --- a/cvat-sdk/gen/generate.sh +++ b/cvat-sdk/gen/generate.sh @@ -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)" diff --git a/cvat/__init__.py b/cvat/__init__.py index b19773b89142..3b50a1130077 100644 --- a/cvat/__init__.py +++ b/cvat/__init__.py @@ -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) diff --git a/cvat/schema.yml b/cvat/schema.yml index e2dd14a57518..badefe355b8d 100644 --- a/cvat/schema.yml +++ b/cvat/schema.yml @@ -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: