You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/tables/Azure.Data.Tables/CHANGELOG.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,17 @@
8
8
### Breaking Changes
9
9
10
10
- Eliminated the `TableTransactionalBatch` type and added the `TableTransactionAction` type.
11
-
- Submitting a batch transaction is now accomplished via the `TableClient.SubmitTransaction` or `TableClient.SubmitTransactionAsync` methods which accepts
11
+
- Submitting a batch transaction is now accomplished via the `TableClient.SubmitTransaction` or `TableClient.SubmitTransactionAsync` methods which accepts
12
12
an `IEnumerable<TableTransactionAction>`.
13
13
-`TableClient.SubmitTransaction` and `TableClient.SubmitTransactionAsync` now return `Response<IReadOnlyList<Response>>` rather than `TableBatchResponse`.
14
-
-`TableBatchResponse.GetResponseForEntity` is no longer necessary as the responses can now be correlated directly between the `Response<IReadOnlyList<Response>>`
14
+
-`TableBatchResponse.GetResponseForEntity` is no longer necessary as the responses can now be correlated directly between the `Response<IReadOnlyList<Response>>`
15
15
and the list of `TableTransactionAction`s provided to the submit method.
16
+
- The following renames have occurred:
17
+
-`TableServiceClient` methods `GetTables` and `GetTablesAsync` have been renamed to `Query` and `QueryAsync`
18
+
-`TableServiceClient` methods `GetAccessPolicy` and `GetAccessPolicyAsync` have been renamed to `GetAccessPolicies` and `GetAccessPoliciesAsync`
19
+
-`TableClientOptions` has been renamed to `TablesClientOptions`
20
+
-`RetentionPolicy` has been renamed to `TableRetentionPolicy`
21
+
-`SignedIdentifier` has been renamed to `TableSignedIdentifier`
16
22
17
23
### Changed
18
24
- Failed batch transaction operations now throw `TableTransactionFailedException` which contains a `FailedTransactionActionIndex` property to indicate which
0 commit comments