Skip to content

Commit

Permalink
Prepare release v2.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Apr 2, 2024
1 parent 9c04b0c commit 17197bf
Show file tree
Hide file tree
Showing 25 changed files with 85 additions and 93 deletions.
69 changes: 69 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,75 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.11.3'></a>
## \[2.11.3\] - 2024-04-02

### Added

- Tooltips for long names on cards (projects, tasks, cloud storages, and models)
(<https://github.com/opencv/cvat/pull/7550>)

### Removed

- The `POST /api/tasks/{id}/data` endpoint no longer accepts several
parameters that didn't have any useful function: `size`,
`compressed_chunk_type`, `original_chunk_type`
(<https://github.com/opencv/cvat/pull/7663>)

### Fixed

- Duplicated notifications for automatic annotation
(<https://github.com/opencv/cvat/pull/7595>)

- Made quality report update job scheduling more efficient
(<https://github.com/opencv/cvat/pull/7596>)

- Incorrect file name usage when importing annotations from a cloud storage
(<https://github.com/opencv/cvat/pull/7599>)

- Using single shape annotation mode with multiple labels
(<https://github.com/opencv/cvat/pull/XXXX>)

- Part of sidebar not visible in attribute annotation mode when there are a lot of attribute values
(<https://github.com/opencv/cvat/pull/7610>)

- Changed interpolation behavior in `annotation.py`, now correctly keep the last frame
- Insert last frame if it is key to the track, fixes data corruption when tracks crossing more than 1 jobs
(<https://github.com/opencv/cvat/pull/7615>)

- Label constructor validation of empty label names
(<https://github.com/opencv/cvat/pull/7627>)

- Incorrect alignment of empty job list component
(<https://github.com/opencv/cvat/pull/7621>)

- Remove underlying pixels feature is not applied immediately
(<https://github.com/opencv/cvat/pull/7637>)

- Corrected the formula for per-class accuracy in quality reports;
the old formula is now exposed as the `jaccard_index` key
(<https://github.com/opencv/cvat/pull/7640>)

- Sending `/events` request from logged-out user (<https://github.com/opencv/cvat/pull/7608>)

- Fixed accuracy being displayed incorrectly on the task analytics page
(<https://github.com/opencv/cvat/pull/7652>)

- Fixed an invalid default overlap size being selected for video tasks
with small segments
(<https://github.com/opencv/cvat/pull/7681>)

- Fixed redundant jobs being created for tasks with non-zero overlap
in certain cases
(<https://github.com/opencv/cvat/pull/7681>)

- Accumulation of confusion matrix across all jobs in a task when creating a quality report
(<https://github.com/opencv/cvat/pull/7604>)

- 90 deg-rotated video was added with "Prefer Zip Chunks" disabled
was warped, fixed using the static cropImage function.
(<https://github.com/opencv/cvat/pull/7583>)

<a id='changelog-2.11.2'></a>
## \[2.11.2\] - 2024-03-11

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240314_105752_boris_fixed_ssa.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240314_162039_boris_added_scroll_aam.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240315_183623_avaicode.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240318_203856_kavikumarceo.md

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240319_183656_roman_accuracy_jaccard.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240321_153828_roman_fix_accuracy_display.md

This file was deleted.

6 changes: 0 additions & 6 deletions changelog.d/20240322_193952_roman_clean_data_serializer.md

This file was deleted.

9 changes: 0 additions & 9 deletions changelog.d/20240326_133323_roman_segmentation_fix.md

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240326_195957_tahamukhtar20.md

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.12.0
cvat-sdk~=2.11.3
Pillow>=10.1.0
setuptools>=65.5.1 # 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.12.0"
VERSION = "2.11.3"
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.12.0"
VERSION="2.11.3"
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, 12, 0, 'alpha', 0)
VERSION = (2, 11, 3, 'final', 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.12.0
version: 2.11.3
description: REST API for Computer Vision Annotation Tool (CVAT)
termsOfService: https://www.google.com/policies/terms/
contact:
Expand Down
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ services:

cvat_server:
container_name: cvat_server
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on:
<<: *backend-deps
Expand Down Expand Up @@ -105,7 +105,7 @@ services:

cvat_utils:
container_name: cvat_utils
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -122,7 +122,7 @@ services:

cvat_worker_import:
container_name: cvat_worker_import
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -138,7 +138,7 @@ services:

cvat_worker_export:
container_name: cvat_worker_export
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -154,7 +154,7 @@ services:

cvat_worker_annotation:
container_name: cvat_worker_annotation
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -170,7 +170,7 @@ services:

cvat_worker_webhooks:
container_name: cvat_worker_webhooks
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -186,7 +186,7 @@ services:

cvat_worker_quality_reports:
container_name: cvat_worker_quality_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -202,7 +202,7 @@ services:

cvat_worker_analytics_reports:
container_name: cvat_worker_analytics_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on: *backend-deps
environment:
Expand All @@ -218,7 +218,7 @@ services:

cvat_ui:
container_name: cvat_ui
image: cvat/ui:${CVAT_VERSION:-dev}
image: cvat/ui:${CVAT_VERSION:-v2.11.3}
restart: always
depends_on:
- cvat_server
Expand Down
4 changes: 2 additions & 2 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ cvat:
additionalVolumeMounts: []
replicas: 1
image: cvat/server
tag: dev
tag: v2.11.3
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -137,7 +137,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.11.3
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit 17197bf

Please sign in to comment.