Skip to content

Commit

Permalink
Merge branch 'sergey-vmss-custom-image' of https://github.com/sergey-…
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-shandar committed Mar 16, 2018
2 parents d86fc91 + 5510c1c commit 2e2d69f
Show file tree
Hide file tree
Showing 128 changed files with 16,819 additions and 8,801 deletions.
94 changes: 93 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,96 @@
## 5.4.1 - February 2018
## 5.5.0 - March 2018
#### AzureRM.Profile
* Fixed issue with importing aliases
* Load version 10.0.3 of Newtonsoft.Json side-by-side with version 6.0.8

#### Azure.Storage
* Support Soft-Delete feature
- Enable-AzureStorageDeleteRetentionPolicy
- Disable-AzureStorageDeleteRetentionPolicy
- Get-AzureStorageBlob

#### AzureRM.AnalysisServices
* Fixed issue with importing aliases
* Add support of firewall and query scaleout feature, as well as support of 2017-08-01 api version.

#### AzureRM.Automation
* Fixed issue with importing aliases

#### AzureRM.Cdn
* Fixed issue with importing aliases

#### AzureRM.CognitiveServices
* Update notice.txt and notice message.

#### AzureRM.Compute
* 'New-AzureRmVMSS' prints connection strings in verbose mode.
* 'New-AzureRmVmss' supports public IP address, load balancing rules, inbound NAT rules.
* WriteAccelerator feature
- Added WriteAccelerator switch parameter to the following cmdlets:
Set-AzureRmVMOSDisk
Set-AzureRmVMDataDisk
Add-AzureRmVMDataDisk
Add-AzureRmVmssDataDisk
- Added OsDiskWriteAccelerator switch parameter to the following cmdlet:
Set-AzureRmVmssStorageProfile.
- Added OsDiskWriteAccelerator Boolean parameter to the following cmdlets:
Update-AzureRmVM
Update-AzureRmVmss

#### AzureRM.DataFactories
* Fix credential encryption issue that caused no meaningful error for some encryption operations
* Enable integration runtime to be shared across data factory

#### AzureRM.DataFactoryV2
* Add parameter "SetupScriptContainerSasUri" and "Edition" for "Set-AzureRmDataFactoryV2IntegrationRuntime" cmd to enable custom setup and edition selection functionality
* Fix credential encryption issue that caused no meaningful error for some encryption operations.
* Enable integration runtime to be shared across data factory

#### AzureRM.HDInsight
* Fixed issue with importing aliases

#### AzureRM.KeyVault
* Fixed example for Set-AzureRmKeyVaultAccessPolicy

#### AzureRM.Network
* Fixed issue with importing aliases

#### AzureRM.OperationalInsights
* Fixed issue with importing aliases

#### AzureRM.RecoveryServices
* Fixed issue with importing aliases

#### AzureRM.RecoveryServices.SiteRecovery
* Fixed issue with importing aliases

#### AzureRM.Resources
* Fixed issue with importing aliases

#### AzureRM.ServiceBus
* Added EnableBatchedOperations property to Queue
* Added DeadLetteringOnFilterEvaluationExceptions property to Subscriptions

#### AzureRM.ServiceFabric
* Service Fabric cmdlet refresh
- Updated ARM templates
- Failed operations no longer rollback
- Add-AzureRmServiceFabricNodeType
- VMs default to managed disks
- Existing VMSS subnet used
- All operations are idempotent
- Remove-AzureRmServiceFabricNodeType cleans up partially created VMSS and/or cluster node types
- Fixed output of PSCluster object for complex property types

#### AzureRM.Sql
* Fixed issue with importing aliases
* Get-AzureRmSqlServer, New-AzureRmSqlServer, and Remove-AzureRmSqlServer response now includes FullyQualifiedDomainName property.

#### AzureRM.Websites
* Fixed issue with importing aliases
* New-AzureRMWebApp - added parameter set for simplified WebApp creation, with local git repository support.

## 5.4.1 - February 2018
#### AzureRM.Profile
* Fix concurrent module import issue in PowerShell Workflow and Azure Automation

Expand Down
4 changes: 2 additions & 2 deletions src/Common/Commands.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 = "5.4.0";
public const string AssemblyVersion = "5.5.0";

public const string AssemblyFileVersion = "5.4.0";
public const string AssemblyFileVersion = "5.5.0";

public const string ProfileFile = "AzureProfile.json";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 2/5/2018
# Generated on: 3/6/2018
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '0.6.3'
ModuleVersion = '0.6.4'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll'
Expand All @@ -78,8 +78,8 @@ CmdletsToExport = 'Resume-AzureRmAnalysisServicesServer',
'Remove-AzureRmAnalysisServicesServer',
'Set-AzureRmAnalysisServicesServer',
'Test-AzureRmAnalysisServicesServer',
'New-AzureRmAnalysisServicesServer',
'New-AzureRmAnalysisServicesFirewallRule',
'New-AzureRmAnalysisServicesServer',
'New-AzureRmAnalysisServicesFirewallRule',
'New-AzureRmAnalysisServicesFirewallConfig'

# Variables to export from this module
Expand Down Expand Up @@ -116,7 +116,8 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Corrected usage of ''Login-AzureRmAccount'' to use ''Connect-AzureRmAccount'''
ReleaseNotes = '* Fixed issue with importing aliases
* Add support of firewall and query scaleout feature, as well as support of 2017-08-01 api version.'

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/AnalysisServices/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Current Release

## Version 0.6.4
* Fixed issue with importing aliases
* Add support of firewall and query scaleout feature, as well as support of 2017-08-01 api version.
* Fix unique Id is null or empty bug.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ CLRVersion='4.0'
ProcessorArchitecture = 'None'

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
// by using the '*' as shown below:


[assembly: AssemblyVersion("0.6.3")]
[assembly: AssemblyFileVersion("0.6.3")]
[assembly: AssemblyVersion("0.5.0")]
[assembly: AssemblyFileVersion("0.5.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("0.6.3")]
[assembly: AssemblyFileVersion("0.6.3")]
[assembly: AssemblyVersion("0.6.4")]
[assembly: AssemblyFileVersion("0.6.4")]
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\AutoMapper.dll',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll'
Expand Down
8 changes: 4 additions & 4 deletions src/ResourceManager/Automation/AzureRM.Automation.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 2/20/2018
# Generated on: 3/6/2018
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '4.2.1'
ModuleVersion = '4.3.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll'
Expand Down Expand Up @@ -164,7 +164,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Added alias from New-AzureRmAutomationModule to Import-AzureRmAutomationModule'
ReleaseNotes = '* Fixed issue with importing aliases'

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/Automation/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Current Release

## Version 4.3.0
* Fixed issue with importing aliases

## Version 4.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("4.2.1")]
[assembly: AssemblyFileVersion("4.2.1")]
[assembly: AssemblyVersion("4.3.0")]
[assembly: AssemblyFileVersion("4.3.0")]
#if SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.ResourceManager.Automation.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
#else
Expand Down
2 changes: 1 addition & 1 deletion src/ResourceManager/AzureBackup/AzureRM.Backup.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll',
Expand Down
2 changes: 1 addition & 1 deletion src/ResourceManager/AzureBatch/AzureRM.Batch.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Batch.dll',
Expand Down
2 changes: 1 addition & 1 deletion src/ResourceManager/Billing/AzureRM.Billing.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.Billing.dll'
Expand Down
10 changes: 4 additions & 6 deletions src/ResourceManager/Cdn/AzureRM.Cdn.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 1/22/2018
# Generated on: 3/6/2018
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '4.1.0'
ModuleVersion = '4.2.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.Cdn.dll'
Expand Down Expand Up @@ -120,9 +120,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Added Location Completer to -Location parameters allowing tab completion through valid Locations
* Added ResourceGroup Completer to -ResourceGroup parameters allowing tab completion through resource groups in current subscription
* Obsoleted -Tags in favor of -Tag for New-AzureRmCdnEndpoint and New-AzureRmCdnProfile'
ReleaseNotes = '* Fixed issue with importing aliases'

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/Cdn/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Current Release

## Version 4.2.0
* Fixed issue with importing aliases

## Version 4.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("d90791a2-8102-47fc-8150-de25ae796eb1")]
[assembly: AssemblyVersion("4.1.0")]
[assembly: AssemblyFileVersion("4.1.0")]
[assembly: AssemblyVersion("4.2.0")]
[assembly: AssemblyFileVersion("4.2.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 1/22/2018
# Generated on: 3/6/2018
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '0.9.1'
ModuleVersion = '0.9.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -51,7 +51,7 @@ CLRVersion = '4.0'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.3.1'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.4.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.CognitiveServices.dll'
Expand Down Expand Up @@ -113,7 +113,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Integrate with Cognitive Services Management SDK version 3.0.0.'
ReleaseNotes = '* Update notice.txt and notice message.'

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/CognitiveServices/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Current Release

## Version 0.9.2
* Update notice.txt and notice message.

## Version 0.9.1
Expand Down
Loading

0 comments on commit 2e2d69f

Please sign in to comment.