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
4 changes: 2 additions & 2 deletions Microsoft.Azure.Cosmos/src/CosmosClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ public virtual FeedIterator GetDatabaseQueryStreamIterator(
/// Creates a new instance of a distributed write transaction.
/// </summary>
/// <returns>An instance of Distributed transaction.</returns>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand All @@ -1190,7 +1190,7 @@ virtual DistributedWriteTransaction CreateDistributedWriteTransaction()
/// Creates a new instance of a distributed read transaction.
/// </summary>
/// <returns>An instance of <see cref="DistributedReadTransaction"/>.</returns>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Cosmos
/// to deserialize a read operation response body into a typed object.
/// </para>
/// </remarks>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Microsoft.Azure.Cosmos
/// <summary>
/// Represents a distributed transaction that will be performed across partitions and/or collections.
/// </summary>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Cosmos
/// <summary>
/// Represents result of a specific operation in distributed transaction.
/// </summary>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down Expand Up @@ -249,7 +249,7 @@ internal static DistributedTransactionOperationResult FromJson(JsonElement json)
/// </summary>
/// <typeparam name="T">The type to which the resource body was deserialized.</typeparam>
#pragma warning disable SA1402 // File may only contain a single type
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Microsoft.Azure.Cosmos
/// <see cref="RequestOptions"/> that apply to an operation within a <see cref="DistributedWriteTransaction"/>
/// or <see cref="DistributedReadTransaction"/>.
/// </summary>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Cosmos
/// <summary>
/// Represents the response for a distributed transaction operation.
/// </summary>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Microsoft.Azure.Cosmos
/// <summary>
/// Represents a distributed transaction that supports write operations across multiple partitions and containers.
/// </summary>
#if INTERNAL
#if PREVIEW
public
#else
internal
Expand Down

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [5600](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/5600) HPK: Adds id to partition key when "/id" is the last path in partition key definition.
- [5838](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/5838) EmbeddingGenerator: Adds ICosmosEmbeddingGenerator client-wide configuration (preview)
- [5911](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/5911) DistributedTransaction: Adds `DistributedReadTransaction` and `DistributedWriteTransaction` APIs (with `CosmosClient.CreateDistributedReadTransaction` / `CreateDistributedWriteTransaction`) for atomic read and write operations across partitions and containers (preview)

#### Breaking Changes

Expand Down
Loading