Skip to content

Commit a042101

Browse files
author
Hovsep
committed
Merge pull request Azure#545 from Azure/master
Merging Master with release 0.9.4 to Dev
2 parents c0570a1 + d486c07 commit a042101

File tree

16 files changed

+1384
-1025
lines changed

16 files changed

+1384
-1025
lines changed

ChangeLog.txt

Lines changed: 28 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,40 @@
1-
2015.06.25 version 0.9.4
2-
* Added Batch cmdlets
3-
* Start-AzureBatchPoolResize
4-
* Stop-AzureBatchPoolResize
5-
* Azure SQL Database
6-
* Added cmdlets for pause/resume functionality and retrieving restore points for restoring backups:
7-
* Suspend-AzureSqlDatabase
8-
* Resume-AzureSqlDatabase
9-
* Get-AzureSqlDatabaseRestorePoints
10-
* Changed cmdlets:
11-
* New-AzureSqlDatabase - Can now create Azure Sql Data Warehouse databases
12-
* RedisCache cmdlets
13-
* Set-AzureRedisCache - Added support for scaling, using RedisConfiguration instead of MaxMemoryPolicy #513
14-
* New-AzureRedisCache - Using RedisConfiguration instead of MaxMemoryPolicy #513
1+
2015.06.26 version 0.9.4
2+
* Azure Compute cmdlets
3+
* Warning message for deprecation Name parameter in New-AzureVM. The guidance is to use –Name parameter in New-AzureVMConfig cmdlet.
4+
* Save-AzureVMImgage has new paramter -Path to save the JSON template returned from the server.
5+
* Add-AzureVMNetworkInterface has new paramter -NetworkInterface which accepts a list of NIC object returned by Get-AzureNetworkInterface cmdlet.
6+
* Deprecated “-Name” parameter in Set-AzureVMSourceImage. The guidance is to use the Pub, Offer, SKU, Version method to specify the VM Images for the VM.
7+
* Fixed the formatting of the output of VM Image cmdlets.
8+
* Fixed issues in New/Set-AzureDeployment & other service extension related cmdlets.
9+
* Azure Batch cmdlets
10+
* Added Start-AzureBatchPoolResize
11+
* Added Stop-AzureBatchPoolResize
1512
* Azure Key Vault cmdlets
1613
* Updated Key Vault package versions
1714
* Fixed bugs related to secrets
18-
* Azure Resource Manager
19-
* Added Get-AzureProviderOperation cmdlet
20-
* Added Test-AzureResourceGroup and Test-AzureResource cmdlets
21-
* Refactored Resource Lock cmdlets
22-
* Removed unnecessary code when getting a resource
23-
* Added UsageAggregates cmdlets
24-
* Get-UsageAggregates
25-
* Network Resource Provider changes
15+
* Azure Network Resource Provider cmdlets
2616
* New-AzureLocalNetworkGateway parameter name change
2717
* Reset-AzureLocalNetworkGateway renamed to Set-AzureLocalNetworkGateway, added new parameter
2818
* VirtualNetworkGateway parameter changes
2919
* New-AzureVirtualNetworkGateway parameter changes
3020
* Removed command Resize-AzureVirtualNetworkGateway
3121
* Reset-AzureVirtualNetworkGatewayConnection renamed to Set-AzureVirtualNetworkGatewayConnection8
22+
* Azure RedisCache cmdlets
23+
* Set-AzureRedisCache - Added support for scaling, using RedisConfiguration instead of MaxMemoryPolicy #513
24+
* New-AzureRedisCache - Using RedisConfiguration instead of MaxMemoryPolicy #513
25+
* Azure Resource Manager cmdlets
26+
* Added Get-UsageAggregates
27+
* Added Get-AzureProviderOperation cmdlet
28+
* Added Test-AzureResourceGroup and Test-AzureResource cmdlets
29+
* Refactored Resource Lock cmdlets
30+
* Removed unnecessary code when getting a resource
31+
* Azure SQL Database
32+
* Added cmdlets for pause/resume functionality and retrieving restore points for restoring backups:
33+
* Suspend-AzureSqlDatabase
34+
* Resume-AzureSqlDatabase
35+
* Get-AzureSqlDatabaseRestorePoints
36+
* Changed cmdlets:
37+
* New-AzureSqlDatabase - Can now create Azure Sql Data Warehouse databases
3238

3339
2015.06.05 version 0.9.3
3440
* Fixed bug in Websites cmdlets related to slots #454

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="0.9.3" ?>
8+
<?define version="0.9.4" ?>
99
<?define versionedStartMenuFolder="Microsoft Azure" ?>
1010
<?define staleStartMenuFolder="Windows Azure" ?>
1111

setup/azurecmdfiles.wxi

Lines changed: 348 additions & 0 deletions
Large diffs are not rendered by default.

setup/azurepowershell.sln

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2013
3-
VisualStudioVersion = 12.0.31101.0
3+
VisualStudioVersion = 12.0.30110.0
44
MinimumVisualStudioVersion = 10.0.40219.1
5+
56
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "azurepowershell", "azurepowershell.wixproj", "{36D6E303-E057-4963-A093-C7AAE0FD92B3}"
67
ProjectSection(ProjectDependencies) = postProject
78
{EA5BD11B-10B3-433D-A250-92AE76669D8D} = {EA5BD11B-10B3-433D-A250-92AE76669D8D}
@@ -15,8 +16,10 @@ Global
1516
Release|Any CPU = Release|Any CPU
1617
EndGlobalSection
1718
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18-
{36D6E303-E057-4963-A093-C7AAE0FD92B3}.Debug|Any CPU.ActiveCfg = Debug|x86
19-
{36D6E303-E057-4963-A093-C7AAE0FD92B3}.Release|Any CPU.ActiveCfg = Release|x86
19+
{36D6E303-E057-4963-A093-C7AAE0FD92B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{36D6E303-E057-4963-A093-C7AAE0FD92B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{36D6E303-E057-4963-A093-C7AAE0FD92B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{36D6E303-E057-4963-A093-C7AAE0FD92B3}.Release|Any CPU.Build.0 = Release|Any CPU
2023
{EA5BD11B-10B3-433D-A250-92AE76669D8D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2124
{EA5BD11B-10B3-433D-A250-92AE76669D8D}.Debug|Any CPU.Build.0 = Debug|Any CPU
2225
{EA5BD11B-10B3-433D-A250-92AE76669D8D}.Release|Any CPU.ActiveCfg = Release|Any CPU

src/Common/Commands.Common/AzurePowerShell.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public class AzurePowerShell
2727

2828
public const string AssemblyCopyright = "Copyright © Microsoft";
2929

30-
public const string AssemblyVersion = "0.9.3";
30+
public const string AssemblyVersion = "0.9.4";
3131

32-
public const string AssemblyFileVersion = "0.9.3";
32+
public const string AssemblyFileVersion = "0.9.4";
3333

3434
public const string ProfileFile = "AzureProfile.json";
3535

src/ResourceManager/Commerce/Commands.UsageAggregates/Commands.UsageAggregates.csproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@
2626
</PropertyGroup>
2727
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2828
<DebugType>pdbonly</DebugType>
29+
<DefineConstants>TRACE;SIGN</DefineConstants>
2930
<Optimize>true</Optimize>
3031
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\UsageAggregates</OutputPath>
31-
<DefineConstants>TRACE</DefineConstants>
32-
<ErrorReport>prompt</ErrorReport>
33-
<WarningLevel>4</WarningLevel>
32+
<PlatformTarget>AnyCPU</PlatformTarget>
33+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
34+
<SignAssembly>true</SignAssembly>
35+
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
36+
<DelaySign>true</DelaySign>
3437
</PropertyGroup>
3538
<ItemGroup>
3639
<Reference Include="Hyak.Common">
@@ -83,6 +86,7 @@
8386
</ItemGroup>
8487
<ItemGroup>
8588
<None Include="Microsoft.Azure.Commands.UsageAggregates.dll-help.psd1" />
89+
<None Include="MSSharedLibKey.snk" />
8690
<None Include="packages.config" />
8791
<None Include="TestTheCmdLet.ps1" />
8892
</ItemGroup>
Binary file not shown.

src/ResourceManager/Network/Commands.Network/Models/PSVirtualNetworkGatewayConnection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ public class PSVirtualNetworkGatewayConnection : PSTopLevelResource
3535
[JsonIgnore]
3636
public string VirtualNetworkGateway1Text
3737
{
38-
get { return JsonConvert.SerializeObject(VirtualNetworkGateway1, Formatting.Indented); }
38+
get { return JsonConvert.SerializeObject(VirtualNetworkGateway1.Id, Formatting.Indented); }
3939
}
4040

4141
[JsonIgnore]
4242
public string VirtualNetworkGateway2Text
4343
{
44-
get { return JsonConvert.SerializeObject(VirtualNetworkGateway2, Formatting.Indented); }
44+
get { return JsonConvert.SerializeObject(VirtualNetworkGateway2.Id, Formatting.Indented); }
4545
}
4646

4747
[JsonIgnore]
4848
public string LocalNetworkGateway2Text
4949
{
50-
get { return JsonConvert.SerializeObject(LocalNetworkGateway2, Formatting.Indented); }
50+
get { return JsonConvert.SerializeObject(LocalNetworkGateway2.Id, Formatting.Indented); }
5151
}
5252
}
5353
}

src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.9.3'
12+
ModuleVersion = '0.9.4'
1313

1414
# ID used to uniquely identify this module
1515
GUID = '81d522a4-6e5d-4105-8f58-376204c47458'

src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.9.3'
12+
ModuleVersion = '0.9.4'
1313

1414
# ID used to uniquely identify this module
1515
GUID = 'F237EAAA-BD3A-4965-AD4A-BF38598BFEF7'

src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/PIR.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.dll'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.9.3'
15+
ModuleVersion = '0.9.4'
1616

1717
# ID used to uniquely identify this module
1818
GUID = 'a9343cbd-175c-4f72-90c7-2abe9b300644'

src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/AzurePreview.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ServiceManagement.Preview.dll'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.9.3'
15+
ModuleVersion = '0.9.4'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '1C72E555-E83F-45E4-AED2-AF3278828DCD'

src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/ExpressRoute.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ExpressRoute.dll'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.9.3'
15+
ModuleVersion = '0.9.4'
1616

1717
# ID used to uniquely identify this module
1818
GUID = 'e5b10573-30da-456a-9319-4c0a5f8bed4a'

src/ServiceManagement/Network/Commands.Network/Gateway/GetAzureVNetGatewayIPsecParameters.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,13 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Gateway
2222
public class GetAzureVNetGatewayIPsecParameters : NetworkCmdletBase
2323
{
2424
[Parameter(Position = 0, Mandatory = true, HelpMessage = "The virtual network name.")]
25-
[ValidateGuid]
2625
[ValidateNotNullOrEmpty]
2726
public string VNetName
2827
{
2928
get; set;
3029
}
3130

3231
[Parameter(Position = 1, Mandatory = true, HelpMessage = "The local network site name.")]
33-
[ValidateGuid]
3432
[ValidateNotNullOrEmpty]
3533
public string LocalNetworkSiteName
3634
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.9.3'
12+
ModuleVersion = '0.9.4'
1313

1414
# ID used to uniquely identify this module
1515
GUID = 'D48CF693-4125-4D2D-8790-1514F44CE325'

0 commit comments

Comments
 (0)