Skip to content

Commit f65bf5c

Browse files
authored
Merge pull request #3966 from Azure/master
Master => preview for release-4.0.1
2 parents 3b595f5 + ce968f6 commit f65bf5c

File tree

12 files changed

+271
-125
lines changed

12 files changed

+271
-125
lines changed

AzurePowershell.Test.targets

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@
6565
<AsmXUnitTests Include=".\src\ServiceManagement\Common\Commands.ScenarioTest\bin\Debug\Microsoft.WindowsAzure.Commands.ScenarioTest.dll"/>
6666
<AsmXUnitTests Include=".\src\ServiceManagement\RecoveryServices\Commands.RecoveryServices.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServices.Test.dll"/>
6767
<AsmXUnitTests Include=".\src\ServiceManagement\Network\Commands.Network.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.dll"/>
68-
</ItemGroup>
68+
<AsmXUnitTests Include=".\src\Storage\Commands.Storage.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Storage.Test.dll"/>
69+
</ItemGroup>
6970
<ItemGroup Condition=" '$(scope)' == 'all' ">
7071
<XUnitTests Include=".\tools\StaticAnalysis\StaticAnalysis.Test\bin\Debug\StaticAnalysis.Test.dll"/>
7172
<XUnitTests Include=".\src\ResourceManager\ApiManagement\Commands.ApiManagement.Test\bin\Debug\Microsoft.Azure.Commands.ApiManagement.Test.dll"/>

ChangeLog.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## 2017.05.10 - Version 4.0.0
1+
## 2017.05.12 - Version 4.0.1
2+
* Fix issue with New-AzureStorageContext in offline scenarios: https://github.com/Azure/azure-powershell/issues/3939
3+
4+
## 2017.05.10 - Version 4.0.0
25
* This release contains breaking changes. Please see [the migration guide](https://aka.ms/azps-migration-guide) for change details and the impact on existing scripts.
36
* ApiManagement
47
* Added support for configuring external groups in New-AzureRmApiManagementGroup.
@@ -3211,4 +3214,4 @@ Virtual Network cmdlets
32113214
* iisnode 0.1.13
32123215

32133216
2011.12.09 Version 0.5.0
3214-
* Initial Release
3217+
* Initial Release

setup/azurecmd.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="4.0.0" ?>
8+
<?define version="4.0.1" ?>
99

1010
<Product Id="*"
1111
Name="$(var.productName)"

src/ResourceManager/Storage/AzureRM.Storage.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.0.0'
15+
ModuleVersion = '3.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -52,7 +52,7 @@ CLRVersion = '4.0'
5252

5353
# Modules that must be imported into the global environment prior to importing this module
5454
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.0.0'; },
55-
@{ModuleName = 'Azure.Storage'; ModuleVersion = '3.0.0'; })
55+
@{ModuleName = 'Azure.Storage'; ModuleVersion = '3.0.1'; })
5656

5757
# Assemblies that must be loaded prior to importing this module
5858
# RequiredAssemblies = @()

src/ResourceManager/Websites/Commands.Websites/help/Swap-AzureRmWebAppSlot.md

Lines changed: 0 additions & 107 deletions
This file was deleted.

src/ServiceManagement/Services/Commands.Utilities/Azure.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0'
15+
ModuleVersion = '4.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Azure.Storage'; ModuleVersion = '3.0.0'; })
54+
RequiredModules = @(@{ModuleName = 'Azure.Storage'; ModuleVersion = '3.0.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()

src/Storage/Azure.Storage.psd1

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.0.0'
15+
ModuleVersion = '3.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -151,9 +151,10 @@ PrivateData = @{
151151
# IconUri = ''
152152

153153
# ReleaseNotes of this module
154-
ReleaseNotes = '* Upgrade to Azure Storage Client Library 8.1.1 and Azure Storage DataMovement Library 0.5.1
155-
* Add a new cmdlet to support blob Incremental Copy feature
156-
- Start-AzureStorageBlobIncrementalCopy'
154+
ReleaseNotes = '* Fix issue with New-AzureStorageContext in offline scenarios: https://github.com/Azure/azure-powershell/issues/3939
155+
* Upgrade to Azure Storage Client Library 8.1.1 and Azure Storage DataMovement Library 0.5.1
156+
* Add a new cmdlet to support blob Incremental Copy feature
157+
- Start-AzureStorageBlobIncrementalCopy'
157158

158159
# External dependent modules of this module
159160
# ExternalModuleDependencies = ''

src/Storage/Commands.Storage.Test/Commands.Storage.Test.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@
203203
<Compile Include="Common\Cmdlet\NewAzureStorageContextTest.cs" />
204204
<Compile Include="Common\Cmdlet\SetAzureStorageServiceLoggingTest.cs" />
205205
<Compile Include="Common\Cmdlet\SetAzureStorageServiceHourMetricsTest.cs" />
206+
<Compile Include="Common\Cmdlet\StorageContextDisconnectedTests.cs" />
206207
<Compile Include="Common\CommunicationExceptionUtilTest.cs" />
207208
<Compile Include="Common\FileNamingGenerator.cs" />
208209
<Compile Include="Common\IStorageManagement.cs" />

0 commit comments

Comments
 (0)