File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 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 `
Original file line number Diff line number Diff line change 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 '
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments