Skip to content

Commit 01ede45

Browse files
committed
Bump version for AzureRM
1 parent d7ab1e2 commit 01ede45

File tree

3 files changed

+124
-10
lines changed

3 files changed

+124
-10
lines changed

ChangeLog.md

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,63 @@
1-
## 6.2.1 - June 2018
1+
## 6.3.0 - june 2018
2+
#### AzureRM.Profile
3+
* Updated error messages for Enable-AzureRmContextAutoSave
4+
* Create a context for each subscription when running 'Connect-AzureRmAccount' with no previous context
5+
6+
#### Azure.Storage
7+
* Added additional information about -Permissions parameter in help files.
8+
9+
#### AzureRM.Compute
10+
* 'Get-AzureRmVmDiskEncryptionStatus' fixes an issue observed for VMs with no data disks
11+
* Update Compute client library version to fix following cmdlets
12+
- Grant-AzureRmDiskAccess
13+
- Grant-AzureRmSnapshotAccess
14+
- Save-AzureRmVMImage
15+
* Fixed following cmdlets to show 'operation ID' and 'operation status' correctly:
16+
- Start-AzureRmVM
17+
- Stop-AzureRmVM
18+
- Restart-AzureRmVM
19+
- Set-AzureRmVM
20+
- Remove-AzuerRmVM
21+
- Set-AzureRmVmss
22+
- Start-AzureRmVmssRollingOSUpgrade
23+
- Stop-AzureRmVmssRollingUpgrade
24+
- Start-AzureRmVmss
25+
- Restart-AzureRmVmss
26+
- Stop-AzureRmVmss
27+
- Remove-AzureRmVmss
28+
- ConvertTo-AzureRmVMManagedDisk
29+
- Revoke-AzureRmSnapshotAccess
30+
- Remove-AzureRmSnapshot
31+
- Revoke-AzureRmDiskAccess
32+
- Remove-AzureRmDisk
33+
- Remove-AzureRmContainerService
34+
- Remove-AzureRmAvailabilitySet
35+
36+
#### AzureRM.EventGrid
37+
* Remove ValidateNotNullOrEmpty validation conditions for SubjectBeginsWith/SubjectEndsWith in Update-AzureRmEventGridSubscription cmdlet to allow changing these parameters to empty string if needed.
38+
39+
#### AzureRM.KeyVault
40+
* Fix issue where no Tags are being returned when Get-AzureRmKeyVault -Tag is run
41+
42+
#### AzureRM.PolicyInsights
43+
* Public release of Policy Insights cmdlets
44+
- Use API version 2018-04-04
45+
- Add PolicyDefinitionReferenceId to the results of Get-AzureRmPolicyStateSummary
46+
47+
#### AzureRM.RecoveryServices.Backup
48+
* Added -Vault parameter to RecoveryServices.Backup cmdlets. When passed, this will override the Set-AzureRmRecoveryServicesContext cmdlet.
49+
50+
#### AzureRM.Sql
51+
* Updated example in the help file for Get-AzureRmSqlDatabaseExpanded
52+
53+
#### AzureRM.TrafficManager
54+
* Updated the help file for Add-AzureRmTrafficManagerEndpointConfig
55+
56+
#### AzureRM.Websites
57+
* 'Set-AzureRmWebApp' is updated to not overwrite the AppSettings when using -AssignIdentity
58+
* 'New-AzureRmWebAppSlot' is updated to honor AppServicePlan as an optional parameter
59+
60+
## 6.2.1 - June 2018
261
### AzureRM.OperationalInsights
362
* Updated PSWorkspace model to allow Network to use type as a parameter
463

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 = "6.2.1";
29+
public const string AssemblyVersion = "6.3.0";
3030

31-
public const string AssemblyFileVersion = "6.2.1";
31+
public const string AssemblyFileVersion = "6.3.0";
3232

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

tools/AzureRM/AzureRM.psd1

Lines changed: 62 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 5/31/2018
6+
# Generated on: 6/12/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '6.2.1'
15+
ModuleVersion = '6.3.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -86,8 +86,8 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '5.3.0';
8686
@{ModuleName = 'AzureRM.Media'; RequiredVersion = '0.10.0'; },
8787
@{ModuleName = 'AzureRM.Network'; RequiredVersion = '6.2.0'; },
8888
@{ModuleName = 'AzureRM.NotificationHubs'; RequiredVersion = '5.0.0'; },
89-
@{ModuleName = 'AzureRM.OperationalInsights'; RequiredVersion = '5.0.1'; },
90-
@{ModuleName = 'AzureRM.PolicyInsights'; RequiredVersion = '1.0.1'; },
89+
@{ModuleName = 'AzureRM.OperationalInsights'; RequiredVersion = '5.0.1'; },
90+
@{ModuleName = 'AzureRM.PolicyInsights'; RequiredVersion = '1.0.1'; },
9191
@{ModuleName = 'AzureRM.PowerBIEmbedded'; RequiredVersion = '4.1.5'; },
9292
@{ModuleName = 'AzureRM.RecoveryServices'; RequiredVersion = '4.1.3'; },
9393
@{ModuleName = 'AzureRM.RecoveryServices.Backup'; RequiredVersion = '4.2.0'; },
@@ -160,9 +160,64 @@ PrivateData = @{
160160
# IconUri = ''
161161

162162
# ReleaseNotes of this module
163-
ReleaseNotes = '6.2.1 - June 2018
164-
AzureRM.OperationalInsights
165-
* Updated PSWorkspace model to allow Network to use type as a parameter
163+
ReleaseNotes = '6.3.0 - june 2018
164+
AzureRM.Profile
165+
* Updated error messages for Enable-AzureRmContextAutoSave
166+
* Create a context for each subscription when running ''Connect-AzureRmAccount'' with no previous context
167+
168+
Azure.Storage
169+
* Added additional information about -Permissions parameter in help files.
170+
171+
AzureRM.Compute
172+
* ''Get-AzureRmVmDiskEncryptionStatus'' fixes an issue observed for VMs with no data disks
173+
* Update Compute client library version to fix following cmdlets
174+
- Grant-AzureRmDiskAccess
175+
- Grant-AzureRmSnapshotAccess
176+
- Save-AzureRmVMImage
177+
* Fixed following cmdlets to show ''operation ID'' and ''operation status'' correctly:
178+
- Start-AzureRmVM
179+
- Stop-AzureRmVM
180+
- Restart-AzureRmVM
181+
- Set-AzureRmVM
182+
- Remove-AzuerRmVM
183+
- Set-AzureRmVmss
184+
- Start-AzureRmVmssRollingOSUpgrade
185+
- Stop-AzureRmVmssRollingUpgrade
186+
- Start-AzureRmVmss
187+
- Restart-AzureRmVmss
188+
- Stop-AzureRmVmss
189+
- Remove-AzureRmVmss
190+
- ConvertTo-AzureRmVMManagedDisk
191+
- Revoke-AzureRmSnapshotAccess
192+
- Remove-AzureRmSnapshot
193+
- Revoke-AzureRmDiskAccess
194+
- Remove-AzureRmDisk
195+
- Remove-AzureRmContainerService
196+
- Remove-AzureRmAvailabilitySet
197+
198+
AzureRM.EventGrid
199+
* Remove ValidateNotNullOrEmpty validation conditions for SubjectBeginsWith/SubjectEndsWith in Update-AzureRmEventGridSubscription cmdlet to allow changing these parameters to empty string if needed.
200+
201+
AzureRM.KeyVault
202+
* Fix issue where no Tags are being returned when Get-AzureRmKeyVault -Tag is run
203+
204+
AzureRM.PolicyInsights
205+
* Public release of Policy Insights cmdlets
206+
- Use API version 2018-04-04
207+
- Add PolicyDefinitionReferenceId to the results of Get-AzureRmPolicyStateSummary
208+
209+
AzureRM.RecoveryServices.Backup
210+
* Added -Vault parameter to RecoveryServices.Backup cmdlets. When passed, this will override the Set-AzureRmRecoveryServicesContext cmdlet.
211+
212+
AzureRM.Sql
213+
* Updated example in the help file for Get-AzureRmSqlDatabaseExpanded
214+
215+
AzureRM.TrafficManager
216+
* Updated the help file for Add-AzureRmTrafficManagerEndpointConfig
217+
218+
AzureRM.Websites
219+
* ''Set-AzureRmWebApp'' is updated to not overwrite the AppSettings when using -AssignIdentity
220+
* ''New-AzureRmWebAppSlot'' is updated to honor AppServicePlan as an optional parameter
166221
'
167222

168223
# Prerelease string of this module

0 commit comments

Comments
 (0)