diff --git a/Blob/Changelog.txt b/Blob/Changelog.txt index 3e0141214..77548f080 100644 --- a/Blob/Changelog.txt +++ b/Blob/Changelog.txt @@ -1,3 +1,8 @@ +Changes in 10.0.2: + +- Fixed GitHub Issue #475: ListBlobsSegmentedAsync throwing an exception when using a SAS url +- Fixed bug causing CloudBlob.GetUserDelegationSharedAccessSignature to generated invalid SAS signatures + Changes in 10.0.1: - None diff --git a/Blob/README.md b/Blob/README.md index e860e0b7c..f801b7515 100644 --- a/Blob/README.md +++ b/Blob/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Blob SDK for .NET (10.0.1) +# Microsoft Azure Storage Blob SDK for .NET (10.0.2) The Microsoft Azure Storage Blob SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources. diff --git a/Common/README.md b/Common/README.md index a8d27e5ab..219fab9f4 100644 --- a/Common/README.md +++ b/Common/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Common SDK for .NET (10.0.1) +# Microsoft Azure Storage Common SDK for .NET (10.0.2) 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. diff --git a/Common/changelog.txt b/Common/changelog.txt index c5aa3ee15..04f82eb96 100644 --- a/Common/changelog.txt +++ b/Common/changelog.txt @@ -1,3 +1,7 @@ +Changes in 10.0.2: + +- None + Changes in 10.0.1: - None diff --git a/File/Changelog.txt b/File/Changelog.txt index 3c3aea030..57adc4fe6 100644 --- a/File/Changelog.txt +++ b/File/Changelog.txt @@ -1,3 +1,9 @@ +Changes in 10.0.2: +- Fixed bug causing CloudFile and CloudFileDirectory.List/CloseHandles to not function with snapshots +- Fixed bug where CloudFile and CloudFileDirectory.List/CloseHandles "marker" URL parameter was being passed to the service as "x-ms-marker" +- Made CloudFile and CloudFileDirectory.List/CloseHandles parameters optional +- Added overloads for CloudFile and CloudFileDirectory.CloseHandles to accept handleId as a ulong + Changes in 10.0.1: - Fix bug where CloudFileDirectory.ExistsAsync (and sync and APM APIs) were incorrectly returning true due to an incorrectly formed request. diff --git a/File/README.md b/File/README.md index ff4f76a3d..409ccb502 100644 --- a/File/README.md +++ b/File/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage File SDK for .NET (10.0.1) +# Microsoft Azure Storage File SDK for .NET (10.0.2) The Microsoft Azure Storage File SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources. diff --git a/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs b/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs index 2b38dce26..03587ff51 100644 --- a/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs +++ b/Lib/Common.Split/NetFx/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1.0")] -[assembly: AssemblyFileVersion("10.0.1.0")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2.0")] +[assembly: AssemblyFileVersion("10.0.2.0")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs b/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs index a5646fa35..f0f5b7cec 100644 --- a/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs +++ b/Lib/Common.Split/NetStandard/Microsoft.Azure.Storage.Common/Properties/AssemblyInfo.cs @@ -34,9 +34,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1.0")] -[assembly: AssemblyFileVersion("10.0.1.0")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2.0")] +[assembly: AssemblyFileVersion("10.0.2.0")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs b/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs index 8a3d46657..c22e326b2 100644 --- a/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs +++ b/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1.0")] -[assembly: AssemblyFileVersion("10.0.1.0")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2.0")] +[assembly: AssemblyFileVersion("10.0.2.0")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN diff --git a/Lib/Common/Shared/Protocol/Constants.cs b/Lib/Common/Shared/Protocol/Constants.cs index bae807fe0..1fb1adea3 100644 --- a/Lib/Common/Shared/Protocol/Constants.cs +++ b/Lib/Common/Shared/Protocol/Constants.cs @@ -1029,7 +1029,7 @@ static HeaderConstants() /// /// Specifies the value to use for UserAgent header. /// - public const string UserAgentProductVersion = "10.0.1"; + public const string UserAgentProductVersion = "10.0.2"; /// /// Master Microsoft Azure Storage header prefix. diff --git a/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs b/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs index 632f45e24..58441d204 100644 --- a/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs +++ b/Lib/NetStandard2.Split/Blob/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1.0")] -[assembly: AssemblyFileVersion("10.0.1.0")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2.0")] +[assembly: AssemblyFileVersion("10.0.2.0")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs b/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs index f3d8d48b2..dcab50f63 100644 --- a/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs +++ b/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1.0")] -[assembly: AssemblyFileVersion("10.0.1.0")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2.0")] +[assembly: AssemblyFileVersion("10.0.2.0")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Storage.Test, PublicKey=" + diff --git a/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs b/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs index 98cd5c9d3..94e255500 100644 --- a/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs +++ b/Lib/NetStandard2.Split/Queue/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1.0")] -[assembly: AssemblyFileVersion("10.0.1.0")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2.0")] +[assembly: AssemblyFileVersion("10.0.2.0")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs index aca0633ae..bcf281d42 100644 --- a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs +++ b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Blob/Properties/AssemblyInfo.cs @@ -34,9 +34,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1")] -[assembly: AssemblyFileVersion("10.0.1")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2")] +[assembly: AssemblyFileVersion("10.0.2")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs b/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs index 38a574aee..cb2eaeae7 100644 --- a/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs +++ b/Lib/Netstandard.Split/Microsoft.Azure.Storage.File/Properties/AssemblyInfo.cs @@ -34,9 +34,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1")] -[assembly: AssemblyFileVersion("10.0.1")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2")] +[assembly: AssemblyFileVersion("10.0.2")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] [assembly: InternalsVisibleTo( "Microsoft.Azure.Storage.Test, PublicKey=" + diff --git a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs index 02ac9239d..8ae324256 100644 --- a/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs +++ b/Lib/Netstandard.Split/Microsoft.Azure.Storage.Queue/Properties/AssemblyInfo.cs @@ -22,9 +22,9 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("9d154050-0b01-4f70-afa3-8e2176e9cd73")] -[assembly: AssemblyVersion("10.0.1")] -[assembly: AssemblyFileVersion("10.0.1")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2")] +[assembly: AssemblyFileVersion("10.0.2")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] [assembly: InternalsVisibleTo( "Microsoft.Azure.Storage.Test, PublicKey=" + diff --git a/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs index 0f5f6efdb..d8154928b 100644 --- a/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs +++ b/Lib/WindowsDesktop.Split/Blob/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1")] -[assembly: AssemblyFileVersion("10.0.1")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2")] +[assembly: AssemblyFileVersion("10.0.2")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs index 25a295c06..47f275d72 100644 --- a/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs +++ b/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1")] -[assembly: AssemblyFileVersion("10.0.1")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2")] +[assembly: AssemblyFileVersion("10.0.2")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs index 882075598..9989aea9a 100644 --- a/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs +++ b/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs @@ -35,9 +35,9 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1")] -[assembly: AssemblyFileVersion("10.0.1")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2")] +[assembly: AssemblyFileVersion("10.0.2")] +[assembly: AssemblyInformationalVersion("10.0.2.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Nuspecs/CreatePackages/CreatePackages.csproj b/Nuspecs/CreatePackages/CreatePackages.csproj index 829729b2b..3acb1418a 100644 --- a/Nuspecs/CreatePackages/CreatePackages.csproj +++ b/Nuspecs/CreatePackages/CreatePackages.csproj @@ -1,7 +1,7 @@  - 10.0.1 + 10.0.2 origin/master v4.7.2 diff --git a/Queue/Changelog.txt b/Queue/Changelog.txt index fd127af62..15441640e 100644 --- a/Queue/Changelog.txt +++ b/Queue/Changelog.txt @@ -1,3 +1,7 @@ +Changes in 10.0.2: + +- None + Changes in 10.0.1: - None diff --git a/Queue/README.md b/Queue/README.md index 8c5463306..2b11decb6 100644 --- a/Queue/README.md +++ b/Queue/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Queue SDK for .NET (10.0.1) +# Microsoft Azure Storage Queue SDK for .NET (10.0.2) The Microsoft Azure Storage Queue SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources. diff --git a/README.md b/README.md index cdde1e3a7..54fd9cb3b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage SDK for .NET (10.0.1) +# Microsoft Azure Storage SDK for .NET (10.0.2) > Server Version: 2018-11-09 diff --git a/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs b/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs index 7f68691b4..6141cae69 100644 --- a/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs +++ b/Test/WindowsDesktop.Split/Properties/AssemblyInfo.cs @@ -33,7 +33,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("10.0.1")] -[assembly: AssemblyFileVersion("10.0.1")] -[assembly: AssemblyInformationalVersion("10.0.1.0")] +[assembly: AssemblyVersion("10.0.2")] +[assembly: AssemblyFileVersion("10.0.2")] +[assembly: AssemblyInformationalVersion("10.0.2.0")]