diff --git a/pyproject.toml b/pyproject.toml index d1b68d765..9ba4ecff6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath" -version = "2.9.5" +version = "2.9.6" 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" diff --git a/src/uipath/_cli/_utils/_common.py b/src/uipath/_cli/_utils/_common.py index df142a934..24a53f877 100644 --- a/src/uipath/_cli/_utils/_common.py +++ b/src/uipath/_cli/_utils/_common.py @@ -181,7 +181,14 @@ async def read_resource_overwrites_from_file( .get("resourceOverwrites", {}) ) for key, value in resource_overwrites.items(): - overwrites_dict[key] = ResourceOverwriteParser.parse(key, value) + try: + overwrites_dict[key] = ResourceOverwriteParser.parse(key, value) + except Exception as e: + logger.warning( + "Skipping unrecognized resource overwrite '%s': %s", + key, + e, + ) logger.debug( "Loaded %d resource overwrite(s) from file %s", diff --git a/uv.lock b/uv.lock index 184f3838b..a62a68aaf 100644 --- a/uv.lock +++ b/uv.lock @@ -2531,7 +2531,7 @@ wheels = [ [[package]] name = "uipath" -version = "2.9.5" +version = "2.9.6" source = { editable = "." } dependencies = [ { name = "applicationinsights" },