Skip to content

Commit 95d60a1

Browse files
committed
Update change logs and release notes for 5.0.0 release
1 parent baab3b7 commit 95d60a1

File tree

111 files changed

+762
-563
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+762
-563
lines changed

ChangeLog.md

Lines changed: 125 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,128 @@
1-
## 2017.10.12 - Version 4.4.1
1+
## 2017.11.8 - Version 5.0.0
2+
* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of introduced breaking changes.
3+
* AnalysisServices
4+
* Fixed Synchronize-AzureAsInstance command to work with new AsAzure REST API for sync
5+
* ApiManagement
6+
* Please see the migration guide for breaking changes made to ApiManagement this release
7+
* Updated Cmdlet Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510
8+
* Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069
9+
* ApplicationInsights
10+
* Add commands to get/create/remove applicaiton insights resource
11+
- Get-AzureRmApplicationInsights
12+
- New-AzureRmApplicationInsights
13+
- Remove-AzureRmApplicationInsights
14+
* Add commands to get/update pricing/daily cap of applicaiton insights resource
15+
- Get-AzureRmApplicationInsights -IncludeDailyCap
16+
- Set-AzureRmApplicationInsightsPricingPlan
17+
- Set-AzureRmApplicationInsightsDailyCap
18+
* Add commands to get/create/update/remove continuous export of applicaiton insights resource
19+
- Get-AzureRmApplicationInsightsContinuousExport
20+
- Set-AzureRmApplicationInsightsContinuousExport
21+
- New-AzureRmApplicationInsightsContinuousExport
22+
- Remove-AzureRmApplicationInsightsContinuousExport
23+
* Add commands to get/create/remove api keys of applicaiton insights resoruce
24+
- Get-AzureRmApplicationInsightsApiKey
25+
- New-AzureRmApplicationInsightsApiKey
26+
- Remove-AzureRmApplicationInsightsApiKey
27+
* AzureBatch
28+
* Added new parameters to `New-AzureRmBatchAccount`.
29+
- `PoolAllocationMode`: The allocation mode to use for creating pools in the Batch account. To create a Batch account which allocates pool nodes in the user's subscription, set this to `UserSubscription`.
30+
- `KeyVaultId`: The resource ID of the Azure key vault associated with the Batch account.
31+
- `KeyVaultUrl`: The URL of the Azure key vault associated with the Batch account.
32+
* Updated parameters to `New-AzureBatchTask`.
33+
- Removed the `RunElevated` switch. The `UserIdentity` parameter has been added to replace `RunElevated`, and the equivalent behavior can be achieved by constructing a `PSUserIdentity` as shown below:
34+
- $autoUser = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoUserSpecification -ArgumentList @("Task", "Admin")
35+
- $userIdentity = New-Object Microsoft.Azure.Commands.Batch.Models.PSUserIdentity $autoUser
36+
- Added the `AuthenticationTokenSettings` parameter. This parameter allows you to request the Batch service provide an authentication token to the task when it runs, avoiding the need to pass Batch account keys to the task in order to issue requests to the Batch service.
37+
- Added the `ContainerSettings` parameter.
38+
- This parameter allows you to request the Batch service run the task inside a container.
39+
- Added the `OutputFiles` parameter.
40+
- This parameter allows you to configure the task to upload files to Azure Storage after it has finished.
41+
* Updated parameters to `New-AzureBatchPool`.
42+
- Added the `UserAccounts` parameter.
43+
- This parameter defines user accounts created on each node in the pool.
44+
- Added `TargetLowPriorityComputeNodes` and renamed `TargetDedicated` to `TargetDedicatedComputeNodes`.
45+
- A `TargetDedicated` alias was created for the `TargetDedicatedComputeNodes` parameter.
46+
- Added the `NetworkConfiguration` parameter.
47+
- This parameter allows you to configure the pools network settings.
48+
* Updated parameters to `New-AzureBatchCertificate`.
49+
- The `Password` parameter is now a `SecureString`.
50+
* Updated parameters to `New-AzureBatchComputeNodeUser`.
51+
- The `Password` parameter is now a `SecureString`.
52+
* Updated parameters to `Set-AzureBatchComputeNodeUser`.
53+
- The `Password` parameter is now a `SecureString`.
54+
* Renamed the `Name` parameter to `Path` on `Get-AzureBatchNodeFile`, `Get-AzureBatchNodeFileContent`, and `Remove-AzureBatchNodeFile`.
55+
- A `Name` alias was created for the `Path` parameter.
56+
* Changes to objects
57+
- Please see the Batch change log for the full list
58+
* Added support for Azure Active Directory based authentication.
59+
- To use Azure Active Directory authentication, retrieve a `BatchAccountContext` object using the `Get-AzureRmBatchAccount` cmdlet, and supply this `BatchAccountContext` to the `-BatchContext` parameter of a Batch service cmdlet. Azure Active Directory authentication is mandatory for accounts with `PoolAllocationMode = UserSubscription`.
60+
- For existing accounts or for new accounts created with `PoolAllocationMode = BatchService`, you may continue to use shared key authentication by retrieving a `BatchAccountContext` object using the `Get-AzureRmBatchAccoutKeys` cmdlet.
61+
* DataLakeAnalytics
62+
* Please see the migration guide for breaking changes made to DataLakeAnalytics this release
63+
* Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsAccount
64+
- List\<DataLakeAnalyticsAccount> to List\<PSDataLakeAnalyticsAccountBasic>
65+
- The properties of PSDataLakeAnalyticsAccountBasic is a strict subset of the properties of DataLakeAnalyticsAccount
66+
- The additional properties that are in DataLakeAnalyticsAccount are not returned by the service. Therefore, this change is to reflect this accurately. These additional properties are still in PSDataLakeAnalyticsAccountBasic, but they are tagged as Obsolete.
67+
* Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsJob
68+
- List\<JobInformation> to List\<PSJobInformationBasic>
69+
- The properties of PSJobInformationBasic is a strict subset of the properties of JobInformation
70+
- The additional properties that are in JobInformation are not returned by the service. Therefore, this change is to reflect this accurately. These additional properties are still in PSJobInformationBasic, but they are tagged as Obsolete.
71+
* DataLakeStore
72+
* Please see the migration guide for breaking changes made to DataLakeStore this release
73+
* Changed one of the two OutputTypes of Get-AzureRmDataLakeStoreAccount
74+
- List\<PSDataLakeStoreAccount> to List\<PSDataLakeStoreAccountBasic>
75+
- The properties of PSDataLakeStoreAccountBasic is a strict subset of the properties of PSDataLakeStoreAccount
76+
- The additional properties that are in PSDataLakeStoreAccount are not returned by the service. Therefore, this change is to reflect this accurately. These additional properties are still in PSDataLakeStoreAccountBasic, but they are tagged as Obsolete.
77+
* Dns
78+
* Support for CAA record types in Azure DNS
79+
- Supports all operations on CAA record type
80+
* EventHub
81+
* Please see the migration guide for breaking changes made to EventHub this release
82+
* Insights
83+
* Please see the migration guide for breaking changes made to Insights this release
84+
* Network
85+
* Please see the migration guide for breaking changes made to Network this release
86+
* Added cmdlet to list available internet service providers for a specified Azure region
87+
- Get-AzureRmNetworkWatcherReachabilityProvidersList
88+
* Added cmdlet to get the relative latency score for internet service providers from a specified location to Azure regions
89+
- Get-AzureRmNetworkWatcherReachabilityReport
90+
* Profile
91+
- Set-AzureRmDefault
92+
- Use this cmdlet to set a default resource group. This will make the -ResourceGroup parameter optional for some cmdlets, and will use the default when a resource group is not specified
93+
- ```Set-AzureRmDefault -ResourceGroupName "ExampleResourceGroup"```
94+
- If resource group specified exists in the subscription, this resource group will be set to default. Otherwise, the resource group will be created and then set to default.
95+
- Get-AzureRmDefault
96+
- Use this cmdlet to get the current default resource group (and other defaults in the future).
97+
- ```Get-AzureRmDefault -ResourceGroup```
98+
- Clear-AzureRmDefault
99+
- Use this cmdlet to remove the current default resource group
100+
- ```Clear-AzureRmDefault -ResourceGroup```
101+
- Add-AzureRmEnvironment and Set-AzureRmEnvironment
102+
- Add the BatchAudience parameter, which allows you to specify the Azure Batch Active Directory audience to use when acquiring authentication tokens for the Batch service.
103+
* ServiceBus
104+
- Please see the migration guide for breaking changes made to ServiceBus this release
105+
* Sql
106+
* Adding support for list and cancel the asynchronous updateslo operation on the database
107+
- update existing cmdlet Get-AzureRmSqlDatabaseActivity to return DB updateslo operation status.
108+
- add new cmdlet Stop-AzureRmSqlDatabaseActivity for cancel the asynchronous updateslo operation on the database.
109+
* Adding support for Zone Redundancy for databases and elastic pools
110+
- Adding ZoneRedundant switch parameter to New-AzureRmSqlDatabase
111+
- Adding ZoneRedundant switch parameter to Set-AzureRmSqlDatabase
112+
- Adding ZoneRedundant switch parameter to New-AzureRmSqlElasticPool
113+
- Adding ZoneRedundant switch parameter to Set-AzureRmSqlElasticPool
114+
* Adding support for Server DNS Aliases
115+
- Adding Get-AzureRmSqlServerDnsAlias cmdlet which gets server dns aliases by server and alias name or a list of server dns aliases for an azure Sql Server.
116+
- Adding New-AzureRmSqlServerDnsAlias cmdlet which creates new server dns alias for a given Azure Sql server
117+
- Adding Set-AzurermSqlServerDnsAlias cmlet which allows updating a Azure Sql Server to which server dns alias is pointing
118+
- Adding Remove-AzureRmSqlServerDnsAlias cmdlet which removes a server dns alias for a Azure Sql Server
119+
* Azure.Storage
120+
* Upgrade to Azure Storage Client Library 8.5.0 and Azure Storage DataMovement Library 0.6.3
121+
* Add File Share Snapshot Support Feature
122+
- Add 'SnapshotTime' parameter to Get-AzureStorageShare
123+
- Add 'IncludeAllSnapshot' parameter to Remove-AzureStorageShare
124+
125+
## 2017.10.12 - Version 4.4.1
2126
* AzureBatch
3127
- Marked cmdlet parameters and type properties obsolete in
4128
preparation for upcoming breaking change release (Version 4.0.0)

src/ResourceManager/AnalysisServices/AzureRM.AnalysisServices.psd1

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#
1+
#
22
# Module manifest for module 'PSGet_AzureRM.AnalysisServices'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/11/2017
6+
# Generated on: 11/3/2017
77
#
88

99
@{
@@ -27,7 +27,7 @@ Author = 'Microsoft Corporation'
2727
CompanyName = 'Microsoft Corporation'
2828

2929
# Copyright statement for this module
30-
Copyright = '© Microsoft Corporation. All rights reserved.'
30+
Copyright = 'Microsoft Corporation. All rights reserved.'
3131

3232
# Description of the functionality provided by this module
3333
Description = 'Microsoft Azure PowerShell - Analysis Services'
@@ -114,7 +114,8 @@ PrivateData = @{
114114
# IconUri = ''
115115

116116
# ReleaseNotes of this module
117-
ReleaseNotes = 'Updated for common code changes'
117+
ReleaseNotes = '* Fixed Synchronize-AzureAsInstance command to work with new AsAzure REST API for sync
118+
'
118119

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

src/ResourceManager/AnalysisServices/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 0.5.0
2123
* Fixed Synchronize-AzureAsInstance command to work with new AsAzure REST API for sync
2224

2325
## Version 0.4.7

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Azure.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Author = 'Microsoft Corporation'
2121
CompanyName = 'Microsoft Corporation'
2222

2323
# Copyright statement for this module
24-
Copyright = '© Microsoft Corporation. All rights reserved.'
24+
Copyright = 'Microsoft Corporation. All rights reserved.'
2525

2626
# Description of the functionality provided by this module
2727
Description = 'Microsoft Azure PowerShell - Analysis Services server management'

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#
1+
#
22
# Module manifest for module 'PSGet_AzureRM.ApiManagement'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/11/2017
6+
# Generated on: 11/3/2017
77
#
88

99
@{
@@ -185,7 +185,15 @@ PrivateData = @{
185185
# IconUri = ''
186186

187187
# ReleaseNotes of this module
188-
ReleaseNotes = 'Updated for common code changes'
188+
ReleaseNotes = '* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced.
189+
* Breaking Changes in Cmdlet to Manage Api Management Users
190+
- New-AzureRmApiManagementUser Parameter `Password` is changed from String to SecureString
191+
- Set-AzureRmApiManagementBackend Parameter `Password` is changed from String to SecureString
192+
* Breaking Changes in Cmdlet to Create Backend Proxy Object
193+
- New-AzureRmApiManagementBackendProxy Parameter `Password` and `UserName` have been replaced with `ProxyCredentials` of type PSCredential
194+
* Updated Cmdlet Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510
195+
* Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069
196+
'
189197

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

src/ResourceManager/ApiManagement/ChangeLog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
22+
## Version 5.0.0
23+
* NOTE: This is a breaking change release. Please see the migration guide (https://aka.ms/azps-migration-guide) for a full list of breaking changes introduced.
2124
* Breaking Changes in Cmdlet to Manage Api Management Users
2225
- New-AzureRmApiManagementUser Parameter `Password` is changed from String to SecureString
2326
- Set-AzureRmApiManagementBackend Parameter `Password` is changed from String to SecureString
24-
2527
* Breaking Changes in Cmdlet to Create Backend Proxy Object
2628
- New-AzureRmApiManagementBackendProxy Parameter `Password` and `UserName` have been replaced with `ProxyCredentials` of type PSCredential
27-
2829
* Updated Cmdlet Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510
29-
3030
* Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069
3131

3232
## Version 4.4.1

src/ResourceManager/ApplicationInsights/AzureRM.ApplicationInsights.psd1

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#
1+
#
22
# Module manifest for module 'PSGet_AzureRM.ApplicationInsights'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/6/2017
6+
# Generated on: 11/3/2017
77
#
88

99
@{
@@ -72,18 +72,17 @@ NestedModules = @('.\Microsoft.Azure.Commands.ApplicationInsights.dll')
7272
FunctionsToExport = @()
7373

7474
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
75-
CmdletsToExport = 'Get-AzureRmApplicationInsights',
76-
'New-AzureRmApplicationInsights',
77-
'Remove-AzureRmApplicationInsights',
78-
'Set-AzureRmApplicationInsightsPricingPlan',
79-
'Set-AzureRmApplicationInsightsDailyCap',
80-
'Get-AzureRmApplicationInsightsContinuousExport',
81-
'Set-AzureRmApplicationInsightsContinuousExport',
82-
'New-AzureRmApplicationInsightsContinuousExport',
83-
'Remove-AzureRmApplicationInsightsContinuousExport',
84-
'Get-AzureRmApplicationInsightsApiKey',
85-
'New-AzureRmApplicationInsightsApiKey',
86-
'Remove-AzureRmApplicationInsightsApiKey'
75+
CmdletsToExport = 'Get-AzureRmApplicationInsights', 'New-AzureRmApplicationInsights',
76+
'Remove-AzureRmApplicationInsights',
77+
'Set-AzureRmApplicationInsightsPricingPlan',
78+
'Set-AzureRmApplicationInsightsDailyCap',
79+
'Get-AzureRmApplicationInsightsContinuousExport',
80+
'Set-AzureRmApplicationInsightsContinuousExport',
81+
'New-AzureRmApplicationInsightsContinuousExport',
82+
'Remove-AzureRmApplicationInsightsContinuousExport',
83+
'Get-AzureRmApplicationInsightsApiKey',
84+
'New-AzureRmApplicationInsightsApiKey',
85+
'Remove-AzureRmApplicationInsightsApiKey'
8786

8887
# Variables to export from this module
8988
# VariablesToExport = @()
@@ -118,7 +117,28 @@ PrivateData = @{
118117
# IconUri = ''
119118

120119
# ReleaseNotes of this module
121-
ReleaseNotes = 'Updated for common code changes'
120+
ReleaseNotes = ' Add commands to get/create/remove applicaiton insights resource
121+
Get-AzureRmApplicationInsights
122+
New-AzureRmApplicationInsights
123+
Remove-AzureRmApplicationInsights
124+
125+
Add commands to get/update pricing/daily cap of applicaiton insights resource
126+
Get-AzureRmApplicationInsights -IncludeDailyCap
127+
Set-AzureRmApplicationInsightsPricingPlan
128+
Set-AzureRmApplicationInsightsDailyCap
129+
130+
Add commands to get/create/update/remove continuous export of applicaiton insights resource
131+
Get-AzureRmApplicationInsightsContinuousExport
132+
Set-AzureRmApplicationInsightsContinuousExport
133+
New-AzureRmApplicationInsightsContinuousExport
134+
Remove-AzureRmApplicationInsightsContinuousExport
135+
136+
Add commands to get/create/remove api keys of applicaiton insights resoruce
137+
Get-AzureRmApplicationInsightsApiKey
138+
New-AzureRmApplicationInsightsApiKey
139+
Remove-AzureRmApplicationInsightsApiKey
140+
141+
'
122142

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

src/ResourceManager/ApplicationInsights/ChangeLog.md

Lines changed: 2 additions & 1 deletion
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 0.1.0
2123
Add commands to get/create/remove applicaiton insights resource
2224
Get-AzureRmApplicationInsights
2325
New-AzureRmApplicationInsights
@@ -38,4 +40,3 @@
3840
Get-AzureRmApplicationInsightsApiKey
3941
New-AzureRmApplicationInsightsApiKey
4042
Remove-AzureRmApplicationInsightsApiKey
41-

src/ResourceManager/Automation/AzureRM.Automation.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#
1+
#
22
# Module manifest for module 'PSGet_AzureRM.Automation'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/11/2017
6+
# Generated on: 11/3/2017
77
#
88

99
@{

src/ResourceManager/Automation/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.0.0
23+
2224
## Version 3.4.1
2325

2426
## Version 3.4.0

src/ResourceManager/AzureBackup/AzureRM.Backup.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#
1+
#
22
# Module manifest for module 'PSGet_AzureRM.Backup'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/11/2017
6+
# Generated on: 11/3/2017
77
#
88

99
@{

src/ResourceManager/AzureBackup/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.0.0
23+
2224
## Version 3.4.1
2325

2426
## Version 3.4.0

0 commit comments

Comments
 (0)