Skip to content

Commit e7319ea

Browse files
committed
Update changelog
1 parent cca2263 commit e7319ea

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

CHANGELOG.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,26 @@ History
66

77
All release highlights of this project will be documented in this file.
88

9+
4.4.30 - Feb 13, 2025
10+
_____________________
11+
**Added**
12+
13+
- ``SAClient.list_users`` method lists contributors with optional custom field filtering.
14+
- ``SAClient.get_user_metadata`` method retrieves contributor metadata, including option for custom fields.
15+
- ``SAClient.set_user_custom_field`` method sets a custom field for a contributor.
16+
- ``SAClient.pause_user_activity`` method pauses a contributor's activity on specified projects.
17+
- ``SAClient.resume_user_activity`` method resumes a contributor's activity on specified projects.
18+
- ``SAClient.list_projects`` method lists projects with optional custom field filtering.
19+
- ``SAClient.set_project_custom_field`` method sets a custom field for a project.
20+
21+
**Updated**
22+
23+
- ``SAClient.upload_annotations`` added ability to specify the format for processing and transforming annotations before upload, including Multimodal projects.
24+
- ``SAClient.get_annotations`` added ability to specify the format for processing and transforming annotations before retrieving them.
25+
- ``SAClient.list_items`` added ability to retrieve item categories.
26+
- ``SAClient.get_project_metadata`` added ability to retrieve custom fields of projects.
27+
28+
929
4.4.29 - Dec 26, 2024
1030
________________________
1131
**Added**

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44

55

6-
__version__ = "4.4.30dev1"
6+
__version__ = "4.4.30b1"
77

88
os.environ.update({"sa_version": __version__})
99
sys.path.append(os.path.split(os.path.realpath(__file__))[0])

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2813,7 +2813,7 @@ def get_annotations(
28132813
Options are:
28142814
- default: Retains the annotations in their original format.
28152815
- multimodal: Converts annotations for multimodal projects, optimizing for
2816-
compact and modality-specific data representation.
2816+
compact and multimodal-specific data representation.
28172817
28182818
:type data_spec: str, optional
28192819
@@ -2824,8 +2824,8 @@ def get_annotations(
28242824
28252825
sa = SAClient()
28262826
2827-
# Call the upload_annotations function
2828-
response = sa.upload_annotations(
2827+
# Call the get_annotations function
2828+
response = sa.get_annotations(
28292829
project="project1/folder1",
28302830
items=["item_1", "item_2"],
28312831
data_spec='multimodal'

0 commit comments

Comments
 (0)