From e7756b916c16b88131c1ce32afa2ca0e3af754c0 Mon Sep 17 00:00:00 2001 From: Ebru Cucen Date: Wed, 8 Nov 2017 09:13:07 +0000 Subject: [PATCH 1/4] Location is not a parameter New-AzureRMWebAppSlot does not have a parameter `Location` --- .../Websites/Commands.Websites/help/New-AzureRmWebAppSlot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Websites/Commands.Websites/help/New-AzureRmWebAppSlot.md b/src/ResourceManager/Websites/Commands.Websites/help/New-AzureRmWebAppSlot.md index 060b699325a7..62524faf7189 100644 --- a/src/ResourceManager/Websites/Commands.Websites/help/New-AzureRmWebAppSlot.md +++ b/src/ResourceManager/Websites/Commands.Websites/help/New-AzureRmWebAppSlot.md @@ -27,7 +27,7 @@ The **New-AzureRmWebAppSlot** cmdlet creates an Azure Web App Slot in a given a ### Example 1 ``` -PS C:\> New-AzureRmWebAppSlot -ResourceGroupName Default-Web-WestUS -Name "ContosoSite" -Location "West US" -AppServicePlan "ContosoServicePlan" -Slot "Slot001" +PS C:\> New-AzureRmWebAppSlot -ResourceGroupName Default-Web-WestUS -Name "ContosoSite" -AppServicePlan "ContosoServicePlan" -Slot "Slot001" ``` This command creates a Slot named Slot001 under an existing Web App names ContosoSite in the existing resource group named Default-Web-WestUS in data center West US. From 073944340bac8ad92df42c5d65b75cbfcafb3b9c Mon Sep 17 00:00:00 2001 From: markcowl Date: Thu, 9 Nov 2017 17:57:01 -0800 Subject: [PATCH 2/4] Fixing up assembly references in dependency map --- .../DependencyAnalyzer/DependencyAnalyzer.cs | 59 ++++++++++--------- 1 file changed, 32 insertions(+), 27 deletions(-) diff --git a/tools/StaticAnalysis/DependencyAnalyzer/DependencyAnalyzer.cs b/tools/StaticAnalysis/DependencyAnalyzer/DependencyAnalyzer.cs index 8d4f8b20bae3..e8764dff7481 100644 --- a/tools/StaticAnalysis/DependencyAnalyzer/DependencyAnalyzer.cs +++ b/tools/StaticAnalysis/DependencyAnalyzer/DependencyAnalyzer.cs @@ -143,9 +143,9 @@ private bool AddSharedAssembly(AssemblyRecord assembly) AssemblyName = assembly.Name, AssemblyPathsAndFileVersions = new List>() { - new Tuple(assembly.Location, new Version(assembly.AssemblyFileMajorVersion, + new Tuple(assembly.Location, new Version(assembly.AssemblyFileMajorVersion, assembly.AssemblyFileMinorVersion)), - new Tuple(stored.Location, new Version(stored.AssemblyFileMajorVersion, + new Tuple(stored.Location, new Version(stored.AssemblyFileMajorVersion, stored.AssemblyFileMinorVersion)) }, @@ -195,9 +195,9 @@ private bool AddSharedAssemblyExactVersion(AssemblyRecord record) ProblemId = CommonAuthenticationMismatch, AssemblyPathsAndFileVersions = new List>() { - new Tuple(record.Location, new Version(record.AssemblyFileMajorVersion, + new Tuple(record.Location, new Version(record.AssemblyFileMajorVersion, record.AssemblyFileMinorVersion)), - new Tuple(stored.Location, new Version(stored.AssemblyFileMajorVersion, + new Tuple(stored.Location, new Version(stored.AssemblyFileMajorVersion, stored.AssemblyFileMinorVersion)), }, Description = string.Format("Assembly {0} has multiple versions as specified in 'Target'", @@ -225,7 +225,7 @@ private static bool RequiresExactVersionMatch(AssemblyRecord name) private static bool IsFrameworkAssembly(AssemblyName name) { - return name.Name.StartsWith("System") || name.Name.Equals("mscorlib") + return name.Name.StartsWith("System") || name.Name.Equals("mscorlib") || FrameworkAssemblies.Contains(name.Name); } @@ -250,6 +250,15 @@ private void ProcessDirectory(string directoryPath) } // Now check for assembly mismatches + foreach (var assembly in _assemblies.Values) + { + + foreach (var reference in assembly.Children) + { + CheckAssemblyReference(reference, assembly); + } + } + foreach (var assembly in _assemblies.Values) { foreach (var parent in assembly.ReferencingAssembly) @@ -265,10 +274,6 @@ private void ProcessDirectory(string directoryPath) }); } - foreach (var reference in assembly.Children) - { - CheckAssemblyReference(reference, assembly); - } } FindExtraAssemblies(); @@ -284,7 +289,7 @@ private static bool IsCommandAssembly(AssemblyRecord assembly) private void FindExtraAssemblies() { - if (_assemblies.Values.Any(a => !IsCommandAssembly(a) && (a.ReferencingAssembly == null + if (_assemblies.Values.Any(a => !IsCommandAssembly(a) && (a.ReferencingAssembly == null || a.ReferencingAssembly.Count == 0 || !a.GetAncestors().Any(IsCommandAssembly)))) { foreach ( @@ -297,7 +302,7 @@ var assembly in AssemblyName = assembly.Name, Severity = 2, ProblemId = ExtraAssemblyRecord, - Description = string.Format("Assembly {0} is not referenced from any cmdlets assembly", + Description = string.Format("Assembly {0} is not referenced from any cmdlets assembly", assembly.Name), Remediation = string.Format("Remove assembly {0} from the project and regenerate the Wix " + "file", assembly.Name) @@ -317,23 +322,23 @@ private void CheckAssemblyReference(AssemblyName reference, AssemblyRecord paren } else if (reference.Version.Major == 0 && reference.Version.Minor == 0) { - Logger.WriteWarning("{0}.dll has reference to assembly {1} without any version specification.", + Logger.WriteWarning("{0}.dll has reference to assembly {1} without any version specification.", parent.Name, reference.Name); _versionConflictLogger.LogRecord(new AssemblyVersionConflict() - { - AssemblyName = reference.Name, - ActualVersion = stored.Version, - ExpectedVersion = reference.Version, - ParentAssembly = parent.Name, - ProblemId = NoAssemblyVersionEvidence, - Severity = 2, - Description = string.Format("Assembly {0} referenced from {1}.dll does not specify any " + + { + AssemblyName = reference.Name, + ActualVersion = stored.Version, + ExpectedVersion = reference.Version, + ParentAssembly = parent.Name, + ProblemId = NoAssemblyVersionEvidence, + Severity = 2, + Description = string.Format("Assembly {0} referenced from {1}.dll does not specify any " + "assembly version evidence. The assembly will use version " + "{2} from disk.", reference.Name, parent.Name, stored.Version), - Remediation = string.Format("Update the reference to assembly {0} from {1} so that " + - "assembly version evidence is supplied", reference.Name, + Remediation = string.Format("Update the reference to assembly {0} from {1} so that " + + "assembly version evidence is supplied", reference.Name, parent.Name) - }); + }); } else { @@ -347,9 +352,9 @@ private void CheckAssemblyReference(AssemblyName reference, AssemblyRecord paren ProblemId = ReferenceDoesNotMatchAssemblyVersion, Severity = 1, Description = string.Format("Assembly {0} version {1} referenced from {2}.dll does " + - "not match assembly version on disk: {3}", + "not match assembly version on disk: {3}", reference.Name, reference.Version, parent.Name, stored.Version), - Remediation = string.Format("Update any references to version {0} of assembly {1}", + Remediation = string.Format("Update any references to version {0} of assembly {1}", minVersion, reference.Name) }); } @@ -363,13 +368,13 @@ private void CheckAssemblyReference(AssemblyName reference, AssemblyRecord paren ReferencingAssembly = parent.Name, Severity = 0, ProblemId = MissingAssemblyRecord, - Description = string.Format("Missing assembly {0} referenced from {1}", reference.Name, + Description = string.Format("Missing assembly {0} referenced from {1}", reference.Name, parent.Name), Remediation = "Ensure that the assembly is included in the Wix file or directory" }); } } - + /// /// These methods will be added in a new work item that has enhancements for Static Analysis tool /// From cbc3ffeab1589a71f769656a89fc1fc0c4de90b1 Mon Sep 17 00:00:00 2001 From: cormacpayne Date: Thu, 9 Nov 2017 18:57:13 -0800 Subject: [PATCH 3/4] Add missing assemblies to RequiredAssemblies field, regenerate wxi --- setup/azurecmdfiles.wxi | 116 ++++++++++++++++++ .../ApiManagement/AzureRM.ApiManagement.psd1 | 3 +- .../AzureBackup/AzureRM.Backup.psd1 | 6 +- .../AzureBatch/AzureRM.Batch.psd1 | 3 +- .../Compute/AzureRM.Compute.psd1 | 3 +- .../DataFactories/AzureRM.DataFactories.psd1 | 3 +- .../HDInsight/AzureRM.HDInsight.psd1 | 3 +- .../KeyVault/AzureRM.KeyVault.psd1 | 6 +- .../AzureRM.RecoveryServices.Backup.psd1 | 11 +- ...AzureRM.RecoveryServices.SiteRecovery.psd1 | 4 +- .../AzureRM.RecoveryServices.psd1 | 3 +- .../RedisCache/AzureRM.RedisCache.psd1 | 3 +- .../SiteRecovery/AzureRM.SiteRecovery.psd1 | 5 +- src/ResourceManager/Sql/AzureRM.Sql.psd1 | 3 +- .../Storage/AzureRM.Storage.psd1 | 3 +- .../AzureRM.StreamAnalytics.psd1 | 3 +- 16 files changed, 162 insertions(+), 16 deletions(-) diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 705d2a1d341b..a8f65088e2d8 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -84,6 +84,9 @@ + + + @@ -141,6 +144,15 @@ + + + + + + + + + @@ -176,6 +188,9 @@ + + + @@ -298,6 +313,9 @@ + + + @@ -422,6 +440,9 @@ + + + @@ -609,6 +630,9 @@ + + + @@ -675,6 +699,18 @@ + + + + + + + + + + + + @@ -973,6 +1009,9 @@ + + + @@ -984,6 +1023,9 @@ + + + @@ -993,12 +1035,30 @@ + + + + + + + + + + + + + + + + + + @@ -1016,6 +1076,9 @@ + + + @@ -1031,6 +1094,9 @@ + + + @@ -1066,6 +1132,9 @@ + + + @@ -1254,15 +1323,24 @@ + + + + + + + + + @@ -1307,6 +1385,9 @@ + + + @@ -1339,6 +1420,9 @@ + + + @@ -1371,6 +1455,9 @@ + + + @@ -3102,6 +3189,7 @@ + @@ -3119,6 +3207,9 @@ + + + @@ -3130,6 +3221,7 @@ + @@ -3168,6 +3260,7 @@ + @@ -3206,6 +3299,7 @@ + @@ -3263,6 +3357,7 @@ + @@ -3283,6 +3378,10 @@ + + + + @@ -3375,24 +3474,34 @@ + + + + + + + + + + @@ -3404,6 +3513,7 @@ + @@ -3460,9 +3570,12 @@ + + + @@ -3477,6 +3590,7 @@ + @@ -3487,6 +3601,7 @@ + @@ -3497,6 +3612,7 @@ + diff --git a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 index e0ba0e5600c1..90bba579ac87 100644 --- a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 +++ b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 index 73976352597c..c1a3513f6cff 100644 --- a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 +++ b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 @@ -54,7 +54,11 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll' +RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', + '.\Microsoft.Azure.Management.BackupServicesManagement.dll', + '.\Microsoft.WindowsAzure.Management.Common.dll', + '.\Microsoft.WindowsAzure.Management.Scheduler.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 index 8a88df09c7e5..e0d03ee4702e 100644 --- a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 +++ b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Batch.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/Compute/AzureRM.Compute.psd1 b/src/ResourceManager/Compute/AzureRM.Compute.psd1 index 6e24803df6ed..e969643fb826 100644 --- a/src/ResourceManager/Compute/AzureRM.Compute.psd1 +++ b/src/ResourceManager/Compute/AzureRM.Compute.psd1 @@ -63,7 +63,8 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Data.Services.Client.dll', '.\Microsoft.WindowsAzure.Commands.Sync.dll', '.\Microsoft.WindowsAzure.Commands.Tools.Vhd.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 index 67a7c477da24..a7bdfd0d31ee 100644 --- a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 +++ b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactories.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', '.\Microsoft.DataTransfer.Gateway.Encryption.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 index a155d31da0f5..303e64d0eed3 100644 --- a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 +++ b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.HDInsight.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 index 89a8e67c6ad5..086b70c14c3c 100644 --- a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 +++ b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 @@ -57,7 +57,11 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; } RequiredAssemblies = '.\Microsoft.Azure.ActiveDirectory.GraphClient.dll', '.\Microsoft.Azure.KeyVault.dll', '.\Microsoft.Azure.KeyVault.WebKey.dll', - '.\Microsoft.Azure.Management.KeyVault.dll' + '.\Microsoft.Azure.Management.KeyVault.dll', + '.\Microsoft.Data.Edm.dll', + '.\Microsoft.Data.OData.dll', + '.\Microsoft.Data.Services.Client.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 index 7047f1e8828f..c159cb42e0be 100644 --- a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 +++ b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 @@ -54,8 +54,15 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Models.dll', - '.\Microsoft.Azure.Management.RecoveryServices.Backup.dll' +RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Models.dll', + '.\Microsoft.Azure.Management.RecoveryServices.Backup.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Helpers.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Logger.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.Providers.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.Backup.ServiceClientAdapter.dll', + '.\Microsoft.Azure.Management.RecoveryServices.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 index 84069d3721a4..c36135aa9fa5 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 @@ -55,8 +55,10 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; } # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\AutoMapper.dll', + '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', '.\Microsoft.Azure.Management.RecoveryServices.dll', - '.\Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll' + '.\Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 index 38045c66eeec..6d59f1bd32eb 100644 --- a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 +++ b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 @@ -54,7 +54,8 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.RecoveryServices.dll' +RequiredAssemblies = '.\Microsoft.Azure.Management.RecoveryServices.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 index a02961e1aa20..13d545347c82 100644 --- a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 +++ b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Insights.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 index 875ff13d04e0..8b51d9bcf101 100644 --- a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 +++ b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 @@ -54,7 +54,10 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.SiteRecovery.dll' +RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', + '.\Microsoft.Azure.Management.RecoveryServices.dll', + '.\Microsoft.Azure.Management.SiteRecovery.dll', + '.\Security.Cryptography.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/Sql/AzureRM.Sql.psd1 b/src/ResourceManager/Sql/AzureRM.Sql.psd1 index a3e66cccc230..a92536f4dc31 100644 --- a/src/ResourceManager/Sql/AzureRM.Sql.psd1 +++ b/src/ResourceManager/Sql/AzureRM.Sql.psd1 @@ -60,7 +60,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/Storage/AzureRM.Storage.psd1 b/src/ResourceManager/Storage/AzureRM.Storage.psd1 index 3ef3e692918f..6f68915f9dc4 100644 --- a/src/ResourceManager/Storage/AzureRM.Storage.psd1 +++ b/src/ResourceManager/Storage/AzureRM.Storage.psd1 @@ -59,7 +59,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 index 4983c5b3838a..e32abd145bf5 100644 --- a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 +++ b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 @@ -58,7 +58,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.StreamAnalytics.dll', '.\Microsoft.Data.Edm.dll', '.\Microsoft.Data.OData.dll', '.\Microsoft.Data.Services.Client.dll', - '.\Microsoft.WindowsAzure.Storage.dll' + '.\Microsoft.WindowsAzure.Storage.dll', + '.\System.Spatial.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() From 4f90ebe0d76d3ff629ba2b534950253467ee4c67 Mon Sep 17 00:00:00 2001 From: cormacpayne Date: Thu, 9 Nov 2017 20:28:52 -0800 Subject: [PATCH 4/4] Update change logs and release notes, bump module versions for 5.0.1 release --- ChangeLog.md | 20 ++- .../ApiManagement/AzureRM.ApiManagement.psd1 | 13 +- .../ApiManagement/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureBackup/AzureRM.Backup.psd1 | 8 +- src/ResourceManager/AzureBackup/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureBatch/AzureRM.Batch.psd1 | 62 +------ src/ResourceManager/AzureBatch/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Commands.Batch/Properties/AssemblyInfo.cs | 4 +- .../Compute/AzureRM.Compute.psd1 | 10 +- src/ResourceManager/Compute/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../DataFactories/AzureRM.DataFactories.psd1 | 5 +- .../DataFactories/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../HDInsight/AzureRM.HDInsight.psd1 | 5 +- src/ResourceManager/HDInsight/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../KeyVault/AzureRM.KeyVault.psd1 | 5 +- src/ResourceManager/KeyVault/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureRM.RecoveryServices.Backup.psd1 | 11 +- .../RecoveryServices.Backup/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- ...AzureRM.RecoveryServices.SiteRecovery.psd1 | 25 +-- .../ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureRM.RecoveryServices.psd1 | 5 +- .../RecoveryServices/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../RedisCache/AzureRM.RedisCache.psd1 | 5 +- src/ResourceManager/RedisCache/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../SiteRecovery/AzureRM.SiteRecovery.psd1 | 5 +- src/ResourceManager/SiteRecovery/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- src/ResourceManager/Sql/AzureRM.Sql.psd1 | 18 +- src/ResourceManager/Sql/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Commands.Sql/Properties/AssemblyInfo.cs | 4 +- .../Sql/LegacySdk/Properties/AssemblyInfo.cs | 4 +- .../Storage/AzureRM.Storage.psd1 | 5 +- src/ResourceManager/Storage/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../AzureRM.StreamAnalytics.psd1 | 5 +- .../StreamAnalytics/ChangeLog.md | 3 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- tools/AzureRM/AzureRM.psd1 | 164 ++++-------------- 70 files changed, 204 insertions(+), 364 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index c734371b7adc..5ff72addcd39 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,22 @@ -## 2017.11.8 - Version 5.0.0 +## 2017.11.10 Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing in the following modules: + - AzureRM.ApiManagement + - AzureRM.Backup + - AzureRM.Batch + - AzureRM.Compute + - AzureRM.DataFactories + - AzureRM.HDInsight + - AzureRM.KeyVault + - AzureRM.RecoveryServices + - AzureRM.RecoveryServices.Backup + - AzureRM.RecoveryServices.SiteRecovery + - AzureRM.RedisCache + - AzureRM.SiteRecovery + - AzureRM.Sql + - AzureRM.Storage + - AzureRM.StreamAnalytics + +## 2017.11.8 - Version 5.0.0 * NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of introduced breaking changes. * All cmdlets in AzureRM now support online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 index 90bba579ac87..0a2474cca6f3 100644 --- a/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 +++ b/src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '5.0.0' +ModuleVersion = '5.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -190,16 +190,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. -* Breaking Changes in Cmdlet to Manage Api Management Users - - New-AzureRmApiManagementUser Parameter `Password` is changed from String to SecureString - - Set-AzureRmApiManagementBackend Parameter `Password` is changed from String to SecureString -* Breaking Changes in Cmdlet to Create Backend Proxy Object - - New-AzureRmApiManagementBackendProxy Parameter `Password` and `UserName` have been replaced with `ProxyCredentials` of type PSCredential -* Updated Cmdlet Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510 -* Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069 -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/ApiManagement/ChangeLog.md b/src/ResourceManager/ApiManagement/ChangeLog.md index d05f94dd7c6b..b90e81ff0124 100644 --- a/src/ResourceManager/ApiManagement/ChangeLog.md +++ b/src/ResourceManager/ApiManagement/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 5.0.0 * NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. * Breaking Changes in Cmdlet to Manage Api Management Users diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs index 95b612956cbd..c96cf5021453 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Properties/AssemblyInfo.cs @@ -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.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs index 9b3bf21d209b..1f4c0c87d215 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/Properties/AssemblyInfo.cs @@ -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.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs index 28bd6a384c2b..b76418abb047 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs @@ -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.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs index c9ac8e51f60c..17c28892dd13 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Properties/AssemblyInfo.cs @@ -42,6 +42,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 index c1a3513f6cff..82b0f5ca1f3c 100644 --- a/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 +++ b/src/ResourceManager/AzureBackup/AzureRM.Backup.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -54,8 +54,7 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Commands.RecoveryServices.ARM.dll', - '.\Microsoft.Azure.Management.BackupServicesManagement.dll', +RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll', '.\Microsoft.WindowsAzure.Management.Common.dll', '.\Microsoft.WindowsAzure.Management.Scheduler.dll', '.\Security.Cryptography.dll' @@ -126,8 +125,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/AzureBackup/ChangeLog.md b/src/ResourceManager/AzureBackup/ChangeLog.md index d222fc919ff0..6aff22d65888 100644 --- a/src/ResourceManager/AzureBackup/ChangeLog.md +++ b/src/ResourceManager/AzureBackup/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs index c38cfa4ee27c..fbd5fc80ad98 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs @@ -46,6 +46,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs index 3ddcab5c82cf..e56939bf9721 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 index e0d03ee4702e..db3df2ec848c 100644 --- a/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 +++ b/src/ResourceManager/AzureBatch/AzureRM.Batch.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -148,65 +148,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. -* Added new parameters to `New-AzureRmBatchAccount`. - - `PoolAllocationMode`: The allocation mode to use for creating pools in the Batch account. To create a Batch account which allocates pool nodes in the user''s subscription, set this to `UserSubscription`. - - `KeyVaultId`: The resource ID of the Azure key vault associated with the Batch account. - - `KeyVaultUrl`: The URL of the Azure key vault associated with the Batch account. -* Updated parameters to `New-AzureBatchTask`. - - Removed the `RunElevated` switch. The `UserIdentity` parameter has been added to replace `RunElevated`, and the equivalent behavior can be achieved by constructing a `PSUserIdentity` as shown below: - - $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin") - - $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser - - Added the `AuthenticationTokenSettings` parameter. This parameter allows you to request the Batch service provide an authentication token to the task when it runs, avoiding the need to pass Batch account keys to the task in order to issue requests to the Batch service. - - Added the `ContainerSettings` parameter. - - This parameter allows you to request the Batch service run the task inside a container. - - Added the `OutputFiles` parameter. - - This parameter allows you to configure the task to upload files to Azure Storage after it has finished. -* Updated parameters to `New-AzureBatchPool`. - - Added the `UserAccounts` parameter. - - This parameter defines user accounts created on each node in the pool. - - Added `TargetLowPriorityComputeNodes` and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`. - - A `TargetDedicated` alias was created for the `TargetDedicatedComputeNodes` parameter. - - Added the `NetworkConfiguration` parameter. - - This parameter allows you to configure the pools network settings. -* Updated parameters to `New-AzureBatchCertificate`. - - The `Password` parameter is now a `SecureString`. -* Updated parameters to `New-AzureBatchComputeNodeUser`. - - The `Password` parameter is now a `SecureString`. -* Updated parameters to `Set-AzureBatchComputeNodeUser`. - - The `Password` parameter is now a `SecureString`. -* Renamed the `Name` parameter to `Path` on `Get-AzureBatchNodeFile`, `Get-AzureBatchNodeFileContent`, and `Remove-AzureBatchNodeFile`. - - A `Name` alias was created for the `Path` parameter. -* Changes to objects: - - Removed the `RunElevated` property on `PSCloudTask`, `PSStartTask`, `PSJobManagerTask`, `PSJobPreparationTask`, and `PSJobReleaseTask`. The `UserIdentity` property has been added to replace `RunElevated`. Equivalent behavior to `RunElevated = $true` can be achieved by constructing a `PSUserIdentity` as shown below: - - $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin") - - $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser - - Added the `AuthenticationTokenSettings` property to `PSCloudTask` and `PSJobManagerTask`. - - Added the `OutputFiles` property to `PSCloudTask`, and `PSJobManagerTask`. - - Added the `ContainerSettings` property to `PSCloudTask`, `PSStartTask`, `PSJobManagerTask`, `PSJobPreparationTask`, and `PSJobReleaseTask`. - - Added the `AllowLowPriorityNode` property to `PSJobManagerTask`. - - Renamed the `SchedulingError` property on `PSJobPreparationTaskExecutionInformation`, `PSJobReleaseTaskExecutionInformation`, `PSStartTaskInformation`, `PSSubtaskInformation`, and `PSTaskExecutionInformation` to `FailureInformation`. - - `FailureInformation` is returned any time there is a task failure. This includes all previous scheduling error cases, as well as nonzero task exit codes, and file upload failures from the new output files feature. - - Renamed `PSTaskSchedulingError` to `PSTaskFailureInformation`. - - Added the `ContainerInformation` and `Result` properties to `PSJobPreparationTaskExecutionInformation`, `PSJobReleaseTaskExecutionInformation`, `PSStartTaskInformation`, `PSSubtaskInformation`, and `PSTaskExecutionInformation`. - - Added the `UserAccounts` property to `PSCloudPool` and `PSPoolSpecification`. - - Added the `TargetLowPriorityComputeNodes` property to `PSCloudPool` and `PSPoolSpecification`, and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`. - - Renamed the `Name` property on `PSNodeFile` to `Path`. - - Added the `EndpointConfiguration` and `IsDedicated` property to `PSComputeNode`. - - Renamed the `SchedulingError` property on `PSExitConditions` to `PreProcessingError`. - - Added the `FileUploadError` to `PSExitConditions`. - - Added the `DependencyAction` property to `PSExitOptions`. - - Added the `OSDisk`, `ContainerConfiguration`, `DataDisks`, and `LicenseType` properties to `PSVirtualMachineConfiguration`. - - Added the `VirtualMachineImageId` property to `PSImageReference`. Note that in order to allow deploying nodes using custom VHDs, the `BatchAccountContext` must be using Azure Active Directory authentication. - - Added the `OnAllTasksComplete` and `OnTaskFailure` properties to `PSJobSpecification`. - - Added the `EndpointConfiguration` property to `PSNetworkConfiguration`. - - Renamed `ResizeError` to `ResizeErrors` on `PSCloudPool`, and it is now a collection. - - `PSMultiInstanceSettings` constructor no longer takes a required `numberOfInstances` parameter, instead it takes a required `coordinationCommandLine` parameter. -* Added support for Azure Active Directory based authentication. - - To use Azure Active Directory authentication, retrieve a `BatchAccountContext` object using the `Get-AzureRmBatchAccount` cmdlet, and supply this `BatchAccountContext` to the `-BatchContext` parameter of a Batch service cmdlet. Azure Active Directory authentication is mandatory for accounts with `PoolAllocationMode = UserSubscription`. - - For existing accounts or for new accounts created with `PoolAllocationMode = BatchService`, you may continue to use shared key authentication by retrieving a `BatchAccountContext` object using the `Get-AzureRmBatchAccoutKeys` cmdlet. -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/AzureBatch/ChangeLog.md b/src/ResourceManager/AzureBatch/ChangeLog.md index 75ff9ef1d44d..c59ee3b3b00d 100644 --- a/src/ResourceManager/AzureBatch/ChangeLog.md +++ b/src/ResourceManager/AzureBatch/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. * Added new parameters to `New-AzureRmBatchAccount`. diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs index a11a23f27d83..7f4db37f43f3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs index 8fdcb7de22f4..30fd1bca30b6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("ed102280-3577-49bf-93dd-11b6e3a44a57")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Batch.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/Compute/AzureRM.Compute.psd1 b/src/ResourceManager/Compute/AzureRM.Compute.psd1 index e969643fb826..ee0d5d1ebe8e 100644 --- a/src/ResourceManager/Compute/AzureRM.Compute.psd1 +++ b/src/ResourceManager/Compute/AzureRM.Compute.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -212,13 +212,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Azure Disk Encryption Extension Commands - - New Parameter for ''Set-AzureRmVmDiskEncryptionExtension'': ''-EncryptFormatAll'' encrypt formats data disks - - New Parameters for ''Set-AzureRmVmDiskEncryptionExtension'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Disable-AzureRmVmDiskEncryption'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Get-AzureRmVmDiskEncryptionStatus'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension\ -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/Compute/ChangeLog.md b/src/ResourceManager/Compute/ChangeLog.md index a9610beff073..50e5de1af909 100644 --- a/src/ResourceManager/Compute/ChangeLog.md +++ b/src/ResourceManager/Compute/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Azure Disk Encryption Extension Commands - New Parameter for 'Set-AzureRmVmDiskEncryptionExtension': '-EncryptFormatAll' encrypt formats data disks diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs index 9e4b46f71679..71a0d754b545 100644 --- a/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ [assembly: Guid("28fe3fc0-6fdf-4f01-8a82-d7b4a834ddd2")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs index a433272a0ca5..a778c5c37be2 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Compute.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 index a7bdfd0d31ee..b6dcc226796a 100644 --- a/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 +++ b/src/ResourceManager/DataFactories/AzureRM.DataFactories.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -135,8 +135,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/DataFactories/ChangeLog.md b/src/ResourceManager/DataFactories/ChangeLog.md index b8bd5be37d94..a6588827c79d 100644 --- a/src/ResourceManager/DataFactories/ChangeLog.md +++ b/src/ResourceManager/DataFactories/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs index 06b6d7512862..ba6ca629a0fc 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ [assembly: Guid("8E86B542-B22F-44B6-8053-3F5118E04DEA")] -[assembly: AssemblyVersion("0.3.0")] -[assembly: AssemblyFileVersion("0.3.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs index 78208315542f..69c065fd3a8d 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("0.3.0")] -[assembly: AssemblyFileVersion("0.3.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.DataFactories.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 index 303e64d0eed3..6c62a170fd50 100644 --- a/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 +++ b/src/ResourceManager/HDInsight/AzureRM.HDInsight.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -143,8 +143,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/HDInsight/ChangeLog.md b/src/ResourceManager/HDInsight/ChangeLog.md index 9f4325721c22..e70d84a86b20 100644 --- a/src/ResourceManager/HDInsight/ChangeLog.md +++ b/src/ResourceManager/HDInsight/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs index 6e57dcc40d49..01cd0e426b51 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Properties/AssemblyInfo.cs @@ -46,6 +46,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs index d6fd7077ab43..b20aabc743d8 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Properties/AssemblyInfo.cs @@ -27,5 +27,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("57ad7b0e-1f56-4166-b1f9-ec6512139a54")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 index 086b70c14c3c..f096a167cb97 100644 --- a/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 +++ b/src/ResourceManager/KeyVault/AzureRM.KeyVault.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -151,8 +151,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/KeyVault/ChangeLog.md b/src/ResourceManager/KeyVault/ChangeLog.md index 2e4e1c3f2fc4..d3a0b5610504 100644 --- a/src/ResourceManager/KeyVault/ChangeLog.md +++ b/src/ResourceManager/KeyVault/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs index 6743ebea4aa0..313d18aef94f 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Properties/AssemblyInfo.cs @@ -47,6 +47,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion( "3.0.0.0" )] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion( "4.0.1.0" )] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs index 6e607836ea93..a381e8e6963d 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/AssemblyInfo.cs @@ -29,8 +29,8 @@ [assembly: CLSCompliant(false)] [assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.KeyVault.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 index c159cb42e0be..aad18a07b0a4 100644 --- a/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 +++ b/src/ResourceManager/RecoveryServices.Backup/AzureRM.RecoveryServices.Backup.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -137,14 +137,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Added cmdlets to perform instant file recovery. - - Get-AzureRmRecoveryServicesBackupRPMountScript - - Disable-AzureRmRecoveryServicesBackupRPMountScript -* Updated RecoveryServices.Backup SDK version to the latest -* Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves. -* Fixes https://github.com/Azure/azure-powershell/issues/3164 -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md b/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md index 0b180517ae88..fe1c2e442233 100644 --- a/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md +++ b/src/ResourceManager/RecoveryServices.Backup/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Added cmdlets to perform instant file recovery. - Get-AzureRmRecoveryServicesBackupRPMountScript diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs index e20e5b6806ac..eebc6c516ec8 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Properties/AssemblyInfo.cs @@ -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("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs index e20e5b6806ac..eebc6c516ec8 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Logger/Properties/AssemblyInfo.cs @@ -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("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs index e20e5b6806ac..eebc6c516ec8 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/Properties/AssemblyInfo.cs @@ -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("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs index e20e5b6806ac..eebc6c516ec8 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Properties/AssemblyInfo.cs @@ -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("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs index e20e5b6806ac..eebc6c516ec8 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.ServiceClientAdapter/Properties/AssemblyInfo.cs @@ -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("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs index 1a7f384fc327..2b4185f7baae 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Properties/AssemblyInfo.cs @@ -47,6 +47,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs index e20e5b6806ac..eebc6c516ec8 100644 --- a/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Properties/AssemblyInfo.cs @@ -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("1.0.*")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 index c36135aa9fa5..81359a9c4425 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/AzureRM.RecoveryServices.SiteRecovery.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.2.0' +ModuleVersion = '0.2.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -244,28 +244,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure) - - New-AzureRmRecoveryServicesAsrPolicy - - New-AzureRmRecoveryServicesAsrProtectedItem - - Update-AzureRmRecoveryServicesAsrPolicy - - Update-AzureRmRecoveryServicesAsrProtectionDirection -* Added support to AAD-based vault -* Added cmdlets to manage VCenter resources - - Get-AzureRmRecoveryServicesAsrVCenter - - New-AzureRmRecoveryServicesAsrVCenter - - Remove-AzureRmRecoveryServicesAsrVCenter - - Update-AzureRmRecoveryServicesAsrVCenter -* Added other cmdlets - - Get-AzureRmRecoveryServicesAsrAlertSetting - - Get-AzureRmRecoveryServicesAsrEvent - - New-AzureRmRecoveryServicesAsrProtectableItem - - Set-AzureRmRecoveryServicesAsrAlertSetting - - Start-AzureRmRecoveryServicesAsrResynchronizeReplicationJob - - Start-AzureRmRecoveryServicesAsrSwitchProcessServerJob - - Start-AzureRmRecoveryServicesAsrTestFailoverCleanupJob - - Update-AzureRmRecoveryServicesAsrMobilityService -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md b/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md index e5530024b6c1..8b61ddcabfd5 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 0.2.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 0.2.0 * Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure) - New-AzureRmRecoveryServicesAsrPolicy diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs index ebfa563e851f..5cdc78dcf3f0 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery.Test/Properties/AssemblyInfo.cs @@ -43,6 +43,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("0.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("0.2.1")] +[assembly: AssemblyFileVersion("0.2.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs index 9c0d5e987879..9f08ed17e5f8 100644 --- a/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices.SiteRecovery/Commands.RecoveryServices.SiteRecovery/Properties/AssemblyInfo.cs @@ -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.2.0")] -[assembly: AssemblyFileVersion("0.2.0")] +[assembly: AssemblyVersion("0.2.1")] +[assembly: AssemblyFileVersion("0.2.1")] diff --git a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 index 6d59f1bd32eb..c70ed777af8e 100644 --- a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 +++ b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -114,8 +114,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RecoveryServices/ChangeLog.md b/src/ResourceManager/RecoveryServices/ChangeLog.md index d222fc919ff0..6aff22d65888 100644 --- a/src/ResourceManager/RecoveryServices/ChangeLog.md +++ b/src/ResourceManager/RecoveryServices/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs index 94e93099c02a..eef68d15b2c8 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Properties/AssemblyInfo.cs @@ -43,5 +43,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs index acfc44724df0..dbaa1cacc218 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/AssemblyInfo.cs @@ -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("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 index 13d545347c82..090f60ac9342 100644 --- a/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 +++ b/src/ResourceManager/RedisCache/AzureRM.RedisCache.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -122,8 +122,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/RedisCache/ChangeLog.md b/src/ResourceManager/RedisCache/ChangeLog.md index d222fc919ff0..6aff22d65888 100644 --- a/src/ResourceManager/RedisCache/ChangeLog.md +++ b/src/ResourceManager/RedisCache/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs index 78136f2532a6..30e9ffae4a35 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ [assembly: Guid("C01CC766-EAA4-4CA3-A595-6C4681316532")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs b/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs index 398bbf4ad62f..df88d3d0de42 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("6D663ED9-C1A5-438F-B88A-D709562538C6")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.RedisCache.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 index 8b51d9bcf101..2e08cc7d3209 100644 --- a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 +++ b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '5.0.0' +ModuleVersion = '5.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -164,8 +164,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/SiteRecovery/ChangeLog.md b/src/ResourceManager/SiteRecovery/ChangeLog.md index fc4db6f834c6..da4a1ea53186 100644 --- a/src/ResourceManager/SiteRecovery/ChangeLog.md +++ b/src/ResourceManager/SiteRecovery/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 5.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs index 64a56e47f3cf..bce3c1342dc6 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Properties/AssemblyInfo.cs @@ -43,6 +43,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("5.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs index a48b0ecbdd1c..f90daff59758 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/AssemblyInfo.cs @@ -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.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] diff --git a/src/ResourceManager/Sql/AzureRM.Sql.psd1 b/src/ResourceManager/Sql/AzureRM.Sql.psd1 index a92536f4dc31..4411e29bcdce 100644 --- a/src/ResourceManager/Sql/AzureRM.Sql.psd1 +++ b/src/ResourceManager/Sql/AzureRM.Sql.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -229,21 +229,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Adding support for list and cancel the asynchronous updateslo operation on the database - - update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status. - - add new cmdlet Stop-AzureRmSqlDatabaseActivity for cancel the asynchronous updateslo operation on the database. -* Adding support for Zone Redundancy for databases and elastic pools - - Adding ZoneRedundant switch parameter to New-AzureRmSqlDatabase - - Adding ZoneRedundant switch parameter to Set-AzureRmSqlDatabase - - Adding ZoneRedundant switch parameter to New-AzureRmSqlElasticPool - - Adding ZoneRedundant switch parameter to Set-AzureRmSqlElasticPool -* Adding support for Server DNS Aliases - - Adding Get-AzureRmSqlServerDnsAlias cmdlet which gets server dns aliases by server and alias name or a list of server dns aliases for an azure Sql Server. - - Adding New-AzureRmSqlServerDnsAlias cmdlet which creates new server dns alias for a given Azure Sql server - - Adding Set-AzurermSqlServerDnsAlias cmlet which allows updating a Azure Sql Server to which server dns alias is pointing - - Adding Remove-AzureRmSqlServerDnsAlias cmdlet which removes a server dns alias for a Azure Sql Server -* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/Sql/ChangeLog.md b/src/ResourceManager/Sql/ChangeLog.md index d858e98e5f3b..7dcfc3f3feaa 100644 --- a/src/ResourceManager/Sql/ChangeLog.md +++ b/src/ResourceManager/Sql/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Adding support for list and cancel the asynchronous updateslo operation on the database - update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status. diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs index a833584f7843..1bc91a09627b 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("f6f46134-9c1b-4599-8dd0-789299c076ef")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs b/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs index 5341820b3f72..a4f5fde3f859 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/AssemblyInfo.cs @@ -44,8 +44,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.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Resources.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs b/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs index ab702bcc6273..497bc772f5a2 100644 --- a/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Sql/LegacySdk/Properties/AssemblyInfo.cs @@ -20,8 +20,8 @@ [assembly: AssemblyTitle("Microsoft Azure SQL Server Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManager/Storage/AzureRM.Storage.psd1 b/src/ResourceManager/Storage/AzureRM.Storage.psd1 index 6f68915f9dc4..a9b763ea545e 100644 --- a/src/ResourceManager/Storage/AzureRM.Storage.psd1 +++ b/src/ResourceManager/Storage/AzureRM.Storage.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -122,8 +122,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/Storage/ChangeLog.md b/src/ResourceManager/Storage/ChangeLog.md index c0ecf97ee76a..5c3ce42818b8 100644 --- a/src/ResourceManager/Storage/ChangeLog.md +++ b/src/ResourceManager/Storage/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs index 7c28a4492982..47e6eea00967 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage.Test/Properties/AssemblyInfo.cs @@ -47,6 +47,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs index 5036b062333e..98cd2fef7cf5 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Properties/AssemblyInfo.cs @@ -46,5 +46,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] diff --git a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 index e32abd145bf5..7404856c55a5 100644 --- a/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 +++ b/src/ResourceManager/StreamAnalytics/AzureRM.StreamAnalytics.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.0.0' +ModuleVersion = '4.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -129,8 +129,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add support for online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser' + ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing' # External dependent modules of this module # ExternalModuleDependencies = '' diff --git a/src/ResourceManager/StreamAnalytics/ChangeLog.md b/src/ResourceManager/StreamAnalytics/ChangeLog.md index d222fc919ff0..6aff22d65888 100644 --- a/src/ResourceManager/StreamAnalytics/ChangeLog.md +++ b/src/ResourceManager/StreamAnalytics/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Current Release +## Version 4.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing + ## Version 4.0.0 * Add support for online help - Run Get-Help with the -Online parameter to open the online help in your default Internet browser diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs index e3db41a73808..e92e56012a65 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs index a7842fd4057c..218463bcc499 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("9188beb8-68c3-404a-91e2-6f287f162a52")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.StreamAnalytics.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/tools/AzureRM/AzureRM.psd1 b/tools/AzureRM/AzureRM.psd1 index 88179885e009..dd7fcba124a5 100644 --- a/tools/AzureRM/AzureRM.psd1 +++ b/tools/AzureRM/AzureRM.psd1 @@ -12,7 +12,7 @@ RootModule = '.\AzureRM.psm1' # Version number of this module. -ModuleVersion = '5.0.0' +ModuleVersion = '5.0.1' # Supported PSEditions # CompatiblePSEditions = @() @@ -55,19 +55,19 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.0.0'; @{ModuleName = 'Azure.Storage'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.AnalysisServices'; RequiredVersion = '0.5.0'; }, @{ModuleName = 'Azure.AnalysisServices'; RequiredVersion = '0.5.0'; }, - @{ModuleName = 'AzureRM.ApiManagement'; RequiredVersion = '5.0.0'; }, + @{ModuleName = 'AzureRM.ApiManagement'; RequiredVersion = '5.0.1'; }, @{ModuleName = 'AzureRM.ApplicationInsights'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'AzureRM.Automation'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.Backup'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.Batch'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.Backup'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.Batch'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Billing'; RequiredVersion = '0.14.0'; }, @{ModuleName = 'AzureRM.Cdn'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.CognitiveServices'; RequiredVersion = '0.9.0'; }, - @{ModuleName = 'AzureRM.Compute'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.Compute'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Consumption'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'AzureRM.ContainerInstance'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'AzureRM.ContainerRegistry'; RequiredVersion = '0.3.0'; }, - @{ModuleName = 'AzureRM.DataFactories'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.DataFactories'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.DataFactoryV2'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'AzureRM.DataLakeAnalytics'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.DataLakeStore'; RequiredVersion = '5.0.0'; }, @@ -75,10 +75,10 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.0.0'; @{ModuleName = 'AzureRM.Dns'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.EventGrid'; RequiredVersion = '0.2.0'; }, @{ModuleName = 'AzureRM.EventHub'; RequiredVersion = '0.5.0'; }, - @{ModuleName = 'AzureRM.HDInsight'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.HDInsight'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Insights'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.IoTHub'; RequiredVersion = '3.0.0'; }, - @{ModuleName = 'AzureRM.KeyVault'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.KeyVault'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.LogicApp'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.MachineLearning'; RequiredVersion = '0.16.0'; }, @{ModuleName = 'AzureRM.MachineLearningCompute'; RequiredVersion = '0.2.0'; }, @@ -88,20 +88,20 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.0.0'; @{ModuleName = 'AzureRM.NotificationHubs'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.OperationalInsights'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.PowerBIEmbedded'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.RecoveryServices'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.RecoveryServices.Backup'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.RecoveryServices.SiteRecovery'; RequiredVersion = '0.2.0'; }, - @{ModuleName = 'AzureRM.RedisCache'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.RecoveryServices'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.RecoveryServices.Backup'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.RecoveryServices.SiteRecovery'; RequiredVersion = '0.2.1'; }, + @{ModuleName = 'AzureRM.RedisCache'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Relay'; RequiredVersion = '0.3.0'; }, @{ModuleName = 'AzureRM.Resources'; RequiredVersion = '5.0.0'; }, @{ModuleName = 'AzureRM.Scheduler'; RequiredVersion = '0.16.0'; }, @{ModuleName = 'AzureRM.ServerManagement'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.ServiceBus'; RequiredVersion = '0.5.0'; }, @{ModuleName = 'AzureRM.ServiceFabric'; RequiredVersion = '0.3.0'; }, - @{ModuleName = 'AzureRM.SiteRecovery'; RequiredVersion = '5.0.0'; }, - @{ModuleName = 'AzureRM.Sql'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.Storage'; RequiredVersion = '4.0.0'; }, - @{ModuleName = 'AzureRM.StreamAnalytics'; RequiredVersion = '4.0.0'; }, + @{ModuleName = 'AzureRM.SiteRecovery'; RequiredVersion = '5.0.1'; }, + @{ModuleName = 'AzureRM.Sql'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.Storage'; RequiredVersion = '4.0.1'; }, + @{ModuleName = 'AzureRM.StreamAnalytics'; RequiredVersion = '4.0.1'; }, @{ModuleName = 'AzureRM.Tags'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.TrafficManager'; RequiredVersion = '4.0.0'; }, @{ModuleName = 'AzureRM.UsageAggregates'; RequiredVersion = '4.0.0'; }, @@ -161,121 +161,23 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '## 2017.11.8 - Version 5.0.0 -* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced. -* All cmdlets in AzureRM now support online help - - Run Get-Help with the -Online parameter to open the online help in your default Internet browser -* AnalysisServices - * Fixed Synchronize-AzureAsInstance command to work with new AsAzure REST API for sync -* ApiManagement - * Please see the migration guide for breaking changes made to ApiManagement this release - * Updated Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510 - * Updated New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069 -* ApplicationInsights - * Add commands to get/create/remove applicaiton insights resource - - Get/New/Remove-AzureRmApplicationInsights - * Add commands to get/update pricing/daily cap of applicaiton insights resource - - Get-AzureRmApplicationInsights -IncludeDailyCap - - Set-AzureRmApplicationInsightsPricingPlan - - Set-AzureRmApplicationInsightsDailyCap - * Add commands to get/create/remove/update continuous export of applicaiton insights resource - - Get/New/Remove/Set-AzureRmApplicationInsightsContinuousExport - * Add commands to get/create/remove api keys of applicaiton insights resoruce - - Get/New/Remove-AzureRmApplicationInsightsApiKey -* AzureBatch - * Please see the migration guide for breaking changes made to Batch this release - * Please see the Batch change log for a full list of changes made this release - * Added support for Azure Active Directory based authentication. - - To use Azure Active Directory authentication, retrieve a `BatchAccountContext` object using the `Get-AzureRmBatchAccount` cmdlet, and supply this `BatchAccountContext` to the `-BatchContext` parameter of a Batch service cmdlet. Azure Active Directory authentication is mandatory for accounts with `PoolAllocationMode = UserSubscription`. - - For existing accounts or for new accounts created with `PoolAllocationMode = BatchService`, you may continue to use shared key authentication by retrieving a `BatchAccountContext` object using the `Get-AzureRmBatchAccoutKeys` cmdlet. -* Compute - * Azure Disk Encryption Extension Commands - - New Parameter for ''Set-AzureRmVmDiskEncryptionExtension'': ''-EncryptFormatAll'' encrypt formats data disks - - New Parameters for ''Set-AzureRmVmDiskEncryptionExtension'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Disable-AzureRmVmDiskEncryption'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension - - New Parameters for ''Get-AzureRmVmDiskEncryptionStatus'': ''-ExtensionPublisherName'' and ''-ExtensionType'' allow switching to other versions of the extension -* DataLakeAnalytics - * Please see the migration guide for breaking changes made to DataLakeAnalytics this release - * Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsAccount - - List to List - * Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsJob - - List to List -* DataLakeStore - * Please see the migration guide for breaking changes made to DataLakeStore this release - * Changed one of the two OutputTypes of Get-AzureRmDataLakeStoreAccount - - List to List -* Dns - * Support for CAA record types in Azure DNS - - Supports all operations on CAA record type -* EventHub - * Please see the migration guide for breaking changes made to EventHub this release -* Insights - * Please see the migration guide for breaking changes made to Insights this release -* Network - * Please see the migration guide for breaking changes made to Network this release - * Added cmdlet to list available internet service providers for a specified Azure region - - Get-AzureRmNetworkWatcherReachabilityProvidersList - * Added cmdlet to get the relative latency score for internet service providers from a specified location to Azure regions - - Get-AzureRmNetworkWatcherReachabilityReport -* Profile - - Set-AzureRmDefault - - Use this cmdlet to set a default resource group. This will make the -ResourceGroup parameter optional for some cmdlets, and will use the default when a resource group is not specified - - ```Set-AzureRmDefault -ResourceGroupName "ExampleResourceGroup"``` - - If resource group specified exists in the subscription, this resource group will be set to default. Otherwise, the resource group will be created and then set to default. - - Get-AzureRmDefault - - Use this cmdlet to get the current default resource group (and other defaults in the future). - - ```Get-AzureRmDefault -ResourceGroup``` - - Clear-AzureRmDefault - - Use this cmdlet to remove the current default resource group - - ```Clear-AzureRmDefault -ResourceGroup``` - - Add-AzureRmEnvironment and Set-AzureRmEnvironment - - Add the BatchAudience parameter, which allows you to specify the Azure Batch Active Directory audience to use when acquiring authentication tokens for the Batch service. -* RecoveryServices.Backup - * Added cmdlets to perform instant file recovery. - - Get-AzureRmRecoveryServicesBackupRPMountScript - - Disable-AzureRmRecoveryServicesBackupRPMountScript - * Updated RecoveryServices.Backup SDK version to the latest - * Updated tests for the Azure VM workload so that, all setups needed for test runs are done by the tests themselves. - * Fixes https://github.com/Azure/azure-powershell/issues/3164 -* RecoveryServices.SiteRecovery - * Changes for ASR VMware to Azure Site Recovery (cmdlets are currently supporting operations for Enterprise to Enterprise, Enterprise to Azure, HyperV to Azure) - - New-AzureRmRecoveryServicesAsrPolicy - - New-AzureRmRecoveryServicesAsrProtectedItem - - Update-AzureRmRecoveryServicesAsrPolicy - - Update-AzureRmRecoveryServicesAsrProtectionDirection - * Added support to AAD-based vault - * Added cmdlets to manage VCenter resources - - Get-AzureRmRecoveryServicesAsrVCenter - - New-AzureRmRecoveryServicesAsrVCenter - - Remove-AzureRmRecoveryServicesAsrVCenter - - Update-AzureRmRecoveryServicesAsrVCenter - * Added other cmdlets - - Get-AzureRmRecoveryServicesAsrAlertSetting - - Get-AzureRmRecoveryServicesAsrEvent - - New-AzureRmRecoveryServicesAsrProtectableItem - - Set-AzureRmRecoveryServicesAsrAlertSetting - - Start-AzureRmRecoveryServicesAsrResynchronizeReplicationJob - - Start-AzureRmRecoveryServicesAsrSwitchProcessServerJob - - Start-AzureRmRecoveryServicesAsrTestFailoverCleanupJob - - Update-AzureRmRecoveryServicesAsrMobilityService -* ServiceBus - * Please see the migration guide for changes made to ServiceBus this release. -* Sql - * Adding support for list and cancel the asynchronous updateslo operation on the database - - update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status. - - add new cmdlet Stop-AzureRmSqlDatabaseActivity for cancel the asynchronous updateslo operation on the database. - * Adding support for Zone Redundancy for databases and elastic pools - - Adding ZoneRedundant switch parameter to New-AzureRmSqlDatabase, Set-AzureRmSqlDatabase, New-AzureRmSqlElasticPool, Set-AzureRmSqlElasticPool - * Adding support for Server DNS Aliases - - Get-AzureRmSqlServerDnsAlias: gets server dns aliases by server and alias name or a list of server dns aliases for an azure Sql Server. - - New-AzureRmSqlServerDnsAlias: creates new server dns alias for a given Azure Sql server - - Set-AzurermSqlServerDnsAlias: allows updating a Azure Sql Server to which server dns alias is pointing - - Remove-AzureRmSqlServerDnsAlias: removes a server dns alias for a Azure Sql Server -* Azure.Storage - * Upgrade to Azure Storage Client Library 8.5.0 and Azure Storage DataMovement Library 0.6.3 - * Add File Share Snapshot Support Feature - - Add ''SnapshotTime'' parameter to Get-AzureStorageShare - - Add ''IncludeAllSnapshot'' parameter to Remove-AzureStorageShare' + ReleaseNotes = '## 2017.11.10 - Version 5.0.1 +* Fixed assembly loading issue that caused some cmdlets to fail when executing in the following modules: + - AzureRM.ApiManagement + - AzureRM.Backup + - AzureRM.Batch + - AzureRM.Compute + - AzureRM.DataFactories + - AzureRM.HDInsight + - AzureRM.KeyVault + - AzureRM.RecoveryServices + - AzureRM.RecoveryServices.Backup + - AzureRM.RecoveryServices.SiteRecovery + - AzureRM.RedisCache + - AzureRM.SiteRecovery + - AzureRM.Sql + - AzureRM.Storage + - AzureRM.StreamAnalytics' # External dependent modules of this module # ExternalModuleDependencies = ''