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

Commit

Permalink
[9.1] release assembly updates
Browse files Browse the repository at this point in the history
  • Loading branch information
erezvani1529 committed Feb 28, 2018
1 parent 656db52 commit b254fcb
Show file tree
Hide file tree
Showing 21 changed files with 37 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public static class EncryptionConstants
public const string TableEncryptionKeyDetails = "_ClientEncryptionMetadata1";
public const string TableEncryptionPropertyDetails = "_ClientEncryptionMetadata2";
public const string AgentMetadataKey = "EncryptionLibrary";
public const string AgentMetadataValue = ".NET 9.0.0";
public const string AgentMetadataValue = ".NET 9.1.0";
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static class EncryptionConstants
public const string TableEncryptionKeyDetails = "_ClientEncryptionMetadata1";
public const string TableEncryptionPropertyDetails = "_ClientEncryptionMetadata2";
public const string AgentMetadataKey = "EncryptionLibrary";
public const string AgentMetadataValue = ".NET 9.0.0";
public const string AgentMetadataValue = ".NET 9.1.0";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ namespace Microsoft.WindowsAzure.Storage.Shared.Protocol

public static class HeaderConstants
{
public static readonly string UserAgent = "Azure-Storage/9.0.0 ";
public static readonly string UserAgent = "Azure-Storage/9.1.0 ";
public const string UserAgentProductName = "Azure-Storage";
public const string UserAgentProductVersion = "9.0.0";
public const string UserAgentProductVersion = "9.1.0";
public const string PrefixForStorageHeader = "x-ms-";
public const string TrueHeader = "true";
public const string FalseHeader = "false";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("9.0.0.0")]
[assembly: AssemblyFileVersion("9.0.0.0")]
[assembly: AssemblyVersion("9.1.0.0")]
[assembly: AssemblyFileVersion("9.1.0.0")]

[assembly: InternalsVisibleTo(
"Microsoft.WindowsAzure.Storage.Facade.Portable, PublicKey=" +
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Microsoft.WindowsAzure.Storage",
"version": "9.0.0.0",
"version": "9.1.0.0",

"authors": [ "Microsoft Corporation" ],
"description": "Azure Storage SDK for NetCore",
Expand Down
6 changes: 3 additions & 3 deletions Lib/AspNet/Microsoft.WindowsAzure.Storage/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("9.0.0.0")]
[assembly: AssemblyFileVersion("9.0.0.0")]
[assembly: AssemblyInformationalVersion("9.0.0.0")]
[assembly: AssemblyVersion("9.1.0.0")]
[assembly: AssemblyFileVersion("9.1.0.0")]
[assembly: AssemblyInformationalVersion("9.1.0.0")]


[assembly: InternalsVisibleTo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata minClientVersion="2.12">
<id>WindowsAzure.Storage</id>
<version>9.0.0</version>
<version>9.1.0</version>
<title>Windows Azure Storage</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
Expand Down
2 changes: 1 addition & 1 deletion Lib/AspNet/Microsoft.WindowsAzure.Storage/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "9.0.0.0",
"version": "9.1.0.0",

"authors": [ "Microsoft Corporation" ],
"description": "Azure Storage SDK for NetCore",
Expand Down
2 changes: 1 addition & 1 deletion Lib/ClassLibraryCommon/Blob/CloudBlobContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ public virtual Task DeleteAsync(AccessCondition accessCondition, BlobRequestOpti
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the condition that must be met in order for the request to proceed. If <c>null</c>, no condition is used.</param>
/// <param name="options">A <see cref="BlobRequestOptions"/> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
/// <returns><c>true</c> if the container did not already exist and was created; otherwise <c>false</c>.</returns>
/// <returns><c>true</c> if the container existed and was deleted successfully; otherwise <c>false</c>.</returns>
[DoesServiceRequest]
public virtual bool DeleteIfExists(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null)
{
Expand Down
14 changes: 7 additions & 7 deletions Lib/ClassLibraryCommon/File/CloudFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public virtual Task<Stream> OpenReadAsync(AccessCondition accessCondition, FileR
/// <summary>
/// Opens a stream for writing to the file. If the file already exists, then existing data in the file may be overwritten.
/// </summary>
/// <param name="size">The size of the new file, in bytes. If null, the file must already exist, otherwise a new file of the given size will be created.</param>
/// <param name="size">The size of the file to create, in bytes, or null. If null, the file must already exist. If not null, a new file of the given size will be created. If size is not null but the file already exists on the service, the already-existing file will be deleted.</param>
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the access conditions for the file. If <c>null</c>, no condition is used.</param>
/// <param name="options">A <see cref="FileRequestOptions"/> object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
Expand Down Expand Up @@ -218,7 +218,7 @@ public virtual CloudFileStream OpenWrite(long? size, AccessCondition accessCondi
/// <summary>
/// Begins an asynchronous operation to open a stream for writing to the file. If the file already exists, then existing data in the file may be overwritten.
/// </summary>
/// <param name="size">The size of the new file, in bytes. If null, the file must already exist, otherwise a new file of the given size will be created.</param>
/// <param name="size">The size of the file to create, in bytes, or null. If null, the file must already exist. If not null, a new file of the given size will be created. If size is not null but the file already exists on the service, the already-existing file will be deleted.</param>
/// <param name="callback">The callback delegate that will receive notification when the asynchronous operation completes.</param>
/// <param name="state">A user-defined object that will be passed to the callback delegate.</param>
/// <returns>An <see cref="ICancellableAsyncResult"/> that references the asynchronous operation.</returns>
Expand All @@ -231,7 +231,7 @@ public virtual ICancellableAsyncResult BeginOpenWrite(long? size, AsyncCallback
/// <summary>
/// Begins an asynchronous operation to open a stream for writing to the file. If the file already exists, then existing data in the file may be overwritten.
/// </summary>
/// <param name="size">The size of the new file, in bytes. If null, the file must already exist, otherwise a new file of the given size will be created.</param>
/// <param name="size">The size of the file to create, in bytes, or null. If null, the file must already exist. If not null, a new file of the given size will be created. If size is not null but the file already exists on the service, the already-existing file will be deleted.</param>
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the access conditions for the file. If <c>null</c>, no condition is used.</param>
/// <param name="options">A <see cref="FileRequestOptions"/> object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
Expand Down Expand Up @@ -334,7 +334,7 @@ public virtual CloudFileStream EndOpenWrite(IAsyncResult asyncResult)
/// <summary>
/// Returns a task that performs an asynchronous operation to open a stream for writing to the file. If the file already exists, then existing data in the file may be overwritten.
/// </summary>
/// <param name="size">The size of the new file, in bytes. If null, the file must already exist, otherwise a new file of the given size will be created.</param>
/// <param name="size">The size of the file to create, in bytes, or null. If null, the file must already exist. If not null, a new file of the given size will be created. If size is not null but the file already exists on the service, the already-existing file will be deleted.</param>
/// <returns>A <see cref="Task{T}"/> object that represents the current operation.</returns>
[DoesServiceRequest]
public virtual Task<CloudFileStream> OpenWriteAsync(long? size)
Expand All @@ -345,7 +345,7 @@ public virtual Task<CloudFileStream> OpenWriteAsync(long? size)
/// <summary>
/// Returns a task that performs an asynchronous operation to open a stream for writing to the file. If the file already exists, then existing data in the file may be overwritten.
/// </summary>
/// <param name="size">The size of the new file, in bytes. If null, the file must already exist, otherwise a new file of the given size will be created.</param>
/// <param name="size">The size of the file to create, in bytes, or null. If null, the file must already exist. If not null, a new file of the given size will be created. If size is not null but the file already exists on the service, the already-existing file will be deleted.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for a task to complete.</param>
/// <returns>A <see cref="Task{T}"/> object that represents the current operation.</returns>
[DoesServiceRequest]
Expand All @@ -357,7 +357,7 @@ public virtual Task<CloudFileStream> OpenWriteAsync(long? size, CancellationToke
/// <summary>
/// Returns a task that performs an asynchronous operation to open a stream for writing to the file. If the file already exists, then existing data in the file may be overwritten.
/// </summary>
/// <param name="size">The size of the new file, in bytes. If null, the file must already exist, otherwise a new file of the given size will be created.</param>
/// <param name="size">The size of the file to create, in bytes, or null. If null, the file must already exist. If not null, a new file of the given size will be created. If size is not null but the file already exists on the service, the already-existing file will be deleted.</param>
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the access conditions for the file. If <c>null</c>, no condition is used.</param>
/// <param name="options">A <see cref="FileRequestOptions"/> object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
Expand All @@ -371,7 +371,7 @@ public virtual Task<CloudFileStream> OpenWriteAsync(long? size, AccessCondition
/// <summary>
/// Returns a task that performs an asynchronous operation to open a stream for writing to the file. If the file already exists, then existing data in the file may be overwritten.
/// </summary>
/// <param name="size">The size of the new file, in bytes. If null, the file must already exist, otherwise a new file of the given size will be created.</param>
/// <param name="size">The size of the file to create, in bytes, or null. If null, the file must already exist. If not null, a new file of the given size will be created. If size is not null but the file already exists on the service, the already-existing file will be deleted.</param>
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the access conditions for the file. If <c>null</c>, no condition is used.</param>
/// <param name="options">A <see cref="FileRequestOptions"/> object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
Expand Down
2 changes: 1 addition & 1 deletion Lib/Common/Shared/Protocol/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ static HeaderConstants()
/// <summary>
/// Specifies the value to use for UserAgent header.
/// </summary>
public const string UserAgentProductVersion = "9.0.0";
public const string UserAgentProductVersion = "9.1.0";

/// <summary>
/// Master Microsoft Azure Storage header prefix.
Expand Down
6 changes: 3 additions & 3 deletions Lib/WindowsRuntime/Blob/CloudBlob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -878,14 +878,14 @@ public virtual Task UndeleteAsync(AccessCondition accessCondition, BlobRequestOp
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for a task to complete.</param>
/// <returns>A <see cref="Task"/> object that represents the asynchronous operation.</returns>
[DoesServiceRequest]
public virtual async Task UndeleteAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext, CancellationToken cancellationToken)
public virtual Task UndeleteAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext, CancellationToken cancellationToken)
{
BlobRequestOptions modifiedOptions = BlobRequestOptions.ApplyDefaults(options, BlobType.Unspecified, this.ServiceClient);
await Executor.ExecuteAsyncNullReturn(
return Executor.ExecuteAsyncNullReturn(
this.UndeleteBlobImpl(this.attributes, accessCondition, modifiedOptions),
modifiedOptions.RetryPolicy,
operationContext,
cancellationToken).ConfigureAwait(false);
cancellationToken);
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions Lib/WindowsRuntime/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("9.0.0.0")]
[assembly: AssemblyFileVersion("9.0.0.0")]
[assembly: AssemblyVersion("9.1.0.0")]
[assembly: AssemblyFileVersion("9.1.0.0")]

[assembly: ComVisible(false)]

Expand Down
2 changes: 1 addition & 1 deletion Lib/WindowsRuntime/Queue/CloudQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ private RESTCommand<IEnumerable<CloudQueueMessage>> PeekMessagesImpl(int message
}

/// <summary>
/// Implementation for the GetPermissions method.
/// Implementation for the GetMessage method.
/// </summary>
/// <param name="visibilityTimeout">The visibility timeout interval.</param>
/// <param name="options">A <see cref="QueueRequestOptions"/> object that specifies additional options for the request.</param>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"title": "Microsoft.WindowsAzure.Storage.Facade.NetCore.Test",
"version": "9.0.0.0",
"version": "9.1.0.0",
"testRunner": "xunit",

"dependencies": {
"xunit": "2.1.0",
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"XUnitForMsTest": "1.0.0.0",
"WindowsAzure.Storage": "9.0.0"
"WindowsAzure.Storage": "9.1.0"
},

"frameworks": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "8.0.0.0",
"dependencies": {
"WindowsAzure.Storage": "9.0.0"
"WindowsAzure.Storage": "9.1.0"
},
"frameworks": {
"wp81": {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": "9.0.0.0",
"version": "9.1.0.0",
"supports": {},
"dependencies": {
"WindowsAzure.Storage": "9.0.0"
"WindowsAzure.Storage": "9.1.0"
},
"frameworks": {
".NETPortable,Version=v4.5,Profile=Profile259": {}
Expand Down
4 changes: 2 additions & 2 deletions Test/AspNet/Microsoft.WindowsAzure.Storage.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"version": "9.0.0.0",
"version": "9.1.0.0",
"testRunner": "xunit",

"dependencies": {
"xunit": "2.1.0",
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"Microsoft.WindowsAzure.Storage": "9.0.0.0",
"Microsoft.WindowsAzure.Storage": "9.1.0.0",
"XUnitForMsTest": "1.0.0-*"
},

Expand Down
2 changes: 1 addition & 1 deletion Test/AspNet/XUnitForMsTest/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

"dependencies": {
"xunit": "2.1.0",
"WindowsAzure.Storage": "9.0.0",
"WindowsAzure.Storage": "9.1.0",
"dotnet-test-xunit": "2.2.0-preview2-build1029"
},

Expand Down
4 changes: 2 additions & 2 deletions Test/WindowsRuntime/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("9.0.0.0")]
[assembly: AssemblyFileVersion("9.0.0.0")]
[assembly: AssemblyVersion("9.1.0.0")]
[assembly: AssemblyFileVersion("9.1.0.0")]

[assembly: ComVisible(false)]
1 change: 0 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Change in 9.1.0:
- All: Updated AsyncStreamCopier to use IBufferManager.
- All: Updated Get*BlobReference APIs to inherit the existing ServiceClient instance.
- All: Removed the un-necessary stream wrapping when progress tracking is not requested.
- Blob(RT/NetCore): Removed Task.Run from CloudBlob Undelete API.
Expand Down

0 comments on commit b254fcb

Please sign in to comment.