Skip to content

Commit

Permalink
Increment version for storage releases (#17916)
Browse files Browse the repository at this point in the history
  • Loading branch information
azure-sdk authored Jan 12, 2021
1 parent 9877b91 commit 9360362
Show file tree
Hide file tree
Showing 14 changed files with 103 additions and 82 deletions.
15 changes: 9 additions & 6 deletions sdk/storage/Azure.Storage.Blobs.Batch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 12.6.0-beta.1 (Unreleased)


## 12.5.0 (2020-01-12)
- Includes all features from 12.5.0-beta.1.
- This release contains bug fixes to improve quality.
Expand Down Expand Up @@ -30,23 +33,23 @@
- Added support for service version 2019-12-12.
- This release contains bug fixes to improve quality.

## 12.2.1 (2020-03)
## 12.2.1
- Minor bugfixes around task completion.

## 12.2.0 (2020-02)
## 12.2.0
- Added support for service version 2019-07-07.
- Sanitized header values in exceptions.

## 12.1.1 (2020-01)
## 12.1.1
- Pass Storage version to each API.

## 12.1.0
## 12.1.0
- Removed internal dependencies

## 12.0.0 (2019-11)
## 12.0.0
- Azure.Storage.Blobs.Batching assembly and package are renamed to
Azure.Storage.Blobs.Batch for consistency with other platforms.

## 12.0.0-preview.4 (2019-10)
## 12.0.0-preview.4
- This preview is the first release supporting batched operations for Azure
Storage blobs.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.Blobs.Batch client library</AssemblyTitle>
<Version>12.5.0</Version>
<ApiCompatVersion>12.4.0</ApiCompatVersion>
<Version>12.6.0-beta.1</Version>
<ApiCompatVersion>12.5.0</ApiCompatVersion>
<DefineConstants>BlobSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage Blobs Batching;Batch blob;Batch operation;BlobBatchClient;BlobBatch;Microsoft;Azure;Blobs;Blob;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
<Description>
Expand Down
3 changes: 3 additions & 0 deletions sdk/storage/Azure.Storage.Blobs.ChangeFeed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 12.0.0-preview.9 (Unreleased)


## 12.0.0-preview.8 (2021-01-12)
- Fixed bug where we couldn't handle BlobChangeFeedEvent.EventData.ClientRequestIds that were not GUIDs.

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.ChangeFeed client library</AssemblyTitle>
<Version>12.0.0-preview.8</Version>
<Version>12.0.0-preview.9</Version>
<DefineConstants>ChangeFeedSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Change Feed;Microsoft;Azure;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
<Description>
Expand Down
33 changes: 18 additions & 15 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.9.0-beta.1 (Unreleased)


## 12.8.0 (2021-01-12)
- Includes all features from 12.8.0-beta.1
- Fixed bug where the Stream returned by BlobBaseClient.OpenRead() would return a different Length after calls to Seek().
Expand Down Expand Up @@ -76,64 +79,64 @@
- Fixed bug where BlobBaseClient.BlobName was encoded, affecting SAS generation.
- Fixed bug where AccountType enum was missing BlockBlobStorage and FileStorage

## 12.5.0-preview.4 (2020-06)
## 12.5.0-preview.4
- This preview contains bug fixes to improve quality.

## 12.5.0-preview.1 (2020-06)
## 12.5.0-preview.1
- This preview adds support for client-side encryption, compatible with data uploaded in previous major versions.

## 12.4.4 (2020-06)
## 12.4.4
- This release contains bug fixes to improve quality.

## 12.4.3 (2020-06)
## 12.4.3
- Fixed bug where copy from URL did not handle non-ASCII characters correctly
- Fixed bug where download could hang indefinietly on .NET Framework

## 12.4.2 (2020-05)
## 12.4.2
- Fixed bug where blob, file and directory names were not URL encoded.
- Fixed bug where BlobBaseClient.DownloadAsync() could download data incorrectly if intermittent network failure occurs.

## 12.4.1 (2020-04)
## 12.4.1
- Fixed bug where BlobContainerClient.DeleteIfExistsAsync() would throw an exception if hierarchical namespace was enabled, and the underlying container didn't exist.
- Fixed bug where BlobBaseClient.DownloadAsync() would throw an exception when download an empty Blob.
- Fixed bug where BlockBlobClient.CommitBlockListAsync() would throw an exception when commiting previously committed blocks.

## 12.4.0 (2020-03)
## 12.4.0
- Fixed bug in BlobBaseClient.Download() and BlobClient.Upload() where TransferOptions.MaximumTransferLength was ignored.

## 12.3.0 (2020-02)
## 12.3.0
- Added support for service version 2019-07-07.
- Added support for Encryption Scopes.
- Modified BlockBlobClient.Upload() and .UploadAsync() to support parallel and multi-part uploads.
- Fixed issue where SAS didn't work with signed identifiers.
- Sanitized header values in exceptions.

## 12.2.0 (2020-01)
## 12.2.0
- Added Exists API to BlobBaseClient and BlobContainerClient
- Fixed issue where SAS content headers were not URL encoded when using BlobSasBuilder.
- Fixed progress reporting issue for parallel uploads
- Fixed bug where using SAS connection string from portal would throw an exception if it included
table endpoint.

## 12.1.0
## 12.1.0
- Added check to enforce TokenCredential is used only over HTTPS
- Support using SAS token from connection string
- Fixed issue where AccountName on BlobUriBuilder would not be populated
for non-IP style Uris.

## 12.0.0 (2019-11)
## 12.0.0
- Renamed a number of operations and models to better align with other client
libraries and the .NET Framework Design Guidelines
- Parallel upload/download performance improvements

## 12.0.0-preview.4 (2019-10)
## 12.0.0-preview.4
- Added support for Customer Provided Key server side encryption
- Verification of echoed client request IDs
- Support for geo-redundant read from secondary location on failure
- Added CreateIfNotExists and DeleteIfNotExists convenience methods for Blobs
- Added convenient resource Name properties on all clients

## 12.0.0-preview.3 (2019-09)
## 12.0.0-preview.3
- New Storage features for service version 2019-02-02 (including Customer
Provided Key, expanded Set Tier support, the ability to set rehydration
priority, etc.)
Expand All @@ -142,11 +145,11 @@

For more information, please visit: https://aka.ms/azure-sdk-preview3-net.

## 12.0.0-preview.2 (2019-08)
## 12.0.0-preview.2
- Distributed Tracing
- Bug fixes

## 12.0.0-preview.1 (2019-07)
## 12.0.0-preview.1
This preview is the first release of a ground-up rewrite of our client
libraries to ensure consistency, idiomatic design, productivity, and an
excellent developer experience. It was created following the Azure SDK Design
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.Blobs client library</AssemblyTitle>
<Version>12.8.0</Version>
<ApiCompatVersion>12.7.0</ApiCompatVersion>
<Version>12.9.0-beta.1</Version>
<ApiCompatVersion>12.8.0</ApiCompatVersion>
<DefineConstants>BlobSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage Blobs;Microsoft;Azure;Blobs;Blob;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
<Description>
Expand Down
31 changes: 17 additions & 14 deletions sdk/storage/Azure.Storage.Common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 12.8.0-beta.1 (Unreleased)


## 12.7.0 (2021-01-12)
- Includes all features from 12.7.0-beta.1
- Fixed bug where parsing the connection string only accepted lowercase values
Expand Down Expand Up @@ -29,55 +32,55 @@
## 12.5.0-preview.5 (2020-07-03)
- This release contains bug fixes to improve quality.

## 12.5.0-preview.4 (2020-06)
## 12.5.0-preview.4
- This preview contains bug fixes to improve quality.

## 12.5.0-preview.1 (2020-06)
## 12.5.0-preview.1
- This preview adds support for client-side encryption, compatible with data uploaded in previous major versions.

## 12.4.3 (2020-06)
## 12.4.3
- This release contains bug fixes to improve quality.

## 12.4.2 (2020-06)
## 12.4.2
- This release contains bug fixes to improve quality.

## 12.4.1 (2020-05)
## 12.4.1
- This release contains bug fixes to improve quality.

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

## 12.3.0 (2020-03)
## 12.3.0
- Added InitialTransferLength to StorageTransferOptions

## 12.2.0 (2020-02)
## 12.2.0
- Added support for service version 2019-07-07.
- Update StorageSharedKeyPipelinePolicy to upload the request date header each retry.
- Sanitized header values in exceptions.

## 12.1.1 (2020-01)
## 12.1.1
- Fixed issue where SAS content headers were not URL encoded when using Sas builders.
- Fixed bug where using SAS connection string from portal would throw an exception if it included
table endpoint.

## 12.1.0
## 12.1.0
- Add support for populating AccountName properties of the UriBuilders
for non-IP style Uris.

## 12.0.0-preview.4 (2019-10)
## 12.0.0-preview.4
- Bug fixes

## 12.0.0-preview.3 (2019-09)
## 12.0.0-preview.3
- Support new for Blobs/Files features
- Bug fixes

For more information, please visit: https://aka.ms/azure-sdk-preview3-net.

## 12.0.0-preview.2 (2019-08)
## 12.0.0-preview.2
- Credential rolling
- Bug fixes

## 12.0.0-preview.1 (2019-07)
## 12.0.0-preview.1
This preview is the first release of a ground-up rewrite of our client
libraries to ensure consistency, idiomatic design, productivity, and an
excellent developer experience. It was created following the Azure SDK Design
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.Common client library</AssemblyTitle>
<Version>12.7.0</Version>
<ApiCompatVersion>12.6.0</ApiCompatVersion>
<Version>12.8.0-beta.1</Version>
<ApiCompatVersion>12.7.0</ApiCompatVersion>
<DefineConstants>CommonSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage Common, Microsoft, Azure, StorageScalable, azureofficial</PackageTags>
<Description>
Expand Down
21 changes: 12 additions & 9 deletions sdk/storage/Azure.Storage.Files.DataLake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 12.7.0-beta.1 (Unreleased)


## 12.6.0 (2021-01-12)
- Includes all features from 12.6.0-beta.1
- Fixed bug where the Stream returned by DataLakeFileClient.OpenRead() would return a different Length after calls to Seek().
Expand Down Expand Up @@ -62,30 +65,30 @@ DataLakeDirectoryClient.GetSubDirectoryClient() and DataLakeFileClient.GetFileCl
- Fixed bug where DataLakeFileClient, DataLakeDirectoryClient, and DataLakePathClient.Name and .Path were sometimes URL-encoded.
- Fixed bug where DataLakeDirectoryClient.GetSubDirectory(), GetFile(), CreateSubDirectory(), and CreateFile() were returning clients with an incorrect URI.

## 12.2.2 (2020-06)
## 12.2.2
- This release contains bug fixes to improve quality.

## 12.2.1 (2020-06)
## 12.2.1
- Fixed bug where download could hang indefinietly on .NET Framework

## 12.2.0 (2020-05)
## 12.2.0
- Added DataLakeFileClient.Upload() overload that allows setting metadata, permissions and umask.
- Fixed bug where PathClient.Rename() was not functioning correctly with SAS.
- Added DataLakeFileSystemClient.GetPathClient().
- Fixed bug where data lake errors weren't parsed correctly.

## 12.1.0 (2020-04)
## 12.1.0
- Fixed bug where DataLakeFileSystemClient.DeleteIfExistsAsync() would throw an exception if the underlying File System did not exist.
- Added PathProperties.IsDirectory
- Fixed bug where DataLakeFileClient.Read() would throw an exception when download an empty File.

## 12.0.0 (2020-03)
## 12.0.0
- Added DataLakeFileClient.Upload(), which creates a file, appends data to it, and flushes the file in one user-facing API call.
- Added Exists(), CreateIfNotExists(), and DeleteIfExists() to DataLakeFileSystemClient, DataLakePathClient, DataLakeDirectoryClient, and DataLakeFileClient.
- Made PathClient.Create() and .CreateAsync() public.
- Removed DataLakeFileClient.GetRootDirectory().

## 12.0.0-preview.9
## 12.0.0-preview.9
- Added support for service version 2019-07-07.
- Added DataLakeFileClient.ReadTo() and .ReadToAsync() APIs, providing support for parallel downloads to Stream and Files.
- Added progress reporting to DataLakeFileClient.Append() and .AppendAsync().
Expand All @@ -94,18 +97,18 @@ DataLakeDirectoryClient.GetSubDirectoryClient() and DataLakeFileClient.GetFileCl
- Renamed LeaseDurationType, LeaseState, and LeaseStatus to DataLakeLeaseDuration, DataLakeLeaseState, and DataLakeLeaseStatus
- Sanitized header values in exceptions.

## 12.0.0-preview.8
## 12.0.0-preview.8
- Fixed issue where SAS content headers were not URL encoded when using DataLakeSasBuilder.
- Fixed issue where certain query parameters were not being logged.

## 12.0.0-preview.7
## 12.0.0-preview.7
- Added check to enforce TokenCredential is used only over HTTPS
- Enabled diagnostic tracing
- Added FileSystemClient.GetAccessPolicy and SetAccessPolicy
- Added Path property to DataLakePathClient
- Renamed DataLakeFileSystemClient.ListPaths to GetPaths
- Added PathPermissions and PathAccessControlEntry

## 12.0.0-preview.6 (2019-11)
## 12.0.0-preview.6
This preview is the first release supporting DataLake for Azure
Data Lake Gen 2.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.Files.DataLake client library</AssemblyTitle>
<Version>12.6.0</Version>
<ApiCompatVersion>12.5.0</ApiCompatVersion>
<Version>12.7.0-beta.1</Version>
<ApiCompatVersion>12.6.0</ApiCompatVersion>
<DefineConstants>DataLakeSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage Files;Microsoft;Azure;File;Files;Data Lake;Storage;StorageScalable;$(PackageCommonTags)</PackageTags>
<Description>
Expand Down
Loading

0 comments on commit 9360362

Please sign in to comment.