Skip to content

[5.6.0] Update versions for AzureRM 5.6.0 release #5778

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 59 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,62 @@
## 5.5.0 - March 2018
## 5.6.0 - March 2018

#### General
* Fix issue with Default Resource Group in CloudShell
* Fix issue where incorrect startup scripts were being executed during module import

#### AzureRM.Profile
* Enable MSI authentication in unsupported scenarios
* Add support for user-defined Managed Service Identity

#### AzureRM.AnalysisServices
* Fixed issue with cleaning up scripts in build

#### AzureRM.Cdn
* Fixed issue with cleaning up scripts in build

#### AzureRM.Compute
* 'New-AzureRmVM' and 'New-AzureRmVMSS' support data disks.
* 'New-AzureRmVM' and 'New-AzureRmVMSS' support custom image by name or by id.
* Log analytic feature
- Added 'Export-AzureRmLogAnalyticRequestRateByInterval' cmdlet
- Added 'Export-AzureRmLogAnalyticThrottledRequests' cmdlet

#### AzureRM.ContainerInstance
* Fix parameter sets issue for container registry and azure file volume mount

#### AzureRM.DataFactoryV2
* Updated the ADF .Net SDK to version 0.6.0-preview containing the following changes:
- Added new AzureDatabricks LinkedService and DatabricksNotebook Activity
- Added headNodeSize and dataNodeSize properties in HDInsightOnDemand LinkedService
- Added LinkedService, Dataset, CopySource for SalesforceMarketingCloud
- Added support for SecureOutput on all activities
- Added new BatchCount property on ForEach activity which control how many concurrent activities to run
- Added new Filter Activity
- Added Linked Service Parameters support

#### AzureRM.Dns
* Support for Private DNS Zones (Public Preview)
- Adds ability to create DNS zones that are visible only to the associated virtual networks

#### AzureRM.Network
* Updating model types for compatibility with DNS cmdlets.

#### AzureRM.RecoveryServices.SiteRecovery
* Changes for ASR Azure to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure,VMware to Azure)
- New-AzureRmRecoveryServicesAsrProtectionContainer
- New-AzureRmRecoveryServicesAsrAzureToAzureDiskReplicationConfig
- Remove-AzureRmRecoveryServicesAsrProtectionContainer
- Update-AzureRmRecoveryServicesAsrProtectionDirection

#### AzureRM.Storage
* Obsolete following parameters in new and set Storage Account cmdlets: EnableEncryptionService and DisableEncryptionService, since Encryption at Rest is enabled by default and can't be disabled.
- New-AzureRmStorageAccount
- Set-AzureRmStorageAccount

#### AzureRM.Websites
* Fixed the help for Remove-AzureRmWebAppSlot

## 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
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.5.0";
public const string AssemblyVersion = "5.6.0";

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

public const string ProfileFile = "AzureProfile.json";

Expand Down
31 changes: 19 additions & 12 deletions src/ResourceManager/Aks/AzureRM.Aks.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 11/3/2017
# Generated on: 3/20/2018
#

@{
Expand Down Expand Up @@ -54,10 +54,9 @@ CLRVersion = '4.0'
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.1.1'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\YamlDotNet.dll',
'.\Microsoft.Azure.Commands.Common.Graph.RBAC.dll',
'.\AutoMapper.dll'

RequiredAssemblies = '.\YamlDotNet.dll',
'.\Microsoft.Azure.Commands.Common.Graph.RBAC.dll',
'.\AutoMapper.dll'

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
Expand All @@ -66,7 +65,7 @@ RequiredAssemblies = '.\YamlDotNet.dll',
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = '.\Microsoft.Azure.Commands.Aks.Format.ps1xml'
# FormatsToProcess = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @('.\Microsoft.Azure.Commands.Aks.dll')
Expand All @@ -75,7 +74,9 @@ NestedModules = @('.\Microsoft.Azure.Commands.Aks.dll')
FunctionsToExport = @()

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @('Get-AzureRmAks', 'New-AzureRmAks', 'Remove-AzureRmAks', 'Import-AzureRmAksCredential', 'Start-AzureRmAksDashboard', 'Stop-AzureRmAksDashboard', 'Set-AzureRmAks')
CmdletsToExport = 'Get-AzureRmAks', 'New-AzureRmAks', 'Remove-AzureRmAks',
'Import-AzureRmAksCredential', 'Start-AzureRmAksDashboard',
'Stop-AzureRmAksDashboard', 'Set-AzureRmAks'

# Variables to export from this module
# VariablesToExport = @()
Expand All @@ -98,7 +99,7 @@ PrivateData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'Azure','ResourceManager','ARM','AKS', 'Kubernetes', 'Container', 'Orchestrator', 'Containers'
Tags = 'Azure','ResourceManager','ARM','AKS','Kubernetes','Container','Orchestrator','Containers'

# A URL to the license for this module.
LicenseUri = 'https://aka.ms/azps-license'
Expand All @@ -110,14 +111,19 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = ''
ReleaseNotes = '* Initial command set for AKS'

# Prerelease string of this module
Prerelease = 'preview'

# Flag to indicate whether the module requires explicit user acceptance for install/update
# RequireLicenseAcceptance = $false

# External dependent modules of this module
# ExternalModuleDependencies = ''
Prerelease = 'preview'
# ExternalModuleDependencies = @()

} # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
Expand All @@ -127,3 +133,4 @@ PrivateData = @{
# DefaultCommandPrefix = ''

}

4 changes: 3 additions & 1 deletion src/ResourceManager/Aks/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--
<!--
Please leave this section at the top of the change log.

Changes for the current release should go under the section titled "Current Release", and should adhere to the following format:
Expand All @@ -18,4 +18,6 @@
- Additional information about change #1
-->
## Current Release

## Version 0.0.1
* Initial command set for AKS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ----------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 3/6/2018
# Generated on: 3/20/2018
#

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

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

# 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.4.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.5.0'; })

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

# ReleaseNotes of this module
ReleaseNotes = '* Fixed issue with importing aliases
* Add support of firewall and query scaleout feature, as well as support of 2017-08-01 api version.'
ReleaseNotes = '* Fix issue with Default Resource Group in CloudShell
* Fixed issue with cleaning up scripts in build'

# 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.5
* Fix issue with Default Resource Group in CloudShell
* Fixed issue with cleaning up scripts in build

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.4.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.5.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 @@ -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.4")]
[assembly: AssemblyFileVersion("0.6.4")]
[assembly: AssemblyVersion("0.6.5")]
[assembly: AssemblyFileVersion("0.6.5")]
10 changes: 4 additions & 6 deletions src/ResourceManager/ApiManagement/AzureRM.ApiManagement.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/20/2018
#

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

# Version number of this module.
ModuleVersion = '5.1.0'
ModuleVersion = '5.1.1'

# 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.4.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.5.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\AutoMapper.dll',
Expand Down Expand Up @@ -189,9 +189,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-AzureRmApiManagementProperty, Set-AzureRmApiManagementProperty, and New-AzureRmApiManagement'
ReleaseNotes = '* Fix issue with Default Resource Group in CloudShell'

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/ApiManagement/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 5.1.1
* Fix issue with Default Resource Group in CloudShell

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

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

[assembly: AssemblyVersion("5.1.0")]
[assembly: AssemblyFileVersion("5.1.0")]
[assembly: AssemblyVersion("5.1.1")]
[assembly: AssemblyFileVersion("5.1.1")]
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/20/2018
#

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

# Version number of this module.
ModuleVersion = '0.1.1'
ModuleVersion = '0.1.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.4.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.5.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll'
Expand Down Expand Up @@ -117,8 +117,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'
ReleaseNotes = '* Fix issue with Default Resource Group in CloudShell'

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/ResourceManager/ApplicationInsights/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.1.2
* Fix issue with Default Resource Group in CloudShell

## Version 0.1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,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.1.1")]
[assembly: AssemblyFileVersion("0.1.1")]
[assembly: AssemblyVersion("0.1.2")]
[assembly: AssemblyFileVersion("0.1.2")]
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: 3/6/2018
# Generated on: 3/20/2018
#

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

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

# 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.4.0'; })
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.5.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 = '* Fixed issue with importing aliases'
ReleaseNotes = '* Fix issue with Default Resource Group in CloudShell'

# Prerelease string of this module
# Prerelease = ''
Expand Down
Loading