Skip to content

Commit 52372fc

Browse files
committed
Merge branch 'dev' of https://github.com/Azure/azure-powershell into dev
2 parents ece0cf5 + c415006 commit 52372fc

File tree

418 files changed

+3095
-4435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

418 files changed

+3095
-4435
lines changed

ChangeLog.txt

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
2015.02.12 version 0.8.14
2+
* StorSimple: New StorSimple commands in AzureServiceManagement mode:
3+
* GetAzureStorSimpleAccessControlRecord
4+
* GetAzureStorSimpleStorageAccountCredential
5+
* RemoveAzureStorSimpleAccessControlRecord
6+
* RemoveAzureStorSimpleStorageAccountCredential
7+
* SetAzureStorSimpleAccessControlRecord
8+
* GetAzureStorSimpleDeviceVolume
9+
* RemoveAzureStorSimpleDeviceVolume
10+
* GetAzureStorSimpleDeviceVolumeContainer
11+
* RemoveAzureStorSimpleDeviceVolumeContainer
12+
* GetAzureStorSimpleDevice
13+
* GetAzureStorSimpleDeviceConnectedInitiator
14+
* GetAzureStorSimpleResource
15+
* GetAzureStorSimpleResourceContext
16+
* SetAzureStorSimpleDeviceBackupPolicy
17+
* NewAzureStorSimpleDeviceBackupPolicy
18+
* GetAzureStorSimpleDeviceBackup
19+
* RemoveAzureStorSimpleDeviceBackup
20+
* StartAzureStorSimpleDeviceBackupJob
21+
* StartAzureStorSimpleDeviceBackupRestoreJob
22+
* RemoveAzureStorSimpleDeviceBackupPolicy
23+
* NewAzureStorSimpleDeviceVolume
24+
* SetAzureStorSimpleDeviceVolume
25+
* NewAzureStorSimpleDeviceVolumeContainer
26+
* SelectAzureStorSimpleResource
27+
* GetAzureStorSimpleDeviceBackupPolicy
28+
* NewAzureStorSimpleStorageAccountCredential
29+
* GetAzureStorSimpleTask
30+
* SetAzureStorSimpleStorageAccountCredential
31+
* NewAzureStorSimpleInlineStorageAccountCredential
32+
* NewAzureStorSimpleAccessControlRecord
33+
34+
* HDInsight:
35+
* HeadNodeVMSize (update): the parameter is now a string that can now accept various sizes (specifications here: https://msdn.microsoft.com/en-us/library/azure/dn197896.aspx -> Sizes for Web and Worker Role Instances)
36+
* DataNodeVMSize (new) : use to specify size of data nodes (where applicable)
37+
* ZookeeperNodeVMSize (new): use to specify Zookeeper node sizes (where applicable)
38+
* ClusterType (update): New value (Spark) can be specified as cluster type
39+
* Add-AzureHDInsightConfigValues cmdlet:
40+
* Spark (new): collection of configuration properties can be passed in to customize the Spark service
41+
42+
* Azure Insights cmdlets in AzureResourceManager Mode:
43+
* Get-AzureCrrelationLogId
44+
* Get-AzureResourceGroupLog
45+
* Get-AzureResourceLog
46+
* Get-AzureResourceProviderLog
47+
* Get-AzureSubscriptionIdLog
48+
49+
* Azure VM cmdlets
50+
* Get-AzureVMDscExtentionStatus: Get the DSC Extension status for a cloud service or VM
51+
52+
* Updates and bug fixes for AzureAutomation and AzureDataFactory cmdlets
53+
154
2015.01.08 version 0.8.13
255
* Key Vault Service - new cmdlets in AzureResourceManager mode:
356
* Keys:

build.proj

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -90,24 +90,12 @@
9090
<!-- Delete NuGet cache-->
9191
<Delete Files="@(NuGetCache)" />
9292

93-
<Delete Files="$(NuGetRestoreConfigFile)" />
94-
<WriteLinesToFile File="$(NuGetRestoreConfigFile)" Lines="&lt;configuration&gt;&lt;/configuration&gt;" Overwrite="true" Encoding="UTF-8" />
95-
<!-- Create config for user name and password for private feed access -->
96-
<Exec Command="$(NuGetCommand) sources add -Name AzureSdkInternal -Source &quot;https://www.myget.org/F/azure-sdk-internal/&quot; $(NuGetRestoreConfigSwitch)" />
97-
<CallTarget Targets="ForceRestorePackagesFromPrivateFeed"/>
9893
<!-- Restore packages -->
99-
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\src\AzurePowerShell.sln $(NuGetRestoreConfigSwitch)" ContinueOnError="false" />
100-
<!-- delete config file, don't want to leave passwords hanging around on the build server file system -->
101-
<Delete Files="$(NuGetRestoreConfigFile)" />
94+
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\src\AzurePowerShell.sln" ContinueOnError="false" />
95+
10296
<!--Restore the xunit runner needed to run unit tests-->
10397
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\packages.config -PackagesDirectory $(MSBuildProjectDirectory)\packages" />
10498
</Target>
105-
106-
<Target Name="ForceRestorePackagesFromPrivateFeed" Condition="'$(PRIVATE_FEED_PASSWORD)' != ''">
107-
<Exec Command="$(NuGetCommand) sources add -Name Hydra -Source &quot;$(PRIVATE_FEED_URL)&quot; $(NuGetRestoreConfigSwitch)" />
108-
<Exec Command="$(NuGetCommand) sources Update -Name Hydra -UserName $(PRIVATE_FEED_USER_NAME) -Password &quot;$(PRIVATE_FEED_PASSWORD)&quot; $(NuGetRestoreConfigSwitch)"
109-
EchoOff="true" />
110-
</Target>
11199

112100
<!-- Build all flavors of the Cmdlets -->
113101
<Target Name="BuildCmdlets" DependsOnTargets="ForceRestorePackages">

setup/azurecmd.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
33

4-
<?define productName="Microsoft Azure PowerShell - January 2015" ?>
4+
<?define productName="Microsoft Azure PowerShell - February 2015" ?>
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

0 commit comments

Comments
 (0)