Skip to content

Commit 7a59500

Browse files
committed
Update azureRM module
1 parent 93d2670 commit 7a59500

File tree

2 files changed

+113
-19
lines changed

2 files changed

+113
-19
lines changed

ChangeLog.md

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,64 @@
1-
## 6.11.0 - October 2018
1+
## 6.12.0 - November 2018
2+
#### AzureRM.Profile
3+
* Update common code to use latest version of ClientRuntime
4+
* Rename param TenantId in cmdlet Connect-AzureRmAccount to Tenant and add an alias for TenantId
5+
* Updated TenantId description for Connect-AzureRmAccount
6+
* Fix error message for failed login when providing tenant domain
7+
- https://github.com/Azure/azure-powershell/issues/6936
8+
* Fix issue with context name clashing for accounts with no subscriptions in tenant
9+
- https://github.com/Azure/azure-powershell/issues/7453
10+
* Fix issue with DataLake endpoints when using MSI
11+
- https://github.com/Azure/azure-powershell/issues/7462
12+
* Fix issue where 'Disconnect-AzureRmAccount' would throw if not connected
13+
- https://github.com/Azure/azure-powershell/issues/7167
14+
15+
#### AzureRM.Automation
16+
* Renamed cmdlet DLL filename to Microsoft.Azure.Commands.Automation.dll
17+
18+
#### AzureRM.CognitiveServices
19+
* Add Get-AzureRmCognitiveServicesAccountSkus operation.
20+
21+
#### AzureRM.Compute
22+
* Add EnableUltraSSD switch parameter to New-AzureRmVMConfiig and New-AzureRmVmssConfig.
23+
* Add UltraSSDEnabled parameter to Update-AuzreRmVM and Update-AzureRmVmss.
24+
* Shared Gallery cmdlets
25+
26+
#### AzureRM.Insights
27+
* Fixed issue #7267 (Autoscale area)
28+
- Issues with creating a new autoscale rule not properly setting enumerated parameters (would always set them to the default value).
29+
* Fixed issue #7513 [Insights] Set-AzureRMDiagnosticSetting requires explicit specification of categories during creation of setting
30+
- Now the cmdlet does not require explicit indication of the categories to enable during creation, i.e. it works as it is documented
31+
32+
#### AzureRM.Network
33+
* Changed PeeringType to be a mandatory parameter for the following cmdlets:-
34+
- Get-AzureRmExpressRouteCircuitRouteTable
35+
- Get-AzureRmExpressRouteCircuitARPTable
36+
- Get-AzureRmExpressRouteCircuitRouteTableSummary
37+
- Get-AzureRMExpressRouteCrossConnectionArpTable
38+
- Get-AzureRMExpressRouteCrossConnectionRouteTable
39+
- Get-AzureRMExpressRouteCrossConnectionRouteTableSummary
40+
41+
#### AzureRM.PolicyInsights
42+
* Added policy remediation cmdlets
43+
44+
#### AzureRM.RecoveryServices.Backup
45+
* Added support for azure file shares in recovery services.
46+
47+
#### AzureRM.Resources
48+
* Fix for https://github.com/Azure/azure-powershell/issues/7402
49+
- Allow listing resources using the '-ResourceId' parameter for 'Get-AzureRmResource'
50+
51+
#### AzureRM.ServiceBus
52+
* Added MigrationState read-only property to PSServiceBusMigrationConfigurationAttributes which will help to know the Migration state.
53+
54+
#### AzureRM.ServiceFabric
55+
* Fix add certificate to Linux Vmss.
56+
* Fix 'Add-AzureRmServiceFabricClusterCertificate'
57+
- Using correct thumbprint from new certificate (Azure/service-fabric-issues#932).
58+
- Display exception correctly (Azure/service-fabric-issues#1054).
59+
* Fix 'Update-AzureRmServiceFabricDurability' to update cluster configuration before starting Vmss CreateOrUpdate operation.
60+
61+
## 6.11.0 - October 2018
262
#### AzureRM.Profile
363
* Fix issue with Get-AzureRmSubscription in CloudShell
464
* Update common code to use latest version of ClientRuntime

tools/AzureRM/AzureRM.psd1

Lines changed: 52 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/16/2018
6+
# Generated on: 10/30/2018
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '6.11.0'
15+
ModuleVersion = '6.12.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -161,31 +161,65 @@ PrivateData = @{
161161
# IconUri = ''
162162

163163
# ReleaseNotes of this module
164-
ReleaseNotes = '6.11.0 - October 2018
164+
ReleaseNotes = '6.12.0 - November 2018
165165
AzureRM.Profile
166-
* Fix issue with Get-AzureRmSubscription in CloudShell
167166
* Update common code to use latest version of ClientRuntime
168-
169-
AzureRM.Backup
170-
* Deprecated Azure Backup cmdlets.
167+
* Rename param TenantId in cmdlet Connect-AzureRmAccount to Tenant and add an alias for TenantId
168+
* Updated TenantId description for Connect-AzureRmAccount
169+
* Fix error message for failed login when providing tenant domain
170+
- https://github.com/Azure/azure-powershell/issues/6936
171+
* Fix issue with context name clashing for accounts with no subscriptions in tenant
172+
- https://github.com/Azure/azure-powershell/issues/7453
173+
* Fix issue with DataLake endpoints when using MSI
174+
- https://github.com/Azure/azure-powershell/issues/7462
175+
* Fix issue where ''Disconnect-AzureRmAccount'' would throw if not connected
176+
- https://github.com/Azure/azure-powershell/issues/7167
177+
178+
AzureRM.Automation
179+
* Renamed cmdlet DLL filename to Microsoft.Azure.Commands.Automation.dll
180+
181+
AzureRM.CognitiveServices
182+
* Add Get-AzureRmCognitiveServicesAccountSkus operation.
171183
172184
AzureRM.Compute
173-
* Added new sizes to the whitelist of VM sizes for which accelerated networking will be turned on when using the simple param set for ''New-AzureRmVm''
174-
* Added ResourceName argument completer to all cmdlets.
185+
* Add EnableUltraSSD switch parameter to New-AzureRmVMConfiig and New-AzureRmVmssConfig.
186+
* Add UltraSSDEnabled parameter to Update-AuzreRmVM and Update-AzureRmVmss.
187+
* Shared Gallery cmdlets
175188
176-
AzureRM.DataLakeStore
177-
* Adding support for Virtual Network Rules
178-
- Get-AzureRmDataLakeStoreVirtualNetworkRule: Gets or Lists Azure Data Lake Store virtual network rule.
179-
- Add-AzureRmDataLakeStoreVirtualNetworkRule: Adds a virtual network rule to the specified Data Lake Store account.
180-
- Set-AzureRmDataLakeStoreVirtualNetworkRule: Modifies the specified virtual network rule in the specified Data Lake Store account.
181-
- Remove-AzureRmDataLakeStoreVirtualNetworkRule: Deletes an Azure Data Lake Store virtual network rule.
189+
AzureRM.Insights
190+
* Fixed issue #7267 (Autoscale area)
191+
- Issues with creating a new autoscale rule not properly setting enumerated parameters (would always set them to the default value).
192+
* Fixed issue #7513 [Insights] Set-AzureRMDiagnosticSetting requires explicit specification of categories during creation of setting
193+
- Now the cmdlet does not require explicit indication of the categories to enable during creation, i.e. it works as it is documented
182194
183195
AzureRM.Network
184-
* Update cmdlet Test-AzureRmNetworkWatcherConnectivity, pass the protocol value to backend.
185-
* Added ResourceName argument completer to all cmdlets.
196+
* Changed PeeringType to be a mandatory parameter for the following cmdlets:-
197+
- Get-AzureRmExpressRouteCircuitRouteTable
198+
- Get-AzureRmExpressRouteCircuitARPTable
199+
- Get-AzureRmExpressRouteCircuitRouteTableSummary
200+
- Get-AzureRMExpressRouteCrossConnectionArpTable
201+
- Get-AzureRMExpressRouteCrossConnectionRouteTable
202+
- Get-AzureRMExpressRouteCrossConnectionRouteTableSummary
203+
204+
AzureRM.PolicyInsights
205+
* Added policy remediation cmdlets
206+
207+
AzureRM.RecoveryServices.Backup
208+
* Added support for azure file shares in recovery services.
186209
187210
AzureRM.Resources
188-
* Fix isssue where Get-AzureRMRoleDefinition throws an unintelligible exception (when the default profile has no subscription in it and no scope is specified) by adding a meaningful exception in the scenario. Also set the default param set to ''RoleDefinitionNameParameterSet''.
211+
* Fix for https://github.com/Azure/azure-powershell/issues/7402
212+
- Allow listing resources using the ''-ResourceId'' parameter for ''Get-AzureRmResource''
213+
214+
AzureRM.ServiceBus
215+
* Added MigrationState read-only property to PSServiceBusMigrationConfigurationAttributes which will help to know the Migration state.
216+
217+
AzureRM.ServiceFabric
218+
* Fix add certificate to Linux Vmss.
219+
* Fix ''Add-AzureRmServiceFabricClusterCertificate''
220+
- Using correct thumbprint from new certificate (Azure/service-fabric-issues#932).
221+
- Display exception correctly (Azure/service-fabric-issues#1054).
222+
* Fix ''Update-AzureRmServiceFabricDurability'' to update cluster configuration before starting Vmss CreateOrUpdate operation.
189223
'
190224

191225
# Prerelease string of this module

0 commit comments

Comments
 (0)