diff --git a/CHANGELOG.md b/CHANGELOG.md index 4311669c59ed..1cf408adabb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 () + ## \[2.4.7] - 2023-06-16 ### Added - \[API\] API Now supports the creation and removal of Ground Truth jobs. () diff --git a/cvat/__init__.py b/cvat/__init__.py index ce617bde5f8a..120a2f69091f 100644 --- a/cvat/__init__.py +++ b/cvat/__init__.py @@ -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) diff --git a/cvat/apps/engine/media_extractors.py b/cvat/apps/engine/media_extractors.py index 447e1d73a1e3..3fcffed9edef 100644 --- a/cvat/apps/engine/media_extractors.py +++ b/cvat/apps/engine/media_extractors.py @@ -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)) diff --git a/cvat/schema.yml b/cvat/schema.yml index 52bc6642e7ce..03dd6771bfa7 100644 --- a/cvat/schema.yml +++ b/cvat/schema.yml @@ -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: diff --git a/docker-compose.yml b/docker-compose.yml index 45bf80e6e7f7..e9107a344ac6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index c12f2e23df27..5b893987b80a 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -85,7 +85,7 @@ cvat: additionalVolumeMounts: [] replicas: 1 image: cvat/server - tag: v2.4.7 + tag: v2.4.8 imagePullPolicy: Always permissionFix: enabled: true @@ -105,7 +105,7 @@ cvat: frontend: replicas: 1 image: cvat/ui - tag: v2.4.7 + tag: v2.4.8 imagePullPolicy: Always labels: {} # test: test