Skip to content

Commit

Permalink
Prepare release v2.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Nov 3, 2023
1 parent 9819e6d commit 20892ec
Show file tree
Hide file tree
Showing 19 changed files with 69 additions and 75 deletions.
53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,59 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.8.1'></a>
## \[2.8.1\] - 2023-11-03

### Added

- Support for default bucket prefix
(<https://github.com/opencv/cvat/pull/6943>)
- Search for cloud storage and share files
(<https://github.com/opencv/cvat/pull/6943>)

- Ability to limit one user to one task at a time
(<https://github.com/opencv/cvat/pull/6975>)

- Support for using an external database in a Docker Compose-based deployment
(<https://github.com/opencv/cvat/pull/7055>)

### Changed

- Migrated to rq 1.15.1
(<https://github.com/opencv/cvat/pull/6975>)

- Compressed sequental `change:frame` events into one
(<https://github.com/opencv/cvat/pull/7048>)

- Create a local session for AWS S3 client instead of using the default global one
(<https://github.com/opencv/cvat/pull/7067>)

- Improved performance of chunk preparation when creating tasks
(<https://github.com/opencv/cvat/pull/7081>)

### Fixed

- Race condition in a task data upload request, which may lead to problems with task creation in some specific cases,
such as multiple identical data requests at the same time
(<https://github.com/opencv/cvat/pull/7025>)

- Bug with viewing dependent RQ jobs for downloading resources from
cloud storage when file path contains sub-directories.
This is relevant for admins that can view detailed information about RQ queues.
(<https://github.com/opencv/cvat/pull/6975>)

- OpenCV.js memory leak with TrackerMIL
(<https://github.com/opencv/cvat/pull/7032>)

- Can't deploy detectron serverless function
(<https://github.com/opencv/cvat/pull/7047>)

- A mask becomes visible even if hidden after changing opacity level
(<https://github.com/opencv/cvat/pull/7060>)

- There is no switcher to personal workspace if an organization request failed
(<https://github.com/opencv/cvat/pull/7063>)

<a id='changelog-2.8.0'></a>

## \[2.8.0\] - 2023-10-23
Expand Down

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20231018_224126_andrey_bulk_save_server_files.md

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20231024_105610_boris_fix_detectron.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20231025_101044_boris_keypoints.md

This file was deleted.

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.9.0
cvat-sdk~=2.8.1
Pillow>=10.0.1
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.9.0"
VERSION = "2.8.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.9.0"
VERSION="2.8.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, 9, 0, 'alpha', 0)
VERSION = (2, 8, 1, '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.9.0
version: 2.8.1
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 @@ -43,7 +43,7 @@ services:

cvat_server:
container_name: cvat_server
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand Down Expand Up @@ -77,7 +77,7 @@ services:

cvat_utils:
container_name: cvat_utils
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand All @@ -97,7 +97,7 @@ services:

cvat_worker_import:
container_name: cvat_worker_import
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand All @@ -115,7 +115,7 @@ services:

cvat_worker_export:
container_name: cvat_worker_export
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand All @@ -133,7 +133,7 @@ services:

cvat_worker_annotation:
container_name: cvat_worker_annotation
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand All @@ -152,7 +152,7 @@ services:

cvat_worker_webhooks:
container_name: cvat_worker_webhooks
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand All @@ -171,7 +171,7 @@ services:

cvat_worker_quality_reports:
container_name: cvat_worker_quality_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand All @@ -189,7 +189,7 @@ services:

cvat_worker_analytics_reports:
container_name: cvat_worker_analytics_reports
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.8.1}
restart: always
depends_on:
- cvat_redis
Expand All @@ -207,7 +207,7 @@ services:

cvat_ui:
container_name: cvat_ui
image: cvat/ui:${CVAT_VERSION:-dev}
image: cvat/ui:${CVAT_VERSION:-v2.8.1}
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 @@ -104,7 +104,7 @@ cvat:
additionalVolumeMounts: []
replicas: 1
image: cvat/server
tag: dev
tag: v2.8.1
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -128,7 +128,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.8.1
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit 20892ec

Please sign in to comment.