Skip to content

Commit 101f898

Browse files
authored
Merge pull request #812 from superannotateai/docs
updated changelog.rst
2 parents 2716306 + 45778d6 commit 101f898

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CHANGELOG.rst

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

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

9+
4.4.38 - August 20, 2025
10+
________________________
11+
12+
**Updated**
13+
14+
- ``SAClient.create_project`` now supports template uploads for Multimodal projects with the addition of a new ``form`` parameter.
15+
- ``SAClient.upload_video_to_project`` should install ``ffmpeg-python`` manually for the function.
16+
- ``SAClient.upload_videos_from_folder_to_project`` should install ``ffmpeg-python`` manually for the function.
17+
18+
919
4.4.37 - July 18, 2025
1020
______________________
1121

src/superannotate/lib/core/plugin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ def get_video_rotate_code(video_path, log):
197197
}
198198
try:
199199
import ffmpeg
200+
200201
meta_dict = ffmpeg.probe(str(video_path))
201202
rot = int(meta_dict["streams"][0]["tags"]["rotate"])
202203
if rot:

tests/integration/mixpanel/test_mixpanel_decorator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ def test_create_project(self, track_method):
159159
"workflows": None,
160160
"workflow": None,
161161
"instructions_link": None,
162+
"form": None,
162163
}
163164
try:
164165
sa.create_project(**kwargs)

tests/integration/work_management/test_user_custom_fields.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -243,15 +243,3 @@ def test_set_user_custom_field_validation(self):
243243
error_template_select.format(type="str", options="option1, option2"),
244244
):
245245
sa.set_user_custom_field(scapegoat["email"], "SDK_test_single_select", 123)
246-
247-
def test_project_custom_fields(self):
248-
scapegoat = sa.list_users(role="contributor")[0]
249-
sa.add_contributors_to_project(
250-
"TestUserProjectCustomFields", [scapegoat["email"]], role="QA"
251-
)
252-
users = sa.list_users(project="TestUserProjectCustomFields")
253-
assert users[0]["role"] == "QA"
254-
users = sa.list_users(
255-
project="TestUserProjectCustomFields", include=["custom_fields"]
256-
)
257-
assert users[0]["role"] == "QA"

0 commit comments

Comments
 (0)