Starting from next server release 1.30.0, for security reasons, Temporal docker images will be slimmed down and we are taking away the binaries and packages that don’t strictly need to be included. This includes:
temporalio/servertemporal CLI - included in admin-toolstctl and tctl-authorization-plugin - both are deprecated CLIsdockerize - used for templating the configuration, functionality that is now inlined in the server codebasecurl - not part of the Temporal distributiontemporalio/admin-toolstctl and tctl-authorization-pluginpython3libevcurljqyqmysql-clientpostgresql-clientexpattinicqlshDescription:
Task queue fairness allows you to control the execution order of workflows, activities, and child workflows within a single task queue by assigning fairness keys and weights. Note that priority keys take precedence over fairness assignments.
Fairness can be attached to workflows and activities using the latest versions of most SDKs. In order for priority to take effect on the server, you need to switch to set the dynamic config matching.enableFairness to true either on specific task queues, namespaces, or globally.
⚠️ Turning the feature on/off will cause currently backlogged tasks to be lost; which can cause workflows to be stuck. This limitation will be lifted in future releases.
See more usage details here: Temporal - Task Queue Fairness Guide (Pre-Release)
Rollout operational task: (schema upgrade)
RampingVersionPercentageChangedTime is now visible from the Routing Config and can be accessed via a DescribeDeployment call (https://github.com/temporalio/temporal/pull/8089)Cloud rollout operational task:
Description:
Task queues can be now configured via the new UpdateTaskQueueConfig endpoint. It allows configuring (1) the queue’s maximum requests per second and (2) default maximum requests per second for fairness keys (feature is in pre-release). For example, using the Temporal CLI 1.5.0 or later:
temporal task-queue config set --task-queue foo --task-queue-type bar --queue-rate-limit 100 --queue-rate-limit-reason "throttling"
Note that the rate limit for the task queue from the API takes precedence over the rate limit set via the worker’s TaskQueueActivitiesPerSecond option. If the API rate limit is unset again, it will fall back to the worker’s rate limit again, if set. Otherwise the system’s default limit is applied.
Description: Added a new dynamic config (frontend.exposeAuthorizerErrors) to control whether the frontend authorization interceptor should propagate errors returned by the Authorizer component as-is or wrap them with a PermissionDenied service error. Default is false, meaning all errors will be wrapped with PermissionDenied, which matches current behavior to avoid breaking any custom Authorizer implementers.
Description: Eager workflow start is a latency optimization for worker and a starter a colocated in the same process. If the starter (client) requests eager execution, and a worker slot is available, the client will request the server to start the workflow eagerly. If permitted (the dynamic config is on, and there's no start delay), the first workflow task will be returned inline to be processed by the colocated worker.
This feature is now on by default and the EagerExecutionAccepted flag has been added to WorkflowExecutionStartedEventAttributes for debugging purposes (https://github.com/temporalio/temporal/pull/8056)
To turn this feature off set the dynamic config system.enableEagerWorkflowStart to false.
Description: A number of activity and workflow metrics were added and activity_e2e_latency has been deprecated. (#8196, #8185)
Deprecated Metrics
activity_e2e_latency → Deprecated, replaced with better named activity_start_to_close_latencyNew Metrics
activity_start_to_close_latency: Per attempt latency from activity start to closeactivity_schedule_to_close_latency: End-to-end duration, including retries and backoff.activity_success: Number of succeeded activitiesactivity_fail: Number of final failures for activitiesactivity_timeout: Incremented on the final activity timeout tagged by timeout_typeactivity_task_fail: Failures for activities including retriesactivity_task_timeout: Number of activity attempt timeouts, tagged by timeout_type.activity_cancel: Number of canceled activitiesworkflow_duration: End to end latency of workflowDescription: Removed the internal BatchParams go struct in favor of a protobuf struct for safer serialization. Optimized the batch operation processing with proactive page fetching, removing the worker wait for new pages to be completed. (https://github.com/temporalio/temporal/pull/8144, https://github.com/temporalio/temporal/pull/8081).
Description: Support activity reset and update-options on the server side. (https://github.com/temporalio/temporal/pull/8061)
Description:
NamespaceNotActive error.component.nexusoperations.recordCancelRequestCompletionEvents . This config will be removed in a future release.frontend.nexusForwardRequestUseEndpointDispatch, because endpoints currently do not support replication and therefore forwarding requests by endpoint will not work out of the box.NexusOperationCancelRequestCompleted|Failed events.Description: ScanWorkflowExecutions has been removed from Visibility. The API is still available, but it simply calls ListWorkflowExecutions.
Description: Worker insights is an umbrella project that addresses the operational complexities and toil of worker management (tuning performance knobs, scaling workers). Our end goal is to automate this process for our users. As a first step, this release adds the capability to propagate the worker state (configuration + SDK metrics) to the server via a heartbeat mechanism. This state is stored in-memory on the matching servers, and can be queried by the user.
To achieve this, this release introduces 3 APIs:
These APIs are disabled by default.
Flags are: frontend.WorkerHeartbeatsEnabled and frontend.ListWorkersEnabled.
Temporal Docs Server Docker Compose Helm Chart
1.29.0)Server Server With Auto Setup (what is Auto-Setup?) Admin-Tools
Full Changelog: https://github.com/temporalio/temporal/compare/v1.28.1...v1.29.0
Fetched April 11, 2026