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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.13.0`
Current Version `v0.14.0`

### URL

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.13.0
v0.14.0
10 changes: 10 additions & 0 deletions temporal/api/cloud/namespace/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,11 @@ message Capacity {
Request latest_request = 3;
}

message FairnessSpec {
// Flag to enable task queue fairness for the namespace (default: disabled).
bool task_queue_fairness_enabled = 1;
}
Comment thread
cursor[bot] marked this conversation as resolved.

message NamespaceSpec {
// The name to use for the namespace.
// This will create a namespace that's available at '<name>.<account>.tmprl.cloud:7233'.
Expand Down Expand Up @@ -262,6 +267,11 @@ message NamespaceSpec {
// temporal:versioning:min_version=v0.13.0
repeated ReplicaSpec replicas = 13;

// The fairness configuration for the namespace.
// If unspecified, fairness features will be disabled.
// temporal:versioning:min_version=v0.14.0
FairnessSpec fairness = 14;

enum SearchAttributeType {
SEARCH_ATTRIBUTE_TYPE_UNSPECIFIED = 0;
SEARCH_ATTRIBUTE_TYPE_TEXT = 1;
Expand Down
Loading