Skip to content

Commit 444552b

Browse files
authored
Merge pull request Azure#3480 from cormacpayne/release-3.5.0
[Release-3.5.0] Update module version for Compute
2 parents 838fb6e + 07d00d4 commit 444552b

File tree

6 files changed

+39
-98
lines changed

6 files changed

+39
-98
lines changed

src/ResourceManager/Compute/AzureRM.Compute.psd1

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '2.5.0'
15+
ModuleVersion = '2.6.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -192,15 +192,18 @@ PrivateData = @{
192192
# IconUri = ''
193193

194194
# ReleaseNotes of this module
195-
ReleaseNotes = '* Fix Get-AzureRmVM with -Status issue: Get-AzureRmVM throws an exception when Get-AzureRmVM lists multiple VMs and some of the VMs are deleted during Get-AzureRmVM is performed.
196-
* New parameters in New-AzureRmVMSqlServerAutoBackupConfig cmdlet to support Auto Backup for SQL Server 2016 VMs.
197-
- BackupSystemDbs : Specifies if system databases should be added to Sql Server Managed Backup.
198-
- BackupScheduleType : Specifies the type of managed backup schedule, manual or automated. If it''s manual, schedule settings need to be specified.
199-
- FullBackupFrequency : Specifies the frequency of Full Backup, daily or weekly.
200-
- FullBackupStartHour : Specifies the hour of the day when the Sql Server Full Backup should start.
201-
- FullBackupWindowInHours : Specifies the window (in hours) when Sql Server Full Backup should occur.
202-
- LogBackupFrequencyInMinutes : Specifies the frequency of Sql Server Log Backup.
203-
* New-AzureVMSqlServer* cmdlets are renamed to New-AzureRmVMSqlServer* now. Old ones will continue to work however.
195+
ReleaseNotes = '* New cmdlets for Managed disk
196+
- Disk cmdlets: New-AzureRmDisk, Update-AzureRmDisk, Get-AzureRmDisk, Remove-AzureRmDisk,
197+
Grant-AzureRmDiskAccess, Revoke-AzureRmDiskAccess,
198+
New-AzureRmDiskConfig, Set-AzureRmDiskDiskEncryptionKey, Set-AzureRmDiskImageReference, Set-AzureRmDiskKeyEncryptionKey,
199+
New-AzureRmDiskUpdateConfig, Set-AzureRmDiskUpdateDiskEncryptionKey, Set-AzureRmDiskUpdateImageReference, Set-AzureRmDiskUpdateKeyEncryptionKey
200+
- Snapshot cmdlets: New-AzureRmSnapshot, Update-AzureRmSnapshot, Get-AzureRmSnapshot, Remove-AzureRmSnapshot,
201+
Grant-AzureRmSnapshotAccess, Revoke-AzureRmSnapshotAccess,
202+
New-AzureRmSnapshotConfig, Set-AzureRmSnapshotDiskEncryptionKey, Set-AzureRmSnapshotImageReference, Set-AzureRmSnapshotKeyEncryptionKey,
203+
New-AzureRmSnapshotUpdateConfig, Set-AzureRmSnapshotUpdateDiskEncryptionKey, Set-AzureRmSnapshotUpdateImageReference, Set-AzureRmSnapshotUpdateKeyEncryptionKey
204+
- Image cmdlets: New-AzureRmImage, Get-AzureRmImage, Remove-AzureRmImage,
205+
New-AzureRmImageConfig, Set-AzureRmImageOsDisk, Add-AzureRmImageDataDisk, Remove-AzureRmImageDataDisk
206+
- VM cmdlet: ConvertTo-AzureRmVMManagedDisk
204207
'
205208

206209
# External dependent modules of this module

src/ResourceManager/Compute/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
22+
## Version 2.6.0
2123
* New cmdlets for Managed disk
2224
- Disk cmdlets: New-AzureRmDisk, Update-AzureRmDisk, Get-AzureRmDisk, Remove-AzureRmDisk,
2325
Grant-AzureRmDiskAccess, Revoke-AzureRmDiskAccess,

src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232

3333
[assembly: Guid("28fe3fc0-6fdf-4f01-8a82-d7b4a834ddd2")]
3434

35-
[assembly: AssemblyVersion("2.5.0")]
36-
[assembly: AssemblyFileVersion("2.5.0")]
35+
[assembly: AssemblyVersion("2.6.0")]
36+
[assembly: AssemblyFileVersion("2.6.0")]
3737
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/Compute/Commands.Compute/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
28-
[assembly: AssemblyVersion("2.5.0")]
29-
[assembly: AssemblyFileVersion("2.5.0")]
28+
[assembly: AssemblyVersion("2.6.0")]
29+
[assembly: AssemblyFileVersion("2.6.0")]
3030
#if SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Compute.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
3232
#else

tools/AzureRM/AzureRM.psd1

Lines changed: 15 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = '.\AzureRM.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.4.0'
15+
ModuleVersion = '3.5.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -61,7 +61,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '2.5.0';
6161
@{ModuleName = 'AzureRM.Batch'; RequiredVersion = '2.5.0'; },
6262
@{ModuleName = 'AzureRM.Cdn'; RequiredVersion = '2.5.0'; },
6363
@{ModuleName = 'AzureRM.CognitiveServices'; RequiredVersion = '0.4.3'; },
64-
@{ModuleName = 'AzureRM.Compute'; RequiredVersion = '2.5.0'; },
64+
@{ModuleName = 'AzureRM.Compute'; RequiredVersion = '2.6.0'; },
6565
@{ModuleName = 'AzureRM.DataFactories'; RequiredVersion = '2.5.0'; },
6666
@{ModuleName = 'AzureRM.DataLakeAnalytics'; RequiredVersion = '2.5.0'; },
6767
@{ModuleName = 'AzureRM.DataLakeStore'; RequiredVersion = '3.3.0'; },
@@ -149,89 +149,20 @@ PrivateData = @{
149149
# IconUri = ''
150150

151151
# ReleaseNotes of this module
152-
ReleaseNotes = '## 2017.01.18 - Version 3.4.0
153-
* AnalysisServices
154-
* Added two new dataplane APIs in a separate module Azure.AnalysisServices.psd1
155-
- This introduces two new APIs that enable customers to login to Azure Analysis Services servers and issue a restart command.
152+
ReleaseNotes = '## 2017.02.08 - Version 3.5.0
156153
* Compute
157-
* Fix Get-AzureRmVM with -Status issue: Get-AzureRmVM throws an exception when Get-AzureRmVM lists multiple VMs and some of the VMs are deleted during Get-AzureRmVM is performed.
158-
* New parameters in New-AzureRmVMSqlServerAutoBackupConfig cmdlet to support Auto Backup for SQL Server 2016 VMs.
159-
- BackupSystemDbs : Specifies if system databases should be added to Sql Server Managed Backup.
160-
- BackupScheduleType : Specifies the type of managed backup schedule, manual or automated. If it''s manual, schedule settings need to be specified.
161-
- FullBackupFrequency : Specifies the frequency of Full Backup, daily or weekly.
162-
- FullBackupStartHour : Specifies the hour of the day when the Sql Server Full Backup should start.
163-
- FullBackupWindowInHours : Specifies the window (in hours) when Sql Server Full Backup should occur.
164-
- LogBackupFrequencyInMinutes : Specifies the frequency of Sql Server Log Backup.
165-
* New-AzureVMSqlServer* cmdlets are renamed to New-AzureRmVMSqlServer* now. Old ones will continue to work however.
166-
* DataLakeAnalytics
167-
* Update Get-AdlJob to support Top parameter
168-
* Update Get-AdlJob to return the list of jobs in order by most recently submitted
169-
* Updated help for all cmdlets to include output as well as more descriptions of parameters and the inclusion of aliases.
170-
* Update New-AdlAnalyticsAccount and Set-AdlAnalyticsAccount to support commitment tier options for the service.
171-
* Added OutputType mismatch warnings to all cmdlets with incorrect OutputType attributes. These will be fixed in a future breaking change release.
172-
* DataLakeStore
173-
* Updated help for all cmdlets to include output as well as more descriptions of parameters and the inclusion of aliases.
174-
* Update New-AdlStore and Set-AdlStore to support commitment tier options for the service.
175-
* Added OutputType mismatch warnings to all cmdlets with incorrect OutputType attributes. These will be fixed in a future breaking change release.
176-
* Add Diagnostic logging support to Import-AdlStoreItem and Export-AdlStoreItem. This can be enabled through the following parameters:
177-
* -Debug, enables full diagnostic logging as well as debug logging to the PowerShell console. Most verbose options
178-
* -DiagnosticLogLevel, allows finer control of the output than debug. If used with debug, this is ignored and debug logging is used.
179-
* -DiagnosticLogPath, optionally specify the file to write diagnostic logs to. By default it is written to a file under %LOCALAPPDATA%\AdlDataTransfer
180-
* Added support to New-AdlStore to explicitly opt-out of account encryption. To do so, create the account with the -DisableEncryption flag.
181-
* OperationalInsights
182-
* Get-AzureRmOperationalInsightsSearchResults no longer requires the Top parameter to retrieve results
183-
* Resources
184-
* Support Tag as parameters for Find-AzureRmResource
185-
- Users can now use Tag parameter with Find-AzureRmResource
186-
- Fixed the issue where illegal combinations of TagName, TagValue with other search parameters was allowed in Find-AzureRmResource and would result in users getting exception from the service by disallowing such combinations.
187-
* ServiceBus
188-
* Add SkuCapacity parameter to Set-AzureRmServiceBusNamespace
189-
- User will be able to update the SkuCapacity(Messaging units in case of a premium namespace) of the SeriveBus NameSpace
190-
191-
* Future Breaking Change Notification: We''ve added a warning about removing property ''ResourceGroupName'' from the returned NamespceAttributes from cmdlets New-AzureRmServiceBusNamespace, Get-AzureRmServiceBusNamespace and Set-AzureRmServiceBusNamespace
192-
-The call remains the same, but the returned values NameSpace object will not have the ResourceGroupName property
193-
* Sql
194-
* Added new return parameter "AuditType" to Get-AzureRmSqlDatabaseAuditingPolicy and Get-AzureRmSqlServerAuditingPolicy returned object
195-
- This parameter value indicates the returned auditing policy type - Table or Blob.
196-
* ServiceManagement
197-
* New parameters in New-AzureVMSqlServerAutoBackupConfig cmdlet to support Auto Backup for SQL Server 2016 VMs.
198-
- BackupSystemDbs : Specifies if system databases should be added to Sql Server Managed Backup.
199-
- BackupScheduleType : Specifies the type of managed backup schedule, manual or automated. If it''s manual, schedule settings need to be specified.
200-
- FullBackupFrequency : Specifies the frequency of Full Backup, daily or weekly.
201-
- FullBackupStartHour : Specifies the hour of the day when the Sql Server Full Backup should start.
202-
- FullBackupWindowInHours : Specifies the window (in hours) when Sql Server Full Backup should occur.
203-
- LogBackupFrequencyInMinutes : Specifies the frequency of Sql Server Log Backup.
204-
* Storage
205-
* Fix Start-AzureStorageBlobCopy output might has wrong BlobType issue
206-
- Start-AzureStorageBlobCopy
207-
* Fix hang issue when running cmdlets from WPF/Winform context
208-
- Get-AzureStorageBlob
209-
- Get-AzureStorageBlobContent
210-
- Get-AzureStorageBlobCopyState
211-
- Get-AzureStorageContainer
212-
- Get-AzureStorageContainerStoredAccessPolicy
213-
- New-AzureStorageContainer
214-
- Remove-AzureStorageBlob
215-
- Remove-AzureStorageContainer
216-
- Set-AzureStorageBlobContent
217-
- Set-AzureStorageContainerAcl
218-
- Start-AzureStorageBlobCopy
219-
- Stop-AzureStorageBlobCopy
220-
- Get-AzureStorageFile
221-
- Get-AzureStorageFileContent
222-
- Get-AzureStorageFileCopyState
223-
- Get-AzureStorageShare
224-
- Get-AzureStorageShareStoredAccessPolicy
225-
- New-AzureStorageDirectory
226-
- New-AzureStorageShare
227-
- Remove-AzureStorageDirectory
228-
- Remove-AzureStorageFile
229-
- Remove-AzureStorageShare
230-
- Set-AzureStorageFileContent
231-
- Start-AzureStorageFileCopy
232-
- Stop-AzureStorageFileCopy
233-
- Get-AzureStorageQueueStoredAccessPolicy
234-
- Get-AzureStorageTableStoredAccessPolicy '
154+
* New cmdlets for Managed disk
155+
- Disk cmdlets: New-AzureRmDisk, Update-AzureRmDisk, Get-AzureRmDisk, Remove-AzureRmDisk,
156+
Grant-AzureRmDiskAccess, Revoke-AzureRmDiskAccess,
157+
New-AzureRmDiskConfig, Set-AzureRmDiskDiskEncryptionKey, Set-AzureRmDiskImageReference, Set-AzureRmDiskKeyEncryptionKey,
158+
New-AzureRmDiskUpdateConfig, Set-AzureRmDiskUpdateDiskEncryptionKey, Set-AzureRmDiskUpdateImageReference, Set-AzureRmDiskUpdateKeyEncryptionKey
159+
- Snapshot cmdlets: New-AzureRmSnapshot, Update-AzureRmSnapshot, Get-AzureRmSnapshot, Remove-AzureRmSnapshot,
160+
Grant-AzureRmSnapshotAccess, Revoke-AzureRmSnapshotAccess,
161+
New-AzureRmSnapshotConfig, Set-AzureRmSnapshotDiskEncryptionKey, Set-AzureRmSnapshotImageReference, Set-AzureRmSnapshotKeyEncryptionKey,
162+
New-AzureRmSnapshotUpdateConfig, Set-AzureRmSnapshotUpdateDiskEncryptionKey, Set-AzureRmSnapshotUpdateImageReference, Set-AzureRmSnapshotUpdateKeyEncryptionKey
163+
- Image cmdlets: New-AzureRmImage, Get-AzureRmImage, Remove-AzureRmImage,
164+
New-AzureRmImageConfig, Set-AzureRmImageOsDisk, Add-AzureRmImageDataDisk, Remove-AzureRmImageDataDisk
165+
- VM cmdlet: ConvertTo-AzureRmVMManagedDisk'
235166

236167
# External dependent modules of this module
237168
# ExternalModuleDependencies = ''

tools/StaticAnalysis/Exceptions/MissingAssemblies.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,8 @@
1919
"src\Package\Debug\ServiceManagement\Azure\Sql","Microsoft.Web.Delegation","7.1.0.0","Microsoft.Web.Deployment","0","3000","Missing assembly Microsoft.Web.Delegation referenced from Microsoft.Web.Deployment","Ensure that the assembly is included in the Wix file or directory"
2020
"src\Package\Debug\ServiceManagement\Azure\Sql","Microsoft.Web.Administration","7.0.0.0","Microsoft.Web.Deployment","0","3000","Missing assembly Microsoft.Web.Administration referenced from Microsoft.Web.Deployment","Ensure that the assembly is included in the Wix file or directory"
2121
"src\Package\Debug\ServiceManagement\Azure\Sql","Microsoft.Web.Deployment.Tracing","9.0.0.0","Microsoft.Web.Deployment","0","3000","Missing assembly Microsoft.Web.Deployment.Tracing referenced from Microsoft.Web.Deployment","Ensure that the assembly is included in the Wix file or directory"
22+
"D:\workspace\powershell-sign\src\Package\Release\ServiceManagement\Azure\Compute","Microsoft.Web.Administration","7.0.0.0","Microsoft.Web.Delegation","0","3000","Missing assembly Microsoft.Web.Administration referenced from Microsoft.Web.Delegation","Ensure that the assembly is included in the Wix file or directory"
23+
"D:\workspace\powershell-sign\src\Package\Release\ServiceManagement\Azure\ManagedCache","Microsoft.Web.Administration","7.0.0.0","Microsoft.Web.Delegation","0","3000","Missing assembly Microsoft.Web.Administration referenced from Microsoft.Web.Delegation","Ensure that the assembly is included in the Wix file or directory"
24+
"D:\workspace\powershell-sign\src\Package\Release\ServiceManagement\Azure\Networking","Microsoft.Web.Administration","7.0.0.0","Microsoft.Web.Delegation","0","3000","Missing assembly Microsoft.Web.Administration referenced from Microsoft.Web.Delegation","Ensure that the assembly is included in the Wix file or directory"
25+
"D:\workspace\powershell-sign\src\Package\Release\ServiceManagement\Azure\Services","Microsoft.Web.Administration","7.0.0.0","Microsoft.Web.Delegation","0","3000","Missing assembly Microsoft.Web.Administration referenced from Microsoft.Web.Delegation","Ensure that the assembly is included in the Wix file or directory"
26+
"D:\workspace\powershell-sign\src\Package\Release\ServiceManagement\Azure\Sql","Microsoft.Web.Administration","7.0.0.0","Microsoft.Web.Delegation","0","3000","Missing assembly Microsoft.Web.Administration referenced from Microsoft.Web.Delegation","Ensure that the assembly is included in the Wix file or directory"

0 commit comments

Comments
 (0)