Skip to content

Commit

Permalink
[Storage] Prep hotfix release. (#20705)
Browse files Browse the repository at this point in the history
* changelog + version.

* fix compile error.

* recordings.
  • Loading branch information
kasobol-msft authored Apr 27, 2021
1 parent 4d7a926 commit b4a48d3
Show file tree
Hide file tree
Showing 19 changed files with 2,259 additions and 2,204 deletions.
3 changes: 3 additions & 0 deletions sdk/storage/Azure.Storage.Blobs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 12.8.3 (2020-04-27)
- Fixed bug where Stream returned by BlockBlobClient.OpenWrite could corrupt blocks if flushed between writes.

## 12.8.2 (2020-04-27)
- This release contains bug fixes to improve quality.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.Blobs client library</AssemblyTitle>
<Version>12.8.2</Version>
<Version>12.8.3</Version>
<ApiCompatVersion>12.7.0</ApiCompatVersion>
<DefineConstants>BlobSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage Blobs;Microsoft;Azure;Blobs;Blob;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/Azure.Storage.Blobs/src/BlockBlobClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2138,7 +2138,7 @@ private async Task<Stream> OpenWriteInternal(
CancellationToken cancellationToken)
{
string operationName = $"{nameof(BlockBlobClient)}.{nameof(OpenWrite)}";
DiagnosticScope scope = ClientConfiguration.ClientDiagnostics.CreateScope(operationName);
DiagnosticScope scope = ClientDiagnostics.CreateScope($"{nameof(BlockBlobClient)}.{nameof(OpenWrite)}");

try
{
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit b4a48d3

Please sign in to comment.