Skip to content

Commit 8045c0f

Browse files
authored
add more to changelog (Azure#21110)
* add more to changelog
1 parent 9d30d33 commit 8045c0f

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

sdk/tables/Azure.Data.Tables/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,17 @@
88
### Breaking Changes
99

1010
- 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
1212
an `IEnumerable<TableTransactionAction>`.
1313
- `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>>`
1515
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`
1622

1723
### Changed
1824
- Failed batch transaction operations now throw `TableTransactionFailedException` which contains a `FailedTransactionActionIndex` property to indicate which

sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public partial interface ITableEntity
55
Azure.ETag ETag { get; set; }
66
string PartitionKey { get; set; }
77
string RowKey { get; set; }
8-
System.DateTimeOffset? Timestamp { get; }
8+
System.DateTimeOffset? Timestamp { get; set; }
99
}
1010
public partial class TableClient
1111
{

sdk/tables/Azure.Data.Tables/src/ITableEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface ITableEntity
3333
/// This property should not be set on insert or update operations (the value will be ignored).
3434
/// </summary>
3535
/// <value>A <see cref="DateTimeOffset"/> containing the timestamp of the entity.</value>
36-
DateTimeOffset? Timestamp { get; }
36+
DateTimeOffset? Timestamp { get; set; }
3737

3838
/// <summary>
3939
/// Gets or sets the entity's ETag.

0 commit comments

Comments
 (0)