Skip to content

Commit affc416

Browse files
authored
Add possibility to add output and error to patch transition execution call (#114)
* Add possibility to add output and error to patch transition execution call * Update changelog and versions
1 parent c601855 commit affc416

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Version 13.2.3 - 2024-10-09
4+
5+
- Bugfix `transitions update-execution` now supports additional keyword arguments
6+
37
## Version 13.2.2 - 2024-06-13
48

59
- Bugfix `models update-training` now works as intended when specifying `--deployment-environment-id`

lascli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
__maintainer_email__ = '[email protected]'
88
__title__ = 'lucidtech-las-cli'
99
__url__ = 'https://github.com/LucidtechAI/las-cli'
10-
__version__ = '13.2.2'
10+
__version__ = '13.2.3'

lascli/parser/transitions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@ def update_transition_execution(
4545
execution_id,
4646
status,
4747
start_time=None,
48+
**kwargs,
4849
):
4950
return las_client.update_transition_execution(
5051
transition_id,
5152
execution_id,
5253
status,
5354
start_time=start_time,
55+
**kwargs,
5456
)
5557

5658

0 commit comments

Comments
 (0)