From caebabc7dd2b207383cc3495c8dac0b28f3615eb Mon Sep 17 00:00:00 2001 From: Spencer Judge Date: Wed, 16 Jul 2025 11:08:10 -0700 Subject: [PATCH] Remove UwS experimental notices --- temporalio/client.py | 27 ++++----------------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/temporalio/client.py b/temporalio/client.py index 3eb3f35e1..533e16d56 100644 --- a/temporalio/client.py +++ b/temporalio/client.py @@ -936,9 +936,6 @@ async def execute_update_with_start_workflow( the call will not return successfully until the update has been delivered to a worker. - .. warning:: - This API is experimental - Args: update: Update function or name on the workflow. arg: Single argument to the update. @@ -5354,11 +5351,7 @@ class StartWorkflowUpdateInput: @dataclass class UpdateWithStartUpdateWorkflowInput: - """Update input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`. - - .. warning:: - This API is experimental - """ + """Update input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.""" update_id: Optional[str] update: str @@ -5372,11 +5365,7 @@ class UpdateWithStartUpdateWorkflowInput: @dataclass class UpdateWithStartStartWorkflowInput: - """StartWorkflow input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`. - - .. warning:: - This API is experimental - """ + """StartWorkflow input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.""" # Similar to StartWorkflowInput but without e.g. run_id, start_signal, # start_signal_args, request_eager_start. @@ -5412,11 +5401,7 @@ class UpdateWithStartStartWorkflowInput: @dataclass class StartWorkflowUpdateWithStartInput: - """Input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`. - - .. warning:: - This API is experimental - """ + """Input for :py:meth:`OutboundInterceptor.start_update_with_start_workflow`.""" start_workflow_input: UpdateWithStartStartWorkflowInput update_workflow_input: UpdateWithStartUpdateWorkflowInput @@ -5690,11 +5675,7 @@ async def start_workflow_update( async def start_update_with_start_workflow( self, input: StartWorkflowUpdateWithStartInput ) -> WorkflowUpdateHandle[Any]: - """Called for every :py:meth:`Client.start_update_with_start_workflow` and :py:meth:`Client.execute_update_with_start_workflow` call. - - .. warning:: - This API is experimental - """ + """Called for every :py:meth:`Client.start_update_with_start_workflow` and :py:meth:`Client.execute_update_with_start_workflow` call.""" return await self.next.start_update_with_start_workflow(input) ### Async activity calls