Skip to content

Commit 9d1dae2

Browse files
authored
4.0.0-preview2 release (#1132)
1 parent d69794a commit 9d1dae2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Microsoft.Azure.Cosmos/azuredata/Azure.Cosmos.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<CurrentDate>$([System.DateTime]::Now.ToString(yyyyMMdd))</CurrentDate>
1010
<AzureSDKClientVersion>4.0.0</AzureSDKClientVersion>
1111
<VersionSuffix Condition=" '$(IsNightly)' == 'true' ">nightly-$(CurrentDate)</VersionSuffix>
12-
<VersionSuffix Condition=" '$(IsPreview)' == 'true' ">preview</VersionSuffix>
12+
<VersionSuffix Condition=" '$(IsPreview)' == 'true' ">preview2</VersionSuffix>
1313
<Version Condition=" '$(VersionSuffix)' == '' ">$(AzureSDKClientVersion)</Version>
1414
<Version Condition=" '$(VersionSuffix)' != '' ">$(AzureSDKClientVersion)-$(VersionSuffix)</Version>
1515
<FileVersion>$(AzureSDKClientVersion)</FileVersion>

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Fixed
13+
14+
## <a name="4.0.0-preview2"/> [4.0.0-preview2](https://www.nuget.org/packages/Azure.Cosmos/4.0.0-preview2) - 2020-01-07
15+
16+
### Added
17+
1218
- [#853](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/853) ORDER BY Arrays and Object support.
1319
- [#877](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/877) Query diagnostics now contains client side request diagnostics information
1420
- [#934](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/934) Preserved the ordering of projections in a GROUP BY query.
@@ -26,6 +32,7 @@ Initial preview release of the new 4.0.0 SDK that aligns with [Azure.Core for .N
2632

2733
### Key differences with [V3](https://github.com/Azure/azure-cosmos-dotnet-v3/)
2834

35+
* [System.Text.Json](https://docs.microsoft.com/dotnet/standard/serialization/system-text-json-overview) used as default serialization mechanism instead of Newtonsoft.Json.
2936
* Queries now support `await foreach` through `IAsyncEnumerable` available in C# 8 for streams and types. This replaces the `FeedIterator` class in the v3 SDK.
3037
* For Typed queries async enumeration is supported at the [item level](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Azure.Core/samples/Response.md#iterating-over-asyncpageable-using-await-foreach), or at the Page level with [AsPages](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Azure.Core/samples/Response.md#iterating-over-asyncpageable-pages).
3138
* For stream queries, async enumeration can be done directly over the [Response](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/core/Azure.Core/samples/Response.md).

0 commit comments

Comments
 (0)