Skip to content

Commit

Permalink
Prepare release v2.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cvat-bot[bot] committed Jun 5, 2024
1 parent c66bbfc commit 6bba485
Show file tree
Hide file tree
Showing 19 changed files with 63 additions and 65 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,53 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

<a id='changelog-2.14.1'></a>
## \[2.14.1\] - 2024-06-05

### Added

- Improved message of DatasetNotFoundError
(<https://github.com/cvat-ai/cvat/pull/7923>)

### Changed

- Upgraded React and Antd dependencies, it leads to stylistic changes in the user interface
(<https://github.com/cvat-ai/cvat/pull/7466>)

- CVAT now stores users' working time in events of a dedicated type
(<https://github.com/cvat-ai/cvat/pull/7958>)

### Fixed

- The 500 / "The result file does not exist in export cache" error
on dataset export request
(<https://github.com/cvat-ai/cvat/pull/7864>)

- Fix missing serviceName field in kvrocks (issue #7741)
(<https://github.com/cvat-ai/cvat/pull/7924>)

- UI crash on hovering conflict related to hidden objects
(<https://github.com/cvat-ai/cvat/pull/7917>)

- Login when the domain of a user email contains capital symbols and a user was created after being invited to an org
(<https://github.com/cvat-ai/cvat/pull/7906>)

- Exception **"Cannot set properties of undefined (setting 'serverID')"** occurs when attempting
to save a job after removing the first keyframe of a track (<https://github.com/cvat-ai/cvat/pull/7949>)

- Spent working time for a user may not be counted in analytics
(<https://github.com/cvat-ai/cvat/pull/7942>)

- A classifier model can not be used on annotation view (unknown object shape error)
(<https://github.com/cvat-ai/cvat/pull/7839>)

- Optimized memory usage by not keeping all downloaded images/part of images in memory while creating a manifest file
(<https://github.com/cvat-ai/cvat/pull/7969>)
- Optimized the number of requests to CS providers by downloading only images from a specified range
(`use_cache==False`) (<https://github.com/cvat-ai/cvat/pull/7969>)
- Task creation with random sorting and cloud data
(<https://github.com/cvat-ai/cvat/pull/7969>)

<a id='changelog-2.14.0'></a>
## \[2.14.0\] - 2024-05-21

Expand Down

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240509_160805_boris_upgrade_react.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240521_182333_klakhov_fix_conflicts_render.md

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240527_144126_boris_fix_7879.md

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240528_154012_boris_fixed_working_time.md

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240529_154845_boris_dedicated_event_for_wt.md

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.15.0
cvat-sdk~=2.14.1
Pillow>=10.3.0
setuptools>=70.0.0 # 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.15.0"
VERSION = "2.14.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.15.0"
VERSION="2.14.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, 15, 0, 'alpha', 0)
VERSION = (2, 14, 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.15.0
version: 2.14.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 @@ -72,7 +72,7 @@ services:

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

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

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

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

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

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

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

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

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

0 comments on commit 6bba485

Please sign in to comment.