From 629d53dda8e1aabb618dd55283e3e141bf6a503d Mon Sep 17 00:00:00 2001 From: Rob Holland Date: Wed, 1 Apr 2026 14:24:54 +0100 Subject: [PATCH] Flag to disable passive poller forwarding. --- README.md | 2 +- VERSION | 2 +- temporal/api/cloud/namespace/v1/message.proto | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0cd0398..eabe4cf 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use the Cloud Ops API in your project, preform the following 4 steps: The client is expected to pass in a `temporal-cloud-api-version` header with the api version identifier with every request it makes to the apis. The backend will use the version to safely mutate resources. The `temporal:versioning:min_version` label specifies the minimum version of the API that supports the field. -Current Version `v0.7.1` +Current Version `v0.14.0` ### URL diff --git a/VERSION b/VERSION index 87a1cf5..4a29f93 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.12.0 +v0.14.0 diff --git a/temporal/api/cloud/namespace/v1/message.proto b/temporal/api/cloud/namespace/v1/message.proto index 0080a0e..fd35f72 100644 --- a/temporal/api/cloud/namespace/v1/message.proto +++ b/temporal/api/cloud/namespace/v1/message.proto @@ -89,6 +89,10 @@ message CodecServerSpec { message HighAvailabilitySpec { // Flag to disable managed failover for the namespace. bool disable_managed_failover = 1; + + // Flag to disable passive poller forwarding for this namespace. + // temporal:versioning:min_version=v0.14.0 + bool disable_passive_poller_forwarding = 2; }