From 003c9b10d382f4eee48b5a5ba5f984288effcadb Mon Sep 17 00:00:00 2001 From: Quinn Klassen Date: Mon, 16 Oct 2023 09:17:49 -0700 Subject: [PATCH] Release Java SDK v1.22.1 --- releases/v1.22.1 | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 releases/v1.22.1 diff --git a/releases/v1.22.1 b/releases/v1.22.1 new file mode 100644 index 000000000..6db932f54 --- /dev/null +++ b/releases/v1.22.1 @@ -0,0 +1,22 @@ +# Highlights + +## Bugfixes + +Add `WorkflowContext` more consistently in the SDK. `WorkflowContext` will now also be added in: + +* Memo +* Last failure +* Schedules (Note: The `workflowId` in `WorkflowContext` may differ on serialization and deserialization.) + +## (Experimental) Start delay + +Added `StartDelay` option to `WorkflowOptions`. `StartDelay` will cause Temporal to wait before dispatching the first workflow task. +If the workflow gets a signal before the delay, a workflow task will be dispatched and the rest +of the delay will be ignored. + +# Changeset + + +2023-10-11 - 06ef0df6 - Add identity to Terminate call (#1894) +2023-10-16 - 4fe296e1 - Add start delay (#1897) +2023-10-16 - 538508be - Apply data converter context in more places (#1896)