diff --git a/Blob/Changelog.txt b/Blob/Changelog.txt index e0b79edde..9e2ba9f20 100644 --- a/Blob/Changelog.txt +++ b/Blob/Changelog.txt @@ -1,3 +1,8 @@ +Changes in 11.1.4: + +- Addressed GitHub Issue #908 - Unobserved exception was rethrown by the finalizer thread while using Storage Client. +- Fixed bug where XML response parsing hangs indefinietly. This also addresses GitHub issue #790 and #866. SDK will throw if configurable network read timeout occurs. + Changes in 11.1.3: - Updated NuGet package description. diff --git a/Blob/README.md b/Blob/README.md index 06d21a86f..f9406d6ab 100644 --- a/Blob/README.md +++ b/Blob/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Blob SDK for .NET (11.1.3) +# Microsoft Azure Storage Blob SDK for .NET (11.1.4) 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 223ef3e66..bc729f46b 100644 --- a/Common/README.md +++ b/Common/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Common SDK for .NET (11.1.3) +# Microsoft Azure Storage Common SDK for .NET (11.1.4) 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 84ca7738f..675d5e01d 100644 --- a/Common/changelog.txt +++ b/Common/changelog.txt @@ -1,3 +1,8 @@ +Changes in 11.1.4: + +- Addressed GitHub Issue #908 - Unobserved exception was rethrown by the finalizer thread while using Storage Client. +- Fixed bug where XML response parsing hangs indefinietly. This also addresses GitHub issue #790 and #866. SDK will throw if configurable network read timeout occurs. + Changes in 11.1.3: - Updated NuGet package description. diff --git a/File/Changelog.txt b/File/Changelog.txt index 71d84af49..8706d1017 100644 --- a/File/Changelog.txt +++ b/File/Changelog.txt @@ -1,3 +1,8 @@ +Changes in 11.1.4: + +- Addressed GitHub Issue #908 - Unobserved exception was rethrown by the finalizer thread while using Storage Client. +- Fixed bug where XML response parsing hangs indefinietly. This also addresses GitHub issue #790 and #866. SDK will throw if configurable network read timeout occurs. + Changes in 11.1.3: - Updated NuGet package description. diff --git a/File/README.md b/File/README.md index 317ca7918..186b8129a 100644 --- a/File/README.md +++ b/File/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage File SDK for .NET (11.1.3) +# Microsoft Azure Storage File SDK for .NET (11.1.4) 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 fbb9a77b6..14c79b44f 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("11.1.3.0")] -[assembly: AssemblyFileVersion("11.1.3.0")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4.0")] +[assembly: AssemblyFileVersion("11.1.4.0")] +[assembly: AssemblyInformationalVersion("11.1.4.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 0af062ede..b1969d740 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("11.1.3.0")] -[assembly: AssemblyFileVersion("11.1.3.0")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4.0")] +[assembly: AssemblyFileVersion("11.1.4.0")] +[assembly: AssemblyInformationalVersion("11.1.4.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs b/Lib/Common.Split/NetStandard2/Properties/AssemblyInfo.cs index 1c11bcfe2..c77b6fbe0 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("11.1.3.0")] -[assembly: AssemblyFileVersion("11.1.3.0")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4.0")] +[assembly: AssemblyFileVersion("11.1.4.0")] +[assembly: AssemblyInformationalVersion("11.1.4.0")] #if SIGN diff --git a/Lib/Common/Shared/Protocol/Constants.cs b/Lib/Common/Shared/Protocol/Constants.cs index e6509c23f..f0324e404 100644 --- a/Lib/Common/Shared/Protocol/Constants.cs +++ b/Lib/Common/Shared/Protocol/Constants.cs @@ -1055,7 +1055,7 @@ static HeaderConstants() /// /// Specifies the value to use for UserAgent header. /// - public const string UserAgentProductVersion = "11.1.3"; + public const string UserAgentProductVersion = "11.1.4"; /// /// 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 3a34712d5..e39838d32 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("11.1.3.0")] -[assembly: AssemblyFileVersion("11.1.3.0")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4.0")] +[assembly: AssemblyFileVersion("11.1.4.0")] +[assembly: AssemblyInformationalVersion("11.1.4.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs b/Lib/NetStandard2.Split/File/Properties/AssemblyInfo.cs index 409183efd..ac0cd04db 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("11.1.3.0")] -[assembly: AssemblyFileVersion("11.1.3.0")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4.0")] +[assembly: AssemblyFileVersion("11.1.4.0")] +[assembly: AssemblyInformationalVersion("11.1.4.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 253b4d416..6a7600066 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("11.1.3.0")] -[assembly: AssemblyFileVersion("11.1.3.0")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4.0")] +[assembly: AssemblyFileVersion("11.1.4.0")] +[assembly: AssemblyInformationalVersion("11.1.4.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 4f549c0e9..d9905cefe 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("11.1.3")] -[assembly: AssemblyFileVersion("11.1.3")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4")] +[assembly: AssemblyFileVersion("11.1.4")] +[assembly: AssemblyInformationalVersion("11.1.4.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 e442b2596..b5ad743e6 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("11.1.3")] -[assembly: AssemblyFileVersion("11.1.3")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4")] +[assembly: AssemblyFileVersion("11.1.4")] +[assembly: AssemblyInformationalVersion("11.1.4.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 066fd3ce3..b5a2e77e4 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("11.1.3")] -[assembly: AssemblyFileVersion("11.1.3")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4")] +[assembly: AssemblyFileVersion("11.1.4")] +[assembly: AssemblyInformationalVersion("11.1.4.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 d7c73c45d..408b141c5 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("11.1.3")] -[assembly: AssemblyFileVersion("11.1.3")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4")] +[assembly: AssemblyFileVersion("11.1.4")] +[assembly: AssemblyInformationalVersion("11.1.4.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/File/Properties/AssemblyInfo.cs index 7667559b6..b92ba5dbf 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("11.1.3")] -[assembly: AssemblyFileVersion("11.1.3")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4")] +[assembly: AssemblyFileVersion("11.1.4")] +[assembly: AssemblyInformationalVersion("11.1.4.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs b/Lib/WindowsDesktop.Split/Queue/Properties/AssemblyInfo.cs index 912ef5691..8e0fbfff4 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("11.1.3")] -[assembly: AssemblyFileVersion("11.1.3")] -[assembly: AssemblyInformationalVersion("11.1.3.0")] +[assembly: AssemblyVersion("11.1.4")] +[assembly: AssemblyFileVersion("11.1.4")] +[assembly: AssemblyInformationalVersion("11.1.4.0")] #if SIGN [assembly: InternalsVisibleTo( diff --git a/Nuspecs/CreatePackages/CreatePackages.csproj b/Nuspecs/CreatePackages/CreatePackages.csproj index 0432d4386..b40a12d99 100644 --- a/Nuspecs/CreatePackages/CreatePackages.csproj +++ b/Nuspecs/CreatePackages/CreatePackages.csproj @@ -1,7 +1,7 @@  - 11.1.3 + 11.1.4 origin/master v4.7.2 diff --git a/Queue/Changelog.txt b/Queue/Changelog.txt index 6608488df..ea824f2c5 100644 --- a/Queue/Changelog.txt +++ b/Queue/Changelog.txt @@ -1,3 +1,8 @@ +Changes in 11.1.4: + +- Addressed GitHub Issue #908 - Unobserved exception was rethrown by the finalizer thread while using Storage Client. +- Fixed bug where XML response parsing hangs indefinietly. This also addresses GitHub issue #790 and #866. SDK will throw if configurable network read timeout occurs. + Changes in 11.1.3: - Updated NuGet package description. diff --git a/Queue/README.md b/Queue/README.md index 0f039e68a..690fd9e26 100644 --- a/Queue/README.md +++ b/Queue/README.md @@ -1,4 +1,4 @@ -# Microsoft Azure Storage Queue SDK for .NET (11.1.3) +# Microsoft Azure Storage Queue SDK for .NET (11.1.4) The Microsoft Azure Storage Queue SDK for .NET allows you to build Azure applications that take advantage of scalable cloud computing resources.