Skip to content

release notes updates for the release 1.2.11 #4773

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
Oct 12, 2017
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
68 changes: 66 additions & 2 deletions src/StackAdmin/AzureRM/AzureRM.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,71 @@ ModuleList = @()
# List of all files packaged with this module
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://aka.ms/azps-license'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '## 2017.10.12 - Version 1.2.11
* The release 1.2.11 comes with a list of breaking changes. To upgrade from the 1.2.10 version, we have created a migration guide at https://aka.ms/azSpowershellmigration
* Profile
* Context persistence has been enabled, refer to the link for the details https://docs.microsoft.com/en-us/powershell/azure/context-persistence
* Add-AzureRmAccount - EnvironmentName parameter has been removed and replaced with Environment
* Select-AzureRmContext has been renamed to Import-AzureRmContext
* Save-AzureRmProfile has been renamed to Save-AzureRmContext
* -Force Parameter has been deprecated from Remove-AzureRmEnvironment
* Refer to the migration guide https://aka.ms/azSpowershellmigration for the object model changes
* Compute
* Tags parameter has been changed to Tag and the type was changed from HashTable[] to HashTable for the cmdlets New-AzureRmVM and Update-AzureRmVM
* Dns
* Tags parameter has been changed to Tag and the type was changed from HashTable[] to HashTable for the cmdlets New-AzureRmDnsZone and Set-AzureRmDnsZone
* KeyVault
* Tags parameter has been changed to Tag and the type was changed from HashTable[] to HashTable for the cmdlets New-AzureRmDnsZone and Set-AzureRmDnsZone
* Network
* Tags parameter has been changed to Tag and the type was changed from HashTable[] to HashTable for the following cmdlets
- New-AzureRmApplicationGateway
- New-AzureRmExpressRouteCircuit
- New-AzureRmLoadBalancer
- New-AzureRmLocalNetworkGateway
- New-AzureRmNetworkInterface
- New-AzureRmNetworkSecurityGroup
- New-AzureRmPublicIpAddress
- New-AzureRmRouteTable
- New-AzureRmVirtualNetwork
- New-AzureRmVirtualNetworkGateway
- New-AzureRmVirtualNetworkGatewayConnection
- New-AzureRmVirtualNetworkPeering
* Resources
* -Force parmeter has been removed from the following cmdlets
- Register-AzureRmProviderFeature
- Register-AzureRmResourceProvider
- Remove-AzureRmADServicePrincipal
- Remove-AzureRmPolicyAssignment
- Remove-AzureRmResourceGroupDeployment
- Remove-AzureRmRoleAssignment
- Stop-AzureRmResourceGroupDeployment
- Unregister-AzureRmResourceProvider
* Tag
* -Force parmeter has been removed from the cmdlet Remove-AzureRmTag'

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

} # End of PSData hashtable

} # End of PrivateData hashtable

}
18 changes: 9 additions & 9 deletions src/StackAdmin/AzureStack/AzureStack.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ RequiredModules = @(@{ModuleName="AzureRM.Profile"; RequiredVersion="3.4.1"},

# List of all files packaged with this module
# FileList = @()

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{

Expand All @@ -94,7 +94,7 @@ PrivateData = @{
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/stack-dev/LICENSE.txt'
LicenseUri = 'https://aka.ms/azps-license'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'
Expand All @@ -103,17 +103,17 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '2017.01.11 version 1.2.8
* AzureRM.Keyvault module
* Relaxing data type of ObjectId from Guid to string in Access Policy Entry for a Vault. These changes are required to Support ADFS Identity System.
* Set-AzureRmKeyVaultAccessPolicy cmdlet has an optional parameter BypassObjectIdValidation for supporting ADFS scenarios'

ReleaseNotes = '## 2017.10.12 - Version 1.2.11
* Dependency on the new AzureRm.Profile module brings many breaking changes, please refer migration guide https://aka.ms/azSpowershellmigration for the details
* AzureStackAdmin
* Get-AzsTenantSubscription has been renamed to Get-AzsUserSubscription with alias support for backward compatibility
* New-AzsTenantSubscription has been renamed to New-AzsUserSubscription with alias support for backward compatibility
* Remove-AzsTenantSubscription has been renamed to Remove-AzsUserSubscription with alias support for backward compatibility'
# External dependent modules of this module
# ExternalModuleDependencies = ''

} # End of PSData hashtable

} # End of PrivateData hashtable
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
Expand Down