Skip to content

Commit

Permalink
Prepare release v2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Feb 23, 2024
1 parent 2c5bb69 commit 0a14ea5
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 36 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.11.0'></a>
## \[2.11.0\] - 2024-02-23

### Added

- Added `dataset:export` and `dataset:import` events that are logged when
the user initiates an export or import of a project, task or job
(<https://github.com/opencv/cvat/pull/7476>)

### Changed

- Now menus in the web interface are triggered by click, not by hover as before
(<https://github.com/opencv/cvat/pull/7431>)

### Removed

- Removed support for the TFRecord dataset format
(<https://github.com/opencv/cvat/pull/7416>)

### Fixed

- On quality page for a task, only the first page with jobs has quality report metrics
(<https://github.com/opencv/cvat/pull/7441>)

- Side effects of data changes, such as the sending of webhooks,
are no longer triggered until after the changes have been committed
to the database
(<https://github.com/opencv/cvat/pull/7460>,
<https://github.com/opencv/cvat/pull/7477>)

<a id='changelog-2.10.3'></a>
## \[2.10.3\] - 2024-02-09

Expand Down
4 changes: 0 additions & 4 deletions changelog.d/20240131_180300_roman_remove_tfrecord.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240206_125854_klakhov_quality_bugfixes.md

This file was deleted.

7 changes: 0 additions & 7 deletions changelog.d/20240209_171518_roman_handle_after_transaction.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240213_010700_roman_import_export_events.md

This file was deleted.

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, 11, 0, 'alpha', 0)
VERSION = (2, 11, 0, 'final', 0)

__version__ = get_version(VERSION)
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.0}
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.0}
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.0}
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.0}
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.0}
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.0}
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.0}
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.0}
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.0}
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.0
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -137,7 +137,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.11.0
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit 0a14ea5

Please sign in to comment.