From 42f949bae3abba87c24b436b0ecbb3beec3bfec9 Mon Sep 17 00:00:00 2001 From: Michael Youssef Date: Tue, 2 Dec 2025 12:18:28 -0800 Subject: [PATCH 1/2] Rename is_replication_enabled to enable_replication --- temporal/api/operatorservice/v1/request_response.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporal/api/operatorservice/v1/request_response.proto b/temporal/api/operatorservice/v1/request_response.proto index b4043b6d8..a4ff7be72 100644 --- a/temporal/api/operatorservice/v1/request_response.proto +++ b/temporal/api/operatorservice/v1/request_response.proto @@ -69,7 +69,7 @@ message AddOrUpdateRemoteClusterRequest { // on update, the existing HTTP address will be removed. string frontend_http_address = 3; // Controls whether replication streams are active. - bool is_replication_enabled = 4; + bool enable_replication = 4; } message AddOrUpdateRemoteClusterResponse { From 69bb7195d96667f8473729a13dbb2c2c0b5e37d1 Mon Sep 17 00:00:00 2001 From: Michael Youssef Date: Tue, 2 Dec 2025 12:32:09 -0800 Subject: [PATCH 2/2] Allow breaking change --- buf.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buf.yaml b/buf.yaml index 51534eb8f..a9c432d1f 100644 --- a/buf.yaml +++ b/buf.yaml @@ -16,6 +16,8 @@ breaking: - temporal/api/enums/v1/failed_cause.proto # TODO: remove this once the changes with WorkflowExecutionExtendedInfo.pause_info is merged - temporal/api/workflow/v1/message.proto + # TODO: remove this once is_replication_enabled -> enable_replication rename is merged + - temporal/api/operatorservice/v1/request_response.proto lint: use: - DEFAULT