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

Commit bbb7da6

Browse files
committed
11.0.0 Release
1 parent 8d51333 commit bbb7da6

File tree

14 files changed

+51
-8
lines changed

14 files changed

+51
-8
lines changed

Blob/BreakingChanges.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Tracking Breaking Changes since 11.0:
2+
3+
- 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.
4+
15
Tracking Breaking Changes since 10.0:
26

37
- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.

Blob/Changelog.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Changes in 11.0.0:
2+
3+
- Added support for CRC64
4+
- Added support for server-side encryption with a client provided key.
5+
- Added support for rehydrate blob priority.
6+
- Added support for setting blob tier on block blobs.
7+
- Added support for batch delete and set blob tier operations.
8+
- 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.
9+
- 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.
10+
- Addressed GitHub Issue #905 - XML documentation missing in NuGet package
11+
112
Changes in 10.0.3:
213

314
- Add a public constructor to CloudBlobDirectory, resolving GitHub Issue #639 and #709

Blob/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Azure Storage Blob SDK for .NET (10.0.3)
1+
# Microsoft Azure Storage Blob SDK for .NET (11.0.0)
22

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

Common/BreakingChanges.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Tracking Breaking Changes since 11.0:
2+
3+
- 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.
4+
15
Tracking Breaking Changes since 10.0:
26

37
- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.

Common/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Azure Storage Common SDK for .NET (10.0.3)
1+
# Microsoft Azure Storage Common SDK for .NET (11.0.0)
22

33
The Microsoft Azure Storage Common SDK for .NET is referenced by Azure Storage Blob/Queue/File SDKs and Azure CosmosDB Table SDK
44
and should not be referenced directly by your application.

Common/changelog.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Changes in 11.0.0:
2+
3+
- Added support for CRC64
4+
- 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.
5+
- Addressed GitHub Issue #902 - CorsHttpMethod is missing PATCH method
6+
- Addressed GitHub Issue #905 - XML documentation missing in NuGet package
7+
18
Changes in 10.0.3:
29

310
- Fixed broken links in nuspec file, resolving GitHub Issue #879

File/BreakingChanges.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Tracking Breaking Changes since 11.0:
2+
3+
- 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.
4+
15
Tracking Breaking Changes since 10.0:
26

37
- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.

File/Changelog.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Changes in 11.0.0:
2-
- Added support for File SMB REST parity
2+
3+
- Added support for CRC64
4+
- Added support for setting and getting SMB properties.
5+
- Added file write range override which includes source URI.
6+
- 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.
7+
- GitHub Issue #905 - XML documentation missing in NuGet package
38

49
Changes in 10.0.3:
510

File/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Azure Storage File SDK for .NET (10.0.3)
1+
# Microsoft Azure Storage File SDK for .NET (11.0.0)
22

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

Nuspecs/CreatePackages/CreatePackages.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="BuildPackage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VersionNumber>10.0.3</VersionNumber>
5-
<VersionNumber>10.1.0</VersionNumber>
64
<VersionNumber>11.0.0</VersionNumber>
75
<MasterBranch>origin/master</MasterBranch>
86
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>

Queue/BreakingChanges.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Tracking Breaking Changes since 11.0:
2+
3+
- 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.
4+
15
Tracking Breaking Changes since 10.0:
26

37
- Namespace change from Microsoft.WindowsAzure.Storage.* to Microsoft.Azure.Storage.*, required for SxS with pre-9.4 versions of the library.

Queue/Changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Changes in 11.0.0:
2+
3+
- Added support for CRC64
4+
- 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.
5+
- GitHub Issue #905 - XML documentation missing in NuGet package
6+
17
Changes in 10.0.3:
28

39
- Fixed broken links in nuspec file, resolving GitHub Issue #879

Queue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Microsoft Azure Storage Queue SDK for .NET (10.0.3)
1+
# Microsoft Azure Storage Queue SDK for .NET (11.0.0)
22

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

Test/NetStandard.Split/Microsoft.Azure.Storage.Test/Microsoft.Azure.Storage.Test.NetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>10.1.0</VersionPrefix>
4+
<VersionPrefix>11.0.0</VersionPrefix>
55
<TargetFramework>netcoreapp1.0</TargetFramework>
66
<DefineConstants>TRACE;NETCORE</DefineConstants>
77
<DelaySign>true</DelaySign>

0 commit comments

Comments
 (0)