From 1142d664cd9fa09263e6a235c99bfc4ddef45103 Mon Sep 17 00:00:00 2001 From: Kiran Kumar Kolli Date: Fri, 17 May 2024 10:57:57 -0700 Subject: [PATCH] [Internal] Release: Fixes SDK hotfix 3.39.2 release to disable query ODE by default (#4495) * [Internal] Release: SDK hotfix release to disable query ODE by default * Addressing the feedback * Including a note in version when ODE was enabled * including another missed commit --- Directory.Build.props | 4 ++-- changelog.md | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index fb45f3dca1..dff25af8aa 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,8 +1,8 @@ - 3.39.1 + 3.39.2 3.40.0 - preview.1 + preview.2 3.34.2 2.0.4 2.1.0 diff --git a/changelog.md b/changelog.md index 7896025977..7738ea9a0a 100644 --- a/changelog.md +++ b/changelog.md @@ -13,6 +13,13 @@ Preview features are treated as a separate branch and will not be included in th The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [3.40.0-preview.2](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.40.0-preview.2) - 2024-05-16 +### [3.39.2](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.39.2) - 2024-05-16 + +#### Fixed +- [4413](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/4413) Query: Fixes Persisted continuationToken issue (partition splits) by turning off Optimistic Direct Execution by default +- [4419](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/4419)Query: Fixes bug in OrderByCrossPartitionQueryPipelineStage to ensure that errors in inner pipeline creation are bubbled up + ### [3.40.0-preview.1](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.40.0-preview.1) - 2024-04-17 ### [3.39.1](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.39.1) - 2024-04-17 @@ -76,6 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 > - In order to disable ODE, set EnableOptimisticDirectExecution to false in the QueryRequestOptions. > - Enable ODE as part of second deployment for all nodes. + > Note: This version has a known issue [4413](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/4413) which was later addressed in [3.39.2](#3.39.2) + #### Fixed - [4205](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/4205) ClientRetryPolicy: Fixes Metadata Requests Retry Policy (#4205) - [4220](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/4220) Change Feed Processor: Fixes disposal of unused CancellationTokenSource (#4220)