Skip to content

Commit

Permalink
Prepare release v2.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Mar 11, 2024
1 parent 009f9f8 commit 68f13a0
Show file tree
Hide file tree
Showing 14 changed files with 45 additions and 44 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

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

### Changed

- Sped up resource updates when there are no matching webhooks
(<https://github.com/opencv/cvat/pull/7553>)

### Fixed

- Job and task `updated_date` are no longer bumped twice when updating
annotations
(<https://github.com/opencv/cvat/pull/7556>)

- Sending `PATCH /jobs/{id}/data/meta` on each job save even if nothing changed in meta data
(<https://github.com/opencv/cvat/pull/7560>)
- Sending `GET /jobs/{id}/data/meta` twice on each job load
(<https://github.com/opencv/cvat/pull/7560>)

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

- Fixed being unable to connect to in-mem Redis
when the password includes URL-unsafe characters
(<https://github.com/opencv/cvat/pull/7577>)

- Segment anything decoder is loaded anytime when CVAT is opened, but might be not required
(<https://github.com/opencv/cvat/pull/7564>)

<a id='changelog-2.11.1'></a>
## \[2.11.1\] - 2024-03-05

Expand Down
4 changes: 0 additions & 4 deletions changelog.d/20240305_171241_roman_webhooks_lazy_rendering.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240305_193358_roman_less_bumpy.md

This file was deleted.

6 changes: 0 additions & 6 deletions changelog.d/20240306_181839_kirill.9992_fix_meta_requests.md

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/20240308_193911_roman_extra_encoding.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240311_093929_klakhov_improve_sam.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.2
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.2"
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.2"
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, 2, '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.2
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.2}
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.2}
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.2}
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.2}
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.2}
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.2}
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.2}
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.2}
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.2}
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.2
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -137,7 +137,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.11.2
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit 68f13a0

Please sign in to comment.