Skip to content

Commit

Permalink
Merge pull request #6356 from opencv/bs/hotfix
Browse files Browse the repository at this point in the history
Release 2.4.8
  • Loading branch information
bsekachev authored Jun 22, 2023
2 parents d29b84c + e0ea7f2 commit ab020f5
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## \[2.4.8] - 2023-06-22
### Fixed
- Getting original chunks for items in specific cases (<https://github.com/opencv/cvat/pull/6355>)

## \[2.4.7] - 2023-06-16
### Added
- \[API\] API Now supports the creation and removal of Ground Truth jobs. (<https://github.com/opencv/cvat/pull/6204>)
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, 4, 7, 'final', 0)
VERSION = (2, 4, 8, 'final', 0)

__version__ = get_version(VERSION)
2 changes: 1 addition & 1 deletion cvat/apps/engine/media_extractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def _write_pcd_file(self, image):
def save_as_chunk(self, images, chunk_path):
with zipfile.ZipFile(chunk_path, 'x') as zip_chunk:
for idx, (image, path, _) in enumerate(images):
ext = os.path.splitext(path)[1]
ext = os.path.splitext(path)[1].replace('.', '')
output = io.BytesIO()
if self._dimension == DimensionType.DIM_2D:
pil_image = rotate_within_exif(Image.open(image))
Expand Down
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.4.7
version: 2.4.8
description: REST API for Computer Vision Annotation Tool (CVAT)
termsOfService: https://www.google.com/policies/terms/
contact:
Expand Down
16 changes: 8 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:

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

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

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

cvat_worker_export:
container_name: cvat_worker_export
image: cvat/server:${CVAT_VERSION:-v2.4.7}
image: cvat/server:${CVAT_VERSION:-v2.4.8}
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:-v2.4.7}
image: cvat/server:${CVAT_VERSION:-v2.4.8}
restart: always
depends_on:
- cvat_redis
Expand All @@ -156,7 +156,7 @@ services:

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

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

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

0 comments on commit ab020f5

Please sign in to comment.