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: 0 additions & 2 deletions temporalio/lib/temporalio/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ def operator_service
# @param request_eager_start [Boolean] Potentially reduce the latency to start this workflow by encouraging the
# server to start it on a local worker running with this same client. This is currently experimental.
# @param versioning_override [VersioningOverride, nil] Override the version of the workflow.
# This is currently experimental.
# @param priority [Priority] Priority of the workflow. This is currently experimental.
# @param arg_hints [Array<Object>, nil] Overrides converter hints for arguments if any. If unset/nil and the
# workflow definition has arg hints, those are used by default.
Expand Down Expand Up @@ -392,7 +391,6 @@ def start_workflow(
# @param request_eager_start [Boolean] Potentially reduce the latency to start this workflow by encouraging the
# server to start it on a local worker running with this same client. This is currently experimental.
# @param versioning_override [VersioningOverride, nil] Override the version of the workflow.
# This is currently experimental.
# @param priority [Priority] Priority for the workflow. This is currently experimental.
# @param arg_hints [Array<Object>, nil] Overrides converter hints for arguments if any. If unset/nil and the
# workflow definition has arg hints, those are used by default.
Expand Down
2 changes: 0 additions & 2 deletions temporalio/lib/temporalio/common_enums.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ module WorkflowIDConflictPolicy
end

# Specifies when a workflow might move from a worker of one Build Id to another.
#
# WARNING: Experimental API.
module VersioningBehavior
# Unspecified versioning behavior. By default, workers opting into worker versioning will
# be required to specify a behavior.
Expand Down
4 changes: 1 addition & 3 deletions temporalio/lib/temporalio/env_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
require 'temporalio/internal/bridge'

module Temporalio
# Environment and file-based configuration for Temporal clients
#
# WARNING: Experimental API.
# Environment and file-based configuration for Temporal clients.
module EnvConfig
# This module provides utilities to load Temporal client configuration from TOML files
# and environment variables.
Expand Down
2 changes: 0 additions & 2 deletions temporalio/lib/temporalio/versioning_override.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
module Temporalio
# Base class for version overrides that can be provided in start workflow options.
# Used to control the versioning behavior of workflows started with this override.
#
# WARNING: Experimental API.
class VersioningOverride
# @!visibility private
def _to_proto
Expand Down
1 change: 0 additions & 1 deletion temporalio/lib/temporalio/worker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,6 @@ def self._validate_plugins!(plugins)
# scheduler will fail. Instead of setting this to true, users are encouraged to use {Workflow::Unsafe.io_enabled}
# with a block for narrower enabling of IO.
# @param deployment_options [DeploymentOptions, nil] Deployment options for the worker.
# WARNING: This is an experimental feature and may change in the future.
# @param workflow_task_poller_behavior [PollerBehavior] Specify the behavior of workflow task
# polling. Defaults to a 5-poller maximum.
# @param activity_task_poller_behavior [PollerBehavior] Specify the behavior of activity task
Expand Down
2 changes: 0 additions & 2 deletions temporalio/lib/temporalio/worker/deployment_options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ class Worker

# Options for configuring the Worker Versioning feature.
#
# WARNING: Deployment-based versioning is experimental and APIs may change.
#
# @!attribute version
# @return [WorkerDeploymentVersion] The worker deployment version.
# @!attribute use_worker_versioning
Expand Down
2 changes: 0 additions & 2 deletions temporalio/lib/temporalio/worker_deployment_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ module Temporalio
)

# Represents the version of a specific worker deployment.
#
# WARNING: Experimental API.
class WorkerDeploymentVersion
# Parse a version from a canonical string, which must be in the format
# `<deployment_name>.<build_id>`. Deployment name must not have a `.` in it.
Expand Down
3 changes: 0 additions & 3 deletions temporalio/lib/temporalio/workflow/definition.rb
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ def workflow_query_attr_reader(*attr_names, description: nil)

# Set the versioning behavior of this workflow.
#
# WARNING: This method is experimental and may change in future versions.
#
# @param behavior [VersioningBehavior] The versioning behavior.
def workflow_versioning_behavior(behavior)
@versioning_behavior = behavior
Expand Down Expand Up @@ -732,7 +730,6 @@ def _with_validator_to_invoke(validator_to_invoke)
# @!attribute versioning_behavior
# Dynamic equivalent of {Definition.workflow_versioning_behavior}.
# Will override any behavior set there if set.
# WARNING: Deployment-based versioning is experimental and APIs may change.
# @return [VersioningBehavior, nil] The versioning behavior
#
# @return [VersioningBehavior, nil] The versioning behavior
Expand Down
Loading