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.17.1`
Current Version `v0.19.1`

### URL

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.18.1

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we also need to update the current version in README.

v0.19.1
2 changes: 1 addition & 1 deletion temporal/api/cloud/namespace/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ message ExportSinkSpec {
temporal.api.cloud.sink.v1.GCSSpec gcs = 4;

// The Azure Blob configuration details when destination_type is Azure Blob.
// temporal:versioning:min_version=v0.18.1
// temporal:versioning:min_version=v0.19.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incorrect Azure Blob min version

Medium Severity

The temporal:versioning:min_version on azure_blob was raised from v0.18.1 to v0.19.1 during a version bump. That label marks the earliest API version that supports the field, not the current release, so this incorrectly implies Azure Blob export sinks require v0.19.1 and can break clients still using v0.18.1.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit dd1a444. Configure here.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are no customers who are using this feature. Should be safe to bump this.

temporal.api.cloud.sink.v1.AzureBlobSpec azure_blob = 5;
}

Expand Down
Loading