Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/develop/dotnet/workflows/versioning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Temporal's [Worker Versioning](/production-deployment/worker-deployments/worker-

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch.

Suppose you have an initial Workflow version called `PrePatchActivity`:

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/go/workflows/versioning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Temporal's [Worker Versioning](/production-deployment/worker-deployments/worker-

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch.

Consider the following Workflow Definition:

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/java/workflows/versioning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Temporal's [Worker Versioning](/production-deployment/worker-deployments/worker-

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch.

Consider the following Workflow Definition:

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/php/workflows/versioning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Temporal's [Worker Versioning](/production-deployment/worker-deployments/worker-

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch.

Suppose you have an initial Workflow that runs `prePatchActivity`:

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/python/workflows/versioning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Temporal's [Worker Versioning](/production-deployment/worker-deployments/worker-

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch.

Suppose you have an initial Workflow version called `pre_patch_activity`:

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/ruby/workflows/versioning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Temporal's [Worker Versioning](/production-deployment/worker-deployments/worker-

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch.

Suppose you have an initial Workflow that runs `PrePatchActivity`:

Expand Down
2 changes: 1 addition & 1 deletion docs/develop/typescript/workflows/versioning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Support for the experimental Worker Versioning method before 2025 will be remove

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow Executions, create a patch.

Suppose you have an initial Workflow that runs `activityA`:

Expand Down
2 changes: 1 addition & 1 deletion docs/encyclopedia/workflow/patching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This page discusses [Patching](#patching).

A Patch defines a logical branch in a Workflow for a specific change, similar to a feature flag.
It applies a code change to new Workflow Executions while avoiding disruptive changes to in-progress Workflow Executions.
When you want to make substantive code changes that may affect existing Workflow executions, create a patch. Note that there's no need to patch [Pinned Workflows](/worker-versioning).
When you want to make substantive code changes that may affect existing Workflow executions, create a patch.

### Detailed Description of the `patched()` Function

Expand Down