Skip to content

Bumping module version to 3.2.0 for AzureRm and AzureRm.Network #3191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
## 2016.11.02 - Version 3.1.0
## 2016.11.14 - Version 3.2.0
* Network
* Get-AzureRmVirtualNetworkGatewayConnection
    - Added new param :- TunnelConnectionStatus in output Connection object to show per tunnel connection health status.
* Reset-AzureRmVirtualNetworkGateway
    - Added optional input param:- gatewayVip to pass gateway vip for ResetGateway API in case of Active-Active feature enabled gateways.
    - Gateway Vip can be retrieved from PublicIPs refered in VirtualNetworkGateway object.

## 2016.11.02 - Version 3.1.0
* ApiManagement
* Fixed cmdlet Import-AzureRmApiManagementApi when importing Api by SpecificationByUrl parameter
* New-AzureRmApiManagement supports creating an ApiManagement service in a VirtualNetwork and with additional regions
Expand Down
14 changes: 6 additions & 8 deletions src/ResourceManager/Network/AzureRM.Network.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '3.1.0'
ModuleVersion = '3.2.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -293,13 +293,11 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Add-AzureRmVirtualNetworkPeering
- Parameter AlloowGatewayTransit renamed to AllowGatewayTransit (an alias for the old parameter was created)
- Fixed issue where UseRemoteGateway property was not being populated in the request to the server
* Get-AzureRmEffectiveNetworkSecurityGroup
- Add warning if there is no response from GetEffectiveNSG
* Add Source property to EffectiveRoute
'
ReleaseNotes = '* Get-AzureRmVirtualNetworkGatewayConnection
    - Added new param :- TunnelConnectionStatus in output Connection object to show per tunnel connection health status.
* Reset-AzureRmVirtualNetworkGateway
    - Added optional input param:- gatewayVip to pass gateway vip for ResetGateway API in case of Active-Active feature enabled gateways.
    - Gateway Vip can be retrieved from PublicIPs refered in VirtualNetworkGateway object.'

# External dependent modules of this module
# ExternalModuleDependencies = ''
Expand Down
5 changes: 3 additions & 2 deletions src/ResourceManager/Network/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
* Overview of change #1
- Additional information about change #1
-->

## Current Release
## Current Release

## Version 3.2.0
* Get-AzureRmVirtualNetworkGatewayConnection
    - Added new param :- TunnelConnectionStatus in output Connection object to show per tunnel connection health status.
* Reset-AzureRmVirtualNetworkGateway
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@

[assembly: Guid("d1e9969e-7b83-4dfc-a7a2-523d4f7e6cc9")]

[assembly: AssemblyVersion("3.1.0")]
[assembly: AssemblyFileVersion("3.1.0")]
[assembly: AssemblyVersion("3.2.0")]
[assembly: AssemblyFileVersion("3.2.0")]
[assembly: CollectionBehavior(DisableTestParallelization = true)]
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("be2ca022-590c-48ba-b465-9ab61d6e2ea0")]
[assembly: AssemblyVersion("3.1.0")]
[assembly: AssemblyFileVersion("3.1.0")]
[assembly: AssemblyVersion("3.2.0")]
[assembly: AssemblyFileVersion("3.2.0")]
#if SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Network.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
#else
Expand Down
108 changes: 8 additions & 100 deletions tools/AzureRM/AzureRM.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = '.\AzureRM.psm1'

# Version number of this module.
ModuleVersion = '3.1.0'
ModuleVersion = '3.2.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -72,7 +72,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '2.3.0';
@{ModuleName = 'AzureRM.LogicApp'; RequiredVersion = '2.3.0'; },
@{ModuleName = 'AzureRM.MachineLearning'; RequiredVersion = '0.11.1'; },
@{ModuleName = 'AzureRM.Media'; RequiredVersion = '0.3.1'; },
@{ModuleName = 'AzureRM.Network'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'AzureRM.Network'; RequiredVersion = '3.2.0'; },
@{ModuleName = 'AzureRM.NotificationHubs'; RequiredVersion = '2.3.0'; },
@{ModuleName = 'AzureRM.OperationalInsights'; RequiredVersion = '2.3.0'; },
@{ModuleName = 'AzureRM.PowerBIEmbedded'; RequiredVersion = '2.3.0'; },
Expand Down Expand Up @@ -145,105 +145,13 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '2016.11.02 - Version 3.1.0
* ApiManagement
* Fixed cmdlet Import-AzureRmApiManagementApi when importing Api by SpecificationByUrl parameter
* New-AzureRmApiManagement supports creating an ApiManagement service in a VirtualNetwork and with additional regions
* AzureBatch
* Rename cmdlet Get-AzureRmBatchSubscriptionQuotas to Get-AzureRmBatchLocationsQuotas (an alias for the old command was created)
- Rename return type PSBatchSubscriptionQuotas to PSBatchLocationQuotas (no property changes)
* Compute
* Update formats for list of VMs, VMScaleSets and ContainerService
- The default format of Get-AzureRmVM, Get-AzureRmVmss and Get-AzureRmContainerService is not table format when these cmdlets call List Operation
* Fix overprovision issue for VMScaleSet
- Because of the bug in Compute client library (and Swagger spec) regarding overprovision property of VMScaleSet, this property did not show up correctly.
* Better piping scenario for VMScaleSets and ContainerService cmdlets
- VMScaleSet and ContainerService now have "ResourceGroupName" property, so when piping Get command to Delete/Update command, -ResourceGroupName is not required.
* Separate paremater sets for Set-AzureRmVM with Generalized and Redeploy parameter
* Reduce time taken by Get-AzureRmVMDiskEncryptionStatus cmdlet from two minutes to under five seconds
* Allow Set-AzureRmVMDiskEncryptionStatus to be used with VHDs residing in multiple resource groups
# DataLakeAnalytics
* Addition of Catalog CRUD cmdlets:
- The following cmdlets are replacing Secret CRUD cmdlets. In the next release Secret CRUD cmdlets will be removed.
- New-AzureRMDataLakeAnalyticsCatalogCredential
- Set-AzureRMDataLakeAnalyticsCatalogCredential
- Remove-AzureRMDataLakeAnalyticsCatalogCredential
* Fixes for Get-AzureRMDataLakeAnalyticsCatalogItem
- Better error messaging and support for invalid input
* General help improvements
- Clearer help for job operations
- Fixed typos and incorrect examples
* DataLakeStore
* Improvements to import and export data cmdlets
- Drastically increased performance for distributed download scenarios, where multiple sessions are running across many clients targeting the same ADLS account.
- Better error handling and messaging for both upload and download scenarios.
* Full Firewall rules management CRUD
- The below cmdlets can be used to manage firewall rules for an ADLS account:
- Add-AzureRMDataLakeStoreFirewallRule
- Set-AzureRMDataLakeStoreFirewallRule
- Get-AzureRMDataLakeStoreFirewallRule
- Remove-AzureRMDataLakeStoreFirewallRule
* Full Trusted ID provider management CRUD
- The below cmdlets can be used to manage trusted identity providers for an ADLS account:
- Add-AzureRMDataLakeStoreTrustedIdProvider
- Set-AzureRMDataLakeStoreTrustedIdProvider
- Get-AzureRMDataLakeStoreTrustedIdProvider
- Remove-AzureRMDataLakeStoreTrustedIdProvider
* Account Encryption Support
- You can now encrypt newly created ADLS accounts as well as enable encryption on existing ADLS accounts using the New-AzureRMDataLakeStoreAccount and Set-AzureRMDataLakeStoreAccount cmdlets, respectively.
* HDInsight
* Add support to create HDInsight Spark 2.0 cluster using new cmdlet Add-AzureRmHDInsightComponentVersion to specify the component version of Spark
* Get-AzureRmHDInsightCluster now returns the component version in a Spark 2.0 cluster
* New cmdlet
- Add-AzureRmHDInsightSecurityProfile
* Insights
* Add several warning/deprecation messages about future changes to cmdlets
- Add-AzureRmAutoscaleSetting
- Get-AzureRmMetric
- Get-AzureRmMetricDefinition
- New-AzureRmAutoscaleRule
- Remove-AzureRmAlertRule
- Remove-AzureRmAutoscaleSetting
- Remove-AzureRmLogProfile
* Add new parameter to Set-AzureRmDiagnosticSetting
- Parameter WorkspaceId is the OMS workspace Id
* MachineLearning
* Add support for Azure Machine Learning Committment Plans
- Get-AzureRmMLCommitmentAssociation
- Get-AzureRmMLCommitmentPlan
- Get-AzureRmMLCommitmentPlanUsageHistory
- Move-AzureRmMLCommitmentAssociation
- New-AzureRmMLCommitmentPlan
- Remove-AzureRmMLCommitmentPlan
- Update-AzureRmMLCommitmentPlan
ReleaseNotes = '2016.11.14 - Version 3.2.0
* Network
* Add-AzureRmVirtualNetworkPeering
- Parameter AlloowGatewayTransit renamed to AllowGatewayTransit (an alias for the old parameter was created)
- Fixed issue where UseRemoteGateway property was not being populated in the request to the server
* Get-AzureRmEffectiveNetworkSecurityGroup
- Add warning if there is no response from GetEffectiveNSG
* Add Source property to EffectiveRoute
* NotificationHubs
* New cmdlets
- New-AzureRmNotificationHubKey
- New-AzureRmNotificationHubsNamespaceKey
* OperationalInsights
* Add new parameter to cmdlet New-AzureRmOperationalInsightsWindowsPerformanceCounterDataSource
- UseLegacyCollector (switch parameter) will enable collection of 32-bit legacy performance counters on 64-bit machines
* Rename New-AzureRmOperationalInsightsAzureAuditDataSource to New-AzureRmOperationalInsightsAzureActivityLogDataSource (an alias for the old command was created)
* Get-AzureRmOperationalInsightsDataSource returns null instead of throwing an exception if not found
* New-AzureRmOperationalInsightsComputerGroup now supports defining a group simply by separating computer names with commas
* Profile
* Add-AzureRmAccount
- Add position for Credential parameter so the following command is allowed: Add-AzureRmAccount (Get-Credential)
- Updated parameter sets so the SubscriptionId and SubscriptionName are mutually exclusive
* Resources
* Lookup of AAD group by Id now uses GetObjectsByObjectId AAD Graph call instead of Groups/<id>
- This will enable Groups lookup in CSP scenario
* Remove unnecessary AAD graph call in Get role assignments logic
- Only make call when needed instead of always
* Fixed issue where Remove-AzureRmResource would throw an exception if one of the resources passed through the pipeline failed to be removed
- If cmdlet fails to remove one of the resources, the result will not have an effect on the removal of other resources'
* Get-AzureRmVirtualNetworkGatewayConnection
    - Added new param :- TunnelConnectionStatus in output Connection object to show per tunnel connection health status.
* Reset-AzureRmVirtualNetworkGateway
    - Added optional input param:- gatewayVip to pass gateway vip for ResetGateway API in case of Active-Active feature enabled gateways.
    - Gateway Vip can be retrieved from PublicIPs refered in VirtualNetworkGateway object.'

# External dependent modules of this module
# ExternalModuleDependencies = ''
Expand Down