From de40779960a12fcef4e68eeb350fd104e4a1528a Mon Sep 17 00:00:00 2001 From: Maciej Dudkowski Date: Fri, 11 Sep 2026 16:58:38 -0400 Subject: [PATCH 1/2] Update README for standalone-activity sample in preparation for release --- .../samples/standaloneactivities/README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/core/src/main/java/io/temporal/samples/standaloneactivities/README.md b/core/src/main/java/io/temporal/samples/standaloneactivities/README.md index 4d65619f..059b17bc 100644 --- a/core/src/main/java/io/temporal/samples/standaloneactivities/README.md +++ b/core/src/main/java/io/temporal/samples/standaloneactivities/README.md @@ -16,14 +16,12 @@ The sample has these separate programs: ## Prerequisites -- Temporal dev server with Standalone Activity support. See the - [Java SDK Standalone Activities guide](https://docs.temporal.io/develop/java/activities/standalone-activities#get-started) - for download instructions. +- Temporal CLI v1.9.0 or later. See setup guide: https://docs.temporal.io/cli/setup-cli ## Start the Temporal development server ```bash -./temporal server start-dev +temporal server start-dev ``` ## Run the Worker @@ -45,7 +43,7 @@ In another terminal, execute an activity and wait for its result: Or use the Temporal CLI: ```bash -./temporal activity execute \ +temporal activity execute \ --type ComposeGreeting \ --activity-id standalone-activity-id \ --task-queue standalone-activity-task-queue \ @@ -65,7 +63,7 @@ Start an activity and retrieve its result separately: Or use the Temporal CLI: ```bash -./temporal activity start \ +temporal activity start \ --type ComposeGreeting \ --activity-id standalone-activity-id \ --task-queue standalone-activity-task-queue \ @@ -85,7 +83,7 @@ List activity executions on the task queue: Or use the Temporal CLI: ```bash -./temporal activity list +temporal activity list ``` ## Count Standalone Activities @@ -99,5 +97,5 @@ Count activity executions on the task queue: Or use the Temporal CLI: ```bash -./temporal activity count +temporal activity count ``` From cebb5ecef9aea87b235e12d7940653680c69aaef Mon Sep 17 00:00:00 2001 From: Maciej Dudkowski Date: Mon, 14 Sep 2026 11:55:02 -0400 Subject: [PATCH 2/2] Change CLI version to 1.9.1 --- .../java/io/temporal/samples/standaloneactivities/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/temporal/samples/standaloneactivities/README.md b/core/src/main/java/io/temporal/samples/standaloneactivities/README.md index 059b17bc..54c6424d 100644 --- a/core/src/main/java/io/temporal/samples/standaloneactivities/README.md +++ b/core/src/main/java/io/temporal/samples/standaloneactivities/README.md @@ -16,7 +16,7 @@ The sample has these separate programs: ## Prerequisites -- Temporal CLI v1.9.0 or later. See setup guide: https://docs.temporal.io/cli/setup-cli +- Temporal CLI v1.9.1 or later. See setup guide: https://docs.temporal.io/cli/setup-cli ## Start the Temporal development server