Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
11.0.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcc-msft committed Aug 5, 2019
1 parent 8d51333 commit bbb7da6
Show file tree
Hide file tree
Showing 14 changed files with 51 additions and 8 deletions.
4 changes: 4 additions & 0 deletions Blob/BreakingChanges.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Tracking Breaking Changes since 11.0:

- Various MD5-specific parameters on public APIs have been replaced with more generic checksum parameters. For example, ContentMD5 parameter on public APIs has been replaced with a Checksum, which contains MD5 and CRC64 properties.

Tracking Breaking Changes since 10.0:

- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.
Expand Down
11 changes: 11 additions & 0 deletions Blob/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Changes in 11.0.0:

- Added support for CRC64
- Added support for server-side encryption with a client provided key.
- Added support for rehydrate blob priority.
- Added support for setting blob tier on block blobs.
- Added support for batch delete and set blob tier operations.
- Added support for echoed client ID validation. If the service returns a different client ID than what was sent by the SDK, and exception will be thrown.
- Addressed GitHub Issue #894 and 909 - UploadFromStream throws OutOfMemoryException for large streams. Thanks especially due to @markheath for providing some very useful clues to this and a related stack overflow problem.
- Addressed GitHub Issue #905 - XML documentation missing in NuGet package

Changes in 10.0.3:

- Add a public constructor to CloudBlobDirectory, resolving GitHub Issue #639 and #709
Expand Down
2 changes: 1 addition & 1 deletion Blob/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Microsoft Azure Storage Blob SDK for .NET (10.0.3)
# Microsoft Azure Storage Blob SDK for .NET (11.0.0)

The Microsoft Azure Storage Blob SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources.

Expand Down
4 changes: 4 additions & 0 deletions Common/BreakingChanges.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Tracking Breaking Changes since 11.0:

- Various MD5-specific parameters on public APIs have been replaced with more generic checksum parameters. For example, ContentMD5 parameter on public APIs has been replaced with a Checksum, which contains MD5 and CRC64 properties.

Tracking Breaking Changes since 10.0:

- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.
Expand Down
2 changes: 1 addition & 1 deletion Common/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Microsoft Azure Storage Common SDK for .NET (10.0.3)
# Microsoft Azure Storage Common SDK for .NET (11.0.0)

The Microsoft Azure Storage Common SDK for .NET is referenced by Azure Storage Blob/Queue/File SDKs and Azure CosmosDB Table SDK
and should not be referenced directly by your application.
Expand Down
7 changes: 7 additions & 0 deletions Common/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changes in 11.0.0:

- Added support for CRC64
- Added support for echoed client ID validation. If the service returns a different client ID than what was sent by the SDK, and exception will be thrown.
- Addressed GitHub Issue #902 - CorsHttpMethod is missing PATCH method
- Addressed GitHub Issue #905 - XML documentation missing in NuGet package

Changes in 10.0.3:

- Fixed broken links in nuspec file, resolving GitHub Issue #879
Expand Down
4 changes: 4 additions & 0 deletions File/BreakingChanges.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Tracking Breaking Changes since 11.0:

- Various MD5-specific parameters on public APIs have been replaced with more generic checksum parameters. For example, ContentMD5 parameter on public APIs has been replaced with a Checksum, which contains MD5 and CRC64 properties.

Tracking Breaking Changes since 10.0:

- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.
Expand Down
7 changes: 6 additions & 1 deletion File/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Changes in 11.0.0:
- Added support for File SMB REST parity

- Added support for CRC64
- Added support for setting and getting SMB properties.
- Added file write range override which includes source URI.
- Added support for echoed client ID validation. If the service returns a different client ID than what was sent by the SDK, and exception will be thrown.
- GitHub Issue #905 - XML documentation missing in NuGet package

Changes in 10.0.3:

Expand Down
2 changes: 1 addition & 1 deletion File/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Microsoft Azure Storage File SDK for .NET (10.0.3)
# Microsoft Azure Storage File SDK for .NET (11.0.0)

The Microsoft Azure Storage File SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources.

Expand Down
2 changes: 0 additions & 2 deletions Nuspecs/CreatePackages/CreatePackages.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="BuildPackage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionNumber>10.0.3</VersionNumber>
<VersionNumber>10.1.0</VersionNumber>
<VersionNumber>11.0.0</VersionNumber>
<MasterBranch>origin/master</MasterBranch>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
Expand Down
4 changes: 4 additions & 0 deletions Queue/BreakingChanges.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Tracking Breaking Changes since 11.0:

- Various MD5-specific parameters on public APIs have been replaced with more generic checksum parameters. For example, ContentMD5 parameter on public APIs has been replaced with a Checksum, which contains MD5 and CRC64 properties.

Tracking Breaking Changes since 10.0:

- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.
Expand Down
6 changes: 6 additions & 0 deletions Queue/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Changes in 11.0.0:

- Added support for CRC64
- Added support for echoed client ID validation. If the service returns a different client ID than what was sent by the SDK, and exception will be thrown.
- GitHub Issue #905 - XML documentation missing in NuGet package

Changes in 10.0.3:

- Fixed broken links in nuspec file, resolving GitHub Issue #879
Expand Down
2 changes: 1 addition & 1 deletion Queue/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Microsoft Azure Storage Queue SDK for .NET (10.0.3)
# Microsoft Azure Storage Queue SDK for .NET (11.0.0)

The Microsoft Azure Storage Queue SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>10.1.0</VersionPrefix>
<VersionPrefix>11.0.0</VersionPrefix>
<TargetFramework>netcoreapp1.0</TargetFramework>
<DefineConstants>TRACE;NETCORE</DefineConstants>
<DelaySign>true</DelaySign>
Expand Down

0 comments on commit bbb7da6

Please sign in to comment.