Skip to content
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ to docs, or any other relevant information.
### Added

- Exposed `Temporalio::Workflow::ContinueAsNewError#backoff_start_interval`, to allow the new workflow to start after a delay.
- Added the experimental `Temporalio::Worker` `patch_activation_callback:` option, allowing workers to decide whether a first non-replay `Temporalio::Workflow.patched` call should activate a patch during rolling deployments.

### Fixed

Expand Down Expand Up @@ -81,4 +82,3 @@ correctly receives `Temporalio::Error::WorkflowUpdateFailedError`. (#454)
but defers dispatch to a worker until the delay elapses. Retry attempts do not re-apply the delay.
`ScheduleToStart` and `ScheduleToClose` timeout clocks begin counting after the delay
elapses; `StartToClose` and `Heartbeat` are unaffected. Currently experimental.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,8 @@ from workflows including:
* `all_handlers_finished?` - Returns true when all signal and update handlers are done. Useful as
`Temporalio::Workflow.wait_condition { Temporalio::Workflow.all_handlers_finished? }` for making sure not to return
from the primary workflow method until all handlers are done.
* `patched` and `deprecate_patch` - Support for patch-based versioning inside the workflow.
* `patched` and `deprecate_patch` - Support for patch-based versioning inside the workflow. Workers can set
`patch_activation_callback:` to decide whether a newly introduced patch should activate during rolling deployments.
* `continue_as_new_suggested` - Returns true when the server recommends performing a continue as new.
* `current_update_info` - Returns `Temporalio::Workflow::UpdateInfo` if the current code is inside an update, or nil
otherwise.
Expand Down
Loading
Loading