Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog
All release highlights of this project will be documented in this file.
## 4.4.10 - March 12, 2023
### Updated
- Configuration file creation flow
- `SAClient.search_projects()` method, removed `include_complete_image_count` argument, use `include_complete_item_count` instead.
- `SAClient.get_project_metadata()` method, removed `include_complete_image_count` argument, use `include_complete_item_count` instead.
- `SAClient.create_project()` method to support classes, workflows and instructions_link.
### Fixed
- `SAClient.clone_project()` method to address the issue of FPS mode is not being copied.
### Deprecated
- `SAClient.create_project_from_metadata()` method, use `SAClient.create_project()` instead.
- `SAClient.get_project_image_count()` method, use `SAClient.get_project_metadata()` instead.
### Removed
- `SAClient.class_distribution()` method
- `SAClient.benchmark()` method
## 4.4.9 - January 29, 2023
### Added
- `SAClient.set_approval_statuses` _method_ function to change the approval status of items (images, audio / videos) in bulk.
Expand Down
1 change: 1 addition & 0 deletions src/superannotate/lib/core/entities/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class GroupTypeEnum(str, Enum):
CHECKLIST = "checklist"
NUMERIC = "numeric"
TEXT = "text"
OCR = "ocr"


class StringDate(datetime):
Expand Down
1 change: 1 addition & 0 deletions tests/integration/classes/test_classes_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,5 @@ def test_group_type_wrong_arg(self):
"'checklist',",
"'numeric',",
"'text'",
"'ocr'",
] == wrap_error(e).split()