From f4ba56f199c674f41a481979b723ea40ef76f769 Mon Sep 17 00:00:00 2001 From: Debdatta Kunda Date: Fri, 19 Aug 2022 13:24:21 -0700 Subject: [PATCH] Code changes to address review comments on naming convention. --- Microsoft.Azure.Cosmos/contracts/API_3.30.0-preview.txt | 2 +- changelog.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Microsoft.Azure.Cosmos/contracts/API_3.30.0-preview.txt b/Microsoft.Azure.Cosmos/contracts/API_3.30.0-preview.txt index 028c2ad034..20047433cf 100644 --- a/Microsoft.Azure.Cosmos/contracts/API_3.30.0-preview.txt +++ b/Microsoft.Azure.Cosmos/contracts/API_3.30.0-preview.txt @@ -50,10 +50,10 @@ namespace Microsoft.Azure.Cosmos { public ChangeFeedMetadata(DateTime conflictResolutionTimestamp, long lsn, ChangeFeedOperationType operationType, long previousLsn); public DateTime ConflictResolutionTimestamp { get; } + public bool IsTimeToLiveExpired { get; } public long Lsn { get; } public ChangeFeedOperationType OperationType { get; } public long PreviousLsn { get; } - public bool TimeToLiveExpired { get; } } public abstract class ChangeFeedMode { diff --git a/changelog.md b/changelog.md index c9d12cfc92..5b92c551cb 100644 --- a/changelog.md +++ b/changelog.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### [3.30.0-preview](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.30.0-preview) - 2022-08-19 #### Added +- [#3394](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/3394) Change Feed: Refactors Change Feed Contract to rename TimeToLiveExpired - [#3331](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/3331) Open Telemetry: Adds Client and other information in attributes - [#3197](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/3197) Change Feed: Adds SDK changes required for Full-Fidelity Change Feed