Changelog History
Page 3
-
v1.28.1 Changes
August 06, 2025🚀 This patch release fixes a few Workflow Update, Worker Deployment, Scheduler, Matching, and security bugs.
Helpful links to get you started with Temporal
📄 Temporal Docs
Server
🐳 Docker Compose
Helm Chart🚀 Docker images for this release (use the tag
1.28.1)🐳 Server
🐳 Server With Auto Setup (what is Auto-Setup?)
🐳 Admin-ToolsFull Changelog : v1.28.0...v1.28.1
-
v1.28.0 Changes
June 27, 2025Schema changes
⬆️ Before upgrading your Temporal Cluster to v1.28.0, you must upgrade your core schemas to the following:
- MySQL schema v1.17
- PostgreSQL schema v1.17
- Cassandra schema v1.12
📚 Please see our upgrade documentation for the necessary steps to upgrade your schemas.
🗄 Deprecation Announcements
🗄 Deprecating old Versioning APIs: The following APIs related to previous versions of Worker Versioning are deprecated.
🚀 The following APIs related to the December 2024 pre-release of Worker Versioning have been deprecated and are now no longer supported:
- 🚀 DescribeDeployment
- 🚀 ListDeployments
- 🚀 GetDeploymentReachability
- 🚀 GetCurrentDeployment
- 🚀 SetCurrentDeployment
🚚 The following APIs are now deprecated and will be removed once the latest APIs reach to General Availability in the coming months:
- ⚡️ UpdateWorkerVersioningRules
- 👷 GetWorkerVersioningRules
- ⚡️ UpdateWorkerBuildIdCompatibility
- 👷 GetWorkerBuildIdCompatibility
- 👷 GetWorkerTaskReachability
🚀 Release Highlights
⚡️ Update-With-Start GA
⚡️ Update-With-Start sends a Workflow Update that checks whether an already-running Workflow with that ID exists. If it does, the Update is processed. If not, it starts a new Workflow Execution with the supplied ID. When starting a new Workflow, it immediately processes the Update.
⚡️ Update-With-Start is great for latency-sensitive use cases.
Nexus - Back Multiple Operations by Single Workflow
Now you can have multiple callers starting operations backed by a single workflow. When the handler tries to start a workflow that is already running, with the “use existing” conflict policy, the server will attach the caller’s callback to the running workflow. When the workflow completes, the server will call all attached callbacks to notify the callers with the workflow result.
Here’s an example using Go SDK (available in v1.34.0+):
import("context""github.com/nexus-rpc/sdk-go/nexus"enumspb"go.temporal.io/api/enums/v1""go.temporal.io/sdk/client""go.temporal.io/sdk/temporalnexus")sampleOperation:=temporalnexus.NewWorkflowRunOperation("sample-operation",SampleWorkflow,func(ctxcontext.Context,inputSampleWorkflowInput,optionsnexus.StartOperationOptions, ) (client.StartWorkflowOptions,error) {returnclient.StartWorkflowOptions{// Workflow ID is used as idempotency key.ID:"sample-workflow-id",// If a workflow with same ID is already running, then it will attach the callback to the existing running workflow.// Otherwise, it will start a new workflow.WorkflowIDConflictPolicy:enumspb.WORKFLOW\_ID\_CONFLICT\_POLICY\_USE\_EXISTING, },nil}, )🚀 The handler workflow will return a
RequestIdReferenceLinkto the caller. This is an indirect link to the history event that attached the callback in the handler workflow. Links can provide information about the handler workflow to the caller. In order to get the exact event history, there is now theRequestIdInfosmap in theWorkflowExtendedInfofield of aDescribeWorkflowExecutionResponse. To enableRequestIdReferenceLink, you have to set the dynamic confighistory.enableRequestIdRefLinkstotrue(this might become enabled by default in a future release).Nexus - Callback ↔ Link Association
✅ Nexus links were previously stored in the history event not directly associated with the callback that it came together. Now, the server is storing the Nexus links together with the callback. With this direct association, you can easily find out the caller that triggered the Nexus workflow from the callback through these links for example. This feature requires the latest version of Go SDK (v1.35.0+) and Java SDK (v1.30.0+).
Nexus - Cancellation Types
👍 The server now supports Nexus operation cancellation types. These are specified when starting an operation and indicate what should happen to Nexus operations when the parent context that started them is cancelled. To use them, you must be using an SDK version that supports them. Available cancellation types are:
Abandon- Do not request cancellation of the operationTryCancel- Request cancellation of the operation and immediately report cancellation to callersWaitRequested- Request cancellation and wait until the cancellation request has been received by the operation handler- 0️⃣
WaitCompleted- Request cancellation and wait for the operation to complete. The operation may or may not complete as cancelled. Default and behavior for server versions <1.28
0️⃣ For the
WaitRequestedtype to work, you must set the dynamic configcomponent.nexusoperations.recordCancelRequestCompletionEventstotrue(defaultfalse).Nexus - Miscellaneous
- 👀 Nexus callback request processing logic will now attempt to deserialize failure information from the body of failed callback HTTP requests. This means that Nexus operation handlers should now see more informative messages about why their callback failed to be delivered to callers.
- 🔗 Links added by Nexus operations should now be appropriately propagated across continue-as-new, workflow reset, and workflow retries.
🔖 Versioning / Safe-Deploy Public Preview
👷 The following Worker Versioning APIs graduated into Public Preview stage. Production usage is encouraged but note that limited changes might be made to the APIs before General Availability in the coming months.
- 🚀 ListWorkerDeployments
- 🚀 DescribeWorkerDeployment
- 🚀 DescribeWorkerDeploymentVersion
- 🚀 SetWorkerDeploymentCurrentVersion
- 🚀 SetWorkerDeploymentRampingVersion
- 📇 UpdateWorkerVersionMetadata
- ✂ DeleteWorkerDeployment
- ✂ DeleteWorkerDeploymentVersion
👷 Using Worker Versioning: Find instructions in https://docs.temporal.io/worker-versioning.
Operator notes:
The following configs need to be enabled:
frontend.workerVersioningWorkflowAPIs(default: true)system.enableDeploymentVersions(default: true)
Knobs:
matching.maxDeploymentscontrols the maximum number of worker deployments that the server allows to be registered in a single namespace (default: 100, safe to increase to much higher values)matching.maxVersionsInDeploymentcontrols the maximum number of versions that the server allows to be registered in a single worker deployments (default: 100, unsafe to increase beyond a few 100s)matching.maxTaskQueuesInDeploymentVersioncontrols the maximum number of task queues that the server allows to be registered in a single worker deployment version (default: 100, unsafe to increase beyond a few 100s)matching.wv.VersionDrainageStatusVisibilityGracePeriodsystems waits for this amount of time before checking the drainage status of a version that just entered in DRAINING state (default: 3 minutes, setting a very low value might cause the status to become DRAINED incorrectly)matching.wv.VersionDrainageStatusRefreshIntervalinterval used for checking drainage status (default: 3 minutes, lowering the value will increase load on the Visibility database)
👀 Please see deprecation warnings regarding earlier versions of Temporal versioning APIs.
⚠ ⚠️ Important for Worker Versioning users (v1.27.x → v1.28.0)
👷 If you used Worker Versioning in v1.27.x , you must delete all Worker Deployments (via
DeleteWorkerDeployment) before upgrading to v1.28.0 , then recreate them after. This is due to breaking changes between v1.27.2 and v1.28.0.🚀 If you already upgraded or need help, ask in
#safe-deployson Community Slack.🚀 Simple priority for task queues - pre-release
Simple priority allows you to control the execution order of workflows, activities, and child workflows based on assigned priority values within a single task queue. You can select a priority level in the integer range [1,5]. A lower value implies higher priority.
✅ Priority 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 the new implementation of the matching service: set the dynamic config
matching.useNewMatchertotrueeither on specific task queues, namespaces, or globally. After the new matcher has been turned on for a task queue, turning it off will cause tasks with non-default priority to be temporarily lost until it’s turned on again.When the setting is changed, the implementation will be switched immediately, which may cause a momentary disruption in task dispatch.
🐎 Besides enabling priority, the new matcher will have a different profile of persistence operations, and slightly different behavior with task forwarding and some other edge cases. If you see performance regressions or unexpected behavior with the new matcher, please let us know.
🚀 See more usage details here: Temporal - Task Queue Priority Guide (Pre-Release)
Operator commands
👌 Improvements to the activity in DescribeWorkflow:
- Add activity options to the pending activity info
- Task Queue name
- All timeouts
- Retry Policy
- Add PauseInfo to the pending activity info
- Timestamp
- Identity
- Pause reason
- Add
PAUSEDandPAUSE_REQUESTEDto activity state. This allows to distinguish between the situation when pause signal is received, but activity is still running on the worker.
👷 Send
ActivityPause/ActivityResetflag in heartbeat response. This notifies the workers about activity state.➕ Add the ability to restore activity options to its original state for
ResetActivityandUpdateActivityOptionscommands.➕ Add a flag to CLI to restore activity options for the activity res...
-
v1.27.4 Changes
December 30, 2025What's Changed
🛠 This patch includes fixes for CVE-2025-14987 and CVE-2025-14986
Full Changelog : v1.27.3...v1.27.4
Helpful links to get you started with Temporal
📄 Temporal Docs
Server
🐳 Docker Compose
Helm Chart🚀 Docker images for this release
🐳 Server (use the tag 1.27.4)
🐳 Server With Auto Setup (what is Auto-Setup?)
🐳 Admin-Tools -
v1.27.3 Changes
August 20, 2025🚀 Release Highlights
Helpful links to get you started with Temporal
📄 Temporal Docs
Server
🐳 Docker Compose
Helm Chart🚀 Docker images for this release (use the tag
1.27.3)🐳 Server
🐳 Server With Auto Setup (what is Auto-Setup?)
🐳 Admin-ToolsFull Changelog : v1.27.2...v1.27.3
-
v1.27.2 Changes
March 28, 2025🚀 This patch release fixes a few minor Worker Deployment and Nexus bugs.
Helpful links to get you started with Temporal
📄 Temporal Docs
Server
🐳 Docker Compose
Helm Chart🚀 Docker images for this release (use the tag
1.27.2)🐳 Server
🐳 Server With Auto Setup (what is Auto-Setup?)
🐳 Admin-ToolsFull Changelog : v1.27.1...v1.27.2
-
v1.26.3 Changes
August 20, 2025🚀 Release Highlights
Helpful links to get you started with Temporal
📄 Temporal Docs
Server
🐳 Docker Compose
Helm Chart🚀 Docker images for this release (use the tag
1.26.3)🐳 Server
🐳 Server With Auto Setup (what is Auto-Setup?)
🐳 Admin-ToolsFull Changelog : v1.26.2...v1.26.3