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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.7.3"
version = "2.7.4"
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
Expand Down
4 changes: 4 additions & 0 deletions src/uipath/_cli/_utils/_common.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json
import os
import uuid
from pathlib import Path
from typing import Literal
from urllib.parse import urlparse
Expand Down Expand Up @@ -89,6 +90,9 @@ def serialize_object(obj):
return serialize_object(dict(obj))
except (TypeError, ValueError):
return obj
# UUIDs must be serialized explicitly
elif isinstance(obj, uuid.UUID):
return str(obj)
# Return primitive types as is
else:
return obj
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.