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-dev"
version = "0.0.17"
version = "0.0.18"
description = "UiPath Developer Console"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/uipath/dev/services/run_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async def execute(self, run: ExecutionRun) -> None:
execution_options.resume = True
self._add_info_log(run, f"Resuming execution: {run.entrypoint}")
else:
execution_input = run.input_data
execution_input = run.input_data.copy()
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a shallow copy with .copy() may not fully preserve the initial input if it contains nested mutable structures (lists, dictionaries). If the runtime modifies nested objects within the input, those changes would still affect the original run.input_data. Consider using copy.deepcopy() instead to ensure complete isolation of the input data, or verify that the runtime never modifies nested structures.

Copilot uses AI. Check for mistakes.
self._add_info_log(run, f"Starting execution: {run.entrypoint}")

run.status = "running"
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.

Loading