Skip to content

Commit 9bb1297

Browse files
committed
Update AzureRM to 5.5.0
1 parent f245948 commit 9bb1297

File tree

4 files changed

+190
-9
lines changed

4 files changed

+190
-9
lines changed

ChangeLog.md

Lines changed: 93 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,96 @@
1-
## 5.4.1 - February 2018
1+
## 5.5.0 - March 2018
2+
#### AzureRM.Profile
3+
* Fixed issue with importing aliases
4+
* Load version 10.0.3 of Newtonsoft.Json side-by-side with version 6.0.8
5+
6+
#### Azure.Storage
7+
* Support Soft-Delete feature
8+
- Enable-AzureStorageDeleteRetentionPolicy
9+
- Disable-AzureStorageDeleteRetentionPolicy
10+
- Get-AzureStorageBlob
11+
12+
#### AzureRM.AnalysisServices
13+
* Fixed issue with importing aliases
14+
* Add support of firewall and query scaleout feature, as well as support of 2017-08-01 api version.
15+
16+
#### AzureRM.Automation
17+
* Fixed issue with importing aliases
18+
19+
#### AzureRM.Cdn
20+
* Fixed issue with importing aliases
21+
22+
#### AzureRM.CognitiveServices
23+
* Update notice.txt and notice message.
24+
25+
#### AzureRM.Compute
26+
* 'New-AzureRmVMSS' prints connection strings in verbose mode.
27+
* 'New-AzureRmVmss' supports public IP address, load balancing rules, inbound NAT rules.
28+
* WriteAccelerator feature
29+
- Added WriteAccelerator switch parameter to the following cmdlets:
30+
Set-AzureRmVMOSDisk
31+
Set-AzureRmVMDataDisk
32+
Add-AzureRmVMDataDisk
33+
Add-AzureRmVmssDataDisk
34+
- Added OsDiskWriteAccelerator switch parameter to the following cmdlet:
35+
Set-AzureRmVmssStorageProfile.
36+
- Added OsDiskWriteAccelerator Boolean parameter to the following cmdlets:
37+
Update-AzureRmVM
38+
Update-AzureRmVmss
39+
40+
#### AzureRM.DataFactories
41+
* Fix credential encryption issue that caused no meaningful error for some encryption operations
42+
* Enable integration runtime to be shared across data factory
43+
44+
#### AzureRM.DataFactoryV2
45+
* Add parameter "SetupScriptContainerSasUri" and "Edition" for "Set-AzureRmDataFactoryV2IntegrationRuntime" cmd to enable custom setup and edition selection functionality
46+
* Fix credential encryption issue that caused no meaningful error for some encryption operations.
47+
* Enable integration runtime to be shared across data factory
48+
49+
#### AzureRM.HDInsight
50+
* Fixed issue with importing aliases
51+
52+
#### AzureRM.KeyVault
53+
* Fixed example for Set-AzureRmKeyVaultAccessPolicy
54+
55+
#### AzureRM.Network
56+
* Fixed issue with importing aliases
57+
58+
#### AzureRM.OperationalInsights
59+
* Fixed issue with importing aliases
60+
61+
#### AzureRM.RecoveryServices
62+
* Fixed issue with importing aliases
63+
64+
#### AzureRM.RecoveryServices.SiteRecovery
65+
* Fixed issue with importing aliases
66+
67+
#### AzureRM.Resources
68+
* Fixed issue with importing aliases
69+
70+
#### AzureRM.ServiceBus
71+
* Added EnableBatchedOperations property to Queue
72+
* Added DeadLetteringOnFilterEvaluationExceptions property to Subscriptions
73+
74+
#### AzureRM.ServiceFabric
75+
* Service Fabric cmdlet refresh
76+
- Updated ARM templates
77+
- Failed operations no longer rollback
78+
- Add-AzureRmServiceFabricNodeType
79+
- VMs default to managed disks
80+
- Existing VMSS subnet used
81+
- All operations are idempotent
82+
- Remove-AzureRmServiceFabricNodeType cleans up partially created VMSS and/or cluster node types
83+
- Fixed output of PSCluster object for complex property types
84+
85+
#### AzureRM.Sql
86+
* Fixed issue with importing aliases
87+
* Get-AzureRmSqlServer, New-AzureRmSqlServer, and Remove-AzureRmSqlServer response now includes FullyQualifiedDomainName property.
88+
89+
#### AzureRM.Websites
90+
* Fixed issue with importing aliases
91+
* New-AzureRMWebApp - added parameter set for simplified WebApp creation, with local git repository support.
92+
93+
## 5.4.1 - February 2018
294
#### AzureRM.Profile
395
* Fix concurrent module import issue in PowerShell Workflow and Azure Automation
496

setup/azurecmd.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
33

4-
<?define productName="Microsoft Azure PowerShell - February 2018" ?>
4+
<?define productName="Microsoft Azure PowerShell - March 2018" ?>
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="5.4.0" ?>
8+
<?define version="5.5.0" ?>
99

1010
<Product Id="*"
1111
Name="$(var.productName)"

src/Common/Commands.Common/AzurePowerShell.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public class AzurePowerShell
2626

2727
public const string AssemblyCopyright = "Copyright © Microsoft";
2828

29-
public const string AssemblyVersion = "5.4.0";
29+
public const string AssemblyVersion = "5.5.0";
3030

31-
public const string AssemblyFileVersion = "5.4.0";
31+
public const string AssemblyFileVersion = "5.5.0";
3232

3333
public const string ProfileFile = "AzureProfile.json";
3434

tools/AzureRM/AzureRM.psd1

Lines changed: 93 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 2/23/2018
6+
# Generated on: 3/6/2018
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = '.\AzureRM.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '5.4.1'
15+
ModuleVersion = '5.5.0'
1616

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

163163
# ReleaseNotes of this module
164-
ReleaseNotes = '5.4.1 - February 2018
164+
ReleaseNotes = '5.5.0 - March 2018
165165
AzureRM.Profile
166-
* Fix concurrent module import issue in PowerShell Workflow and Azure Automation'
166+
* Fixed issue with importing aliases
167+
* Load version 10.0.3 of Newtonsoft.Json side-by-side with version 6.0.8
168+
169+
Azure.Storage
170+
* Support Soft-Delete feature
171+
- Enable-AzureStorageDeleteRetentionPolicy
172+
- Disable-AzureStorageDeleteRetentionPolicy
173+
- Get-AzureStorageBlob
174+
175+
AzureRM.AnalysisServices
176+
* Fixed issue with importing aliases
177+
* Add support of firewall and query scaleout feature, as well as support of 2017-08-01 api version.
178+
179+
AzureRM.Automation
180+
* Fixed issue with importing aliases
181+
182+
AzureRM.Cdn
183+
* Fixed issue with importing aliases
184+
185+
AzureRM.CognitiveServices
186+
* Update notice.txt and notice message.
187+
188+
AzureRM.Compute
189+
* ''New-AzureRmVMSS'' prints connection strings in verbose mode.
190+
* ''New-AzureRmVmss'' supports public IP address, load balancing rules, inbound NAT rules.
191+
* WriteAccelerator feature
192+
- Added WriteAccelerator switch parameter to the following cmdlets:
193+
Set-AzureRmVMOSDisk
194+
Set-AzureRmVMDataDisk
195+
Add-AzureRmVMDataDisk
196+
Add-AzureRmVmssDataDisk
197+
- Added OsDiskWriteAccelerator switch parameter to the following cmdlet:
198+
Set-AzureRmVmssStorageProfile.
199+
- Added OsDiskWriteAccelerator Boolean parameter to the following cmdlets:
200+
Update-AzureRmVM
201+
Update-AzureRmVmss
202+
203+
AzureRM.DataFactories
204+
* Fix credential encryption issue that caused no meaningful error for some encryption operations
205+
* Enable integration runtime to be shared across data factory
206+
207+
AzureRM.DataFactoryV2
208+
* Add parameter "SetupScriptContainerSasUri" and "Edition" for "Set-AzureRmDataFactoryV2IntegrationRuntime" cmd to enable custom setup and edition selection functionality
209+
* Fix credential encryption issue that caused no meaningful error for some encryption operations.
210+
* Enable integration runtime to be shared across data factory
211+
212+
AzureRM.HDInsight
213+
* Fixed issue with importing aliases
214+
215+
AzureRM.KeyVault
216+
* Fixed example for Set-AzureRmKeyVaultAccessPolicy
217+
218+
AzureRM.Network
219+
* Fixed issue with importing aliases
220+
221+
AzureRM.OperationalInsights
222+
* Fixed issue with importing aliases
223+
224+
AzureRM.RecoveryServices
225+
* Fixed issue with importing aliases
226+
227+
AzureRM.RecoveryServices.SiteRecovery
228+
* Fixed issue with importing aliases
229+
230+
AzureRM.Resources
231+
* Fixed issue with importing aliases
232+
233+
AzureRM.ServiceBus
234+
* Added EnableBatchedOperations property to Queue
235+
* Added DeadLetteringOnFilterEvaluationExceptions property to Subscriptions
236+
237+
AzureRM.ServiceFabric
238+
* Service Fabric cmdlet refresh
239+
- Updated ARM templates
240+
- Failed operations no longer rollback
241+
- Add-AzureRmServiceFabricNodeType
242+
- VMs default to managed disks
243+
- Existing VMSS subnet used
244+
- All operations are idempotent
245+
- Remove-AzureRmServiceFabricNodeType cleans up partially created VMSS and/or cluster node types
246+
- Fixed output of PSCluster object for complex property types
247+
248+
AzureRM.Sql
249+
* Fixed issue with importing aliases
250+
* Get-AzureRmSqlServer, New-AzureRmSqlServer, and Remove-AzureRmSqlServer response now includes FullyQualifiedDomainName property.
251+
252+
AzureRM.Websites
253+
* Fixed issue with importing aliases
254+
* New-AzureRMWebApp - added parameter set for simplified WebApp creation, with local git repository support.
255+
'
167256

168257
# Prerelease string of this module
169258
# Prerelease = ''

0 commit comments

Comments
 (0)