Skip to content

Commit

Permalink
Merge pull request #3 from Azure/dev
Browse files Browse the repository at this point in the history
Mergefrom Azure:dev
  • Loading branch information
sethusrinivasan committed Dec 15, 2014
2 parents 63bcb7f + 7fe760c commit 600e527
Show file tree
Hide file tree
Showing 33 changed files with 5,360 additions and 679 deletions.
29 changes: 29 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
2014.12.12 version 0.8.12
* StreamAnalytics
* New cmdlets in AzureResourceManager mode
* New-AzureStreamAnalyticsJob
* New-AzureStreamAnalyticsInput
* New-AzureStreamAnalyticsOutput
* New-AzureStreamAnalyticsTransformation
* Get-AzureStreamAnalyticsJob
* Get-AzureStreamAnalyticsInput
* Get-AzureStreamAnalyticsOutput
* Get-AzureStreamAnalyticsTransformation
* Get-AzureStreamAnalyticsQuota
* Remove-AzureStreamAnalyticsJob
* Remove-AzureStreamAnalyticsInput
* Remove-AzureStreamAnalyticsOutput
* Test-AzureStreamAnalyticsInput
* Test-AzureStreamAnalyticsOutput
* Start-AzureStreamAnalyticsJob
* Stop-AzureStreamAnalyticsJob
* Batch
* Fixed issue with Delete-AzureBatchAccount
* Profile
* Fixed issues with Select-AzureSubscription to allow selecting subscriptions by Id
* Deprecated SubscriptionDataFile parameter
* Compute
* Set-AzureVMImage cmdlets - added IconUri, SmallIconUri, and ShowInGui parameters
* Sql
* Added Sql Servver v12 support to SQL authentication context for SqlAzure cmdlets

2014.11.14 Version 0.8.11
* Profile
* Clear-AzureProfile: remove all subscription and credential data from the user store
Expand Down
4 changes: 2 additions & 2 deletions setup/azurecmd.wxs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

<?define productName="Microsoft Azure PowerShell - November 2014" ?>
<?define productName="Microsoft Azure PowerShell - December 2014" ?>
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>

<?define version="0.8.11" ?>
<?define version="0.8.12" ?>
<?define versionedStartMenuFolder="Microsoft Azure" ?>
<?define staleStartMenuFolder="Windows Azure" ?>

Expand Down
4 changes: 2 additions & 2 deletions src/Common/Commands.Common/Common/AzurePowerShell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class AzurePowerShell

public const string AssemblyCopyright = "Copyright © Microsoft";

public const string AssemblyVersion = "0.8.11";
public const string AssemblyVersion = "0.8.12";

public const string AssemblyFileVersion = "0.8.11";
public const string AssemblyFileVersion = "0.8.12";

public const string ProfileFile = "AzureProfile.json";

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@{

# Version number of this module.
ModuleVersion = '0.8.11'
ModuleVersion = '0.8.12'

# ID used to uniquely identify this module
GUID = '81d522a4-6e5d-4105-8f58-376204c47458'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.dll'

# Version number of this module.
ModuleVersion = '0.8.11'
ModuleVersion = '0.8.12'

# ID used to uniquely identify this module
GUID = 'a9343cbd-175c-4f72-90c7-2abe9b300644'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ServiceManagement.Preview.dll'

# Version number of this module.
ModuleVersion = '0.8.11'
ModuleVersion = '0.8.12'

# ID used to uniquely identify this module
GUID = '1C72E555-E83F-45E4-AED2-AF3278828DCD'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ExpressRoute.dll'

# Version number of this module.
ModuleVersion = '0.8.11'
ModuleVersion = '0.8.12'

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

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@{

# Version number of this module.
ModuleVersion = '0.8.11'
ModuleVersion = '0.8.12'

# ID used to uniquely identify this module
GUID = 'D48CF693-4125-4D2D-8790-1514F44CE325'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Data.Services.Client" />
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down Expand Up @@ -132,6 +133,18 @@
<Compile Include="UnitTests\Database\Cmdlet\NewAzureSqlPremiumDatabaseTests.cs" />
<Compile Include="UnitTests\Database\Cmdlet\AzureSqlDatabaseCopyCertAuthTests.cs" />
<Compile Include="UnitTests\Database\Cmdlet\RestoreDatabaseTests.cs" />
<Compile Include="UnitTests\Database\Cmdlet\SqlAuthv12MockTests.cs" />
<Compile Include="UnitTests\TSql\MockQueryResult.cs" />
<Compile Include="UnitTests\TSql\MockSettings.cs" />
<Compile Include="UnitTests\TSql\MockSqlCommand.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="UnitTests\TSql\MockSqlConnection.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="UnitTests\TSql\MockSqlParameter.cs" />
<Compile Include="UnitTests\TSql\MockSqlParameterCollection.cs" />
<Compile Include="UnitTests\TSql\RecordMockDataResultsAttribute.cs" />
<Compile Include="Utilities\SqlCustomPsHostUserInterface.cs" />
<Compile Include="Utilities\SqlDatabaseSettings.cs" />
<Compile Include="UnitTests\MockServer\AsyncExceptionManager.cs" />
Expand Down Expand Up @@ -221,6 +234,9 @@
<SubType>Designer</SubType>
</Content>
<None Include="TestScripts\Database\DeleteDatabase-ScenarioFunctions.ps1" />
<Content Include="Resources\TSqlMockSessions\SqlAuthv12MockTests.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestScripts\Database\ExpectedFormat.txt" />
<Content Include="TestScripts\Server\ExpectedFormat.txt" />
</ItemGroup>
Expand Down
Loading

0 comments on commit 600e527

Please sign in to comment.