Skip to content

Commit 27fce5c

Browse files
authored
Merge pull request Azure#4272 from cormacpayne/change-log-update
[Release 4.2.0] Update change logs for release
2 parents ee74878 + 96fd198 commit 27fce5c

File tree

100 files changed

+857
-531
lines changed

Some content is hidden

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

100 files changed

+857
-531
lines changed

ChangeLog.md

+149-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,152 @@
1-
## 2017.06.07 - Version 4.1.0
1+
## 2017.7.11 - Version 4.2.0
2+
* AnalysisServices
3+
* Add new dataplane API
4+
- Introduced API to fetch AS server log, Export-AzureAnalysisServicesInstanceLog
5+
* Automation
6+
* Properly setting TimeZone value for Weekly and Monthly schedules for New-AzureRmAutomationSchedule
7+
- More information can be found in this issue: https://github.com/Azure/azure-powershell/issues/3043
8+
* AzureBatch
9+
- Added new Get-AzureBatchJobPreparationAndReleaseTaskStatus cmdlet.
10+
- Added byte range start and end to Get-AzureBatchNodeFileContent parameters.
11+
* CognitiveServices
12+
* Integrate with Cognitive Services Management SDK version 1.0.0.
13+
* Fix an account name length checking bug.
14+
* Compute
15+
* Storage account type support for Image disk:
16+
- 'StorageAccountType' parameter is added to Set-AzureRmImageOsDisk and Add-AzureRmImageDataDisk
17+
* PrivateIP and PublicIP feature in Vmss Ip Configuration:
18+
- 'PrivateIPAddressVersion', 'PublicIPAddressConfigurationName', 'PublicIPAddressConfigurationIdleTimeoutInMinutes', 'DnsSetting' names are added to New-AzureRmVmssIpConfig
19+
- 'PrivateIPAddressVersion' parameter for specifying IPv4 or IPv6 is added to New-AzureRmVmssIpConfig
20+
* Performance Maintenance feature:
21+
- 'PerformMaintenance' switch parameter is added to Restart-AzureRmVM.
22+
- Get-AzureRmVM -Status shows the information of performance maintenance of the given VM
23+
* Virtual Machine Identity feature:
24+
- 'IdentityType' parameter is added to New-AzureRmVMConfig and UpdateAzureRmVM
25+
- Get-AzureRmVM shows the information of the identity of the given VM
26+
* Vmss Identity feature:
27+
- 'IdentityType' parameter is added to to New-AzureRmVmssConfig
28+
- Get-AzureRmVmss shows the information of the identity of the given Vmss
29+
* Vmss Boot Diagnostics feature:
30+
- New cmdlet for setting boot diagnostics of Vmss object: Set-AzureRmVmssBootDiagnostics
31+
- 'BootDiagnostic' parameter is added to New-AzureRmVmssConfig
32+
* Vmss LicenseType feature:
33+
- 'LicenseType' parameter is added to New-AzureRmVmssConfig
34+
* RecoveryPolicyMode support:
35+
- 'RecoveryPolicyMode' paramter is added to New-AzureRmVmssConfig
36+
* Compute Resource Sku feature:
37+
- New cmdlet 'Get-AzureRmComputeResourceSku' list all compute resource skus
38+
* DataFactories
39+
* Deprecate New-AzureRmDataFactoryGatewayKey
40+
* Introduce gateway auth key feature by adding New-AzureRmDataFactoryGatewayAuthKey and Get-AzureRmDataFactoryGatewayAuthKey
41+
* DataLakeAnalytics
42+
* Add support for Compute Policy CRUD through the following commands:
43+
- New-AzureRMDataLakeAnalyticsComputePolicy
44+
- Get-AzureRMDataLakeAnalyticsComputePolicy
45+
- Remove-AzureRMDataLakeAnalyticsComputePolicy
46+
- Update-AzureRMDataLakeAnalyticsComputePolicy
47+
* Add support for job relationship metadata for help with recurring jobs and job pipelines. The following commands were updated or added:
48+
- Submit-AzureRMDataLakeAnalyticsJob
49+
- Get-AzureRMDataLakeAnalyticsJob
50+
- Get-AzureRMDataLakeAnalyticsJobRecurrence
51+
- Get-AzureRMDataLakeAnalyticsJobPipeline
52+
* Updated the token audience for job and catalog APIs to use the correct Data Lake specific audience instead of the Azure Resource audience.
53+
* DataLakeStore
54+
* Added support for user managed KeyVault key rotations in the Set-AzureRMDataLakeStoreAccount cmdlet
55+
* Added a quality of life update to automatically trigger an `enableKeyVault` call when a user managed KeyVault is added or a key is rotated.
56+
* Updated the token audience for job and catalog APIs to use the correct Data Lake specific audience instead of the Azure Resource audience.
57+
* Fixed a bug limiting the size of files created/appended using the following cmdlets:
58+
- New-AzureRmDataLakeStoreItem
59+
- Add-AzureRmDataLakeStoreItemContent
60+
* Dns
61+
* Fix bug in the piping scenario for Get-AzureRmDnsZone
62+
- More information can be found here: https://github.com/Azure/azure-powershell/issues/4203
63+
* HDInsight
64+
* Added support to enable / disable Operations Management Suite(OMS)
65+
* New cmdlets
66+
- Enable-AzureRmHDInsightOperationsManagementSuite
67+
- Disable-AzureRmHDInsightOperationsManagementSuite
68+
- Get-AzureRmHDInsightOperationsManagementSuite
69+
* Add new parameters to set Spark custom configurations to Add-AzureRmHDInsightConfigValues
70+
- Parameters SparkDefaults and SparkThriftConf for Spark 1.6
71+
- Parameters Spark2Defaults and Spark2ThriftConf for Spark 2.0
72+
* Insights
73+
* Issue #4215 (change request) remove the 15 days limit in the time window for the Get-AzureRmLog cmdlet. Also minor changes to the unit test names.
74+
* Issue #3957 fixed for Get-AzureRmLog
75+
- Issue #1: The backend returns the records in pages of 200 records each, linked by the continuation token to the next page. The customers were seeing the cmdlet returning only 200 records when they knew there were more. This was happening regardless of the value they set for MaxEvents, unless that value was less than 200.
76+
- Issue #2: The documentation contained incorrect data about this cmdlet, e.g.: the default timewindow was 1 hour.
77+
- Fix #1: The cmdlet now follows the continuation token returned by the backend until it reaches MaxEvents or the end of the set.<br>The default value for MaxEvents is 1000 and its maximum is 100000. Any value for MaxEvents that is less than 1 is ignored and the default is used instead. These values and behavior did not change, now they are correctly documented.<br>An alias for MaxEvents has been added -MaxRecords- since the name of the cmdlet does not speak about events anymore, but only about Logs.
78+
- Fix #2: The documentation contains correct and more detailed information: new alias, correct time window, correct default, minimum, and maximum values.
79+
* KeyVault
80+
* Remove email address from the directory query when -UserPrincipalName is specified to the Set-AzureRMKeyVaultAccessPolicy and Remove-AzureRMKeyVaultAccessPolicy cmdlets.
81+
- Both Cmdlets now have an -EmailAddress parameter that can be used instead of the -UserPrincipalName parameter when querying for email address is appropriate. If there are more than one matching email addresses in the directory then the Cmdlet will fail.
82+
* Network
83+
* New-AzureRmIpsecPolicy: SALifeTimeSeconds and SADataSizeKilobytes are no longer mandatory parameters
84+
   - SALifeTimeSeconds defaults to 27000 seconds
85+
   - SADataSizeKilobytes defaults to 102400000 KB
86+
* Added support for custom cipher suite configuration using ssl policy and listing all ssl options api in Application Gateway
87+
- Added optional parameter -PolicyType, -PolicyName, -MinProtocolVersion, -Ciphersuite
88+
- Add-AzureRmApplicationGatewaySslPolicy
89+
- New-AzureRmApplicationGatewaySslPolicy
90+
- Set-AzureRmApplicationGatewaySslPolicy
91+
- Added Get-AzureRmApplicationGatewayAvailableSslOptions (Alias: List-AzureRmApplicationGatewayAvailableSslOptions)
92+
- Added Get-AzureRmApplicationGatewaySslPredefinedPolicy (Alias: List-AzureRmApplicationGatewaySslPredefinedPolicy)
93+
* Added redirect support in Application Gateway
94+
- Added Add-AzureRmApplicationGatewayRedirectConfiguration
95+
- Added Get-AzureRmApplicationGatewayRedirectConfiguration
96+
- Added New-AzureRmApplicationGatewayRedirectConfiguration
97+
- Added Remove-AzureRmApplicationGatewayRedirectConfiguration
98+
- Added Set-AzureRmApplicationGatewayRedirectConfiguration
99+
- Added optional parameter -RedirectConfiguration
100+
- Add-AzureRmApplicationGatewayRequestRoutingRule
101+
- New-AzureRmApplicationGatewayRequestRoutingRule
102+
- Set-AzureRmApplicationGatewayRequestRoutingRule
103+
- Added optional parameter -DefaultRedirectConfiguration
104+
- Add-AzureRmApplicationGatewayUrlPathMapConfig
105+
- New-AzureRmApplicationGatewayUrlPathMapConfig
106+
- Set-AzureRmApplicationGatewayUrlPathMapConfig
107+
- Added optional parameter -RedirectConfiguration
108+
- Add-AzureRmApplicationGatewayPathRuleConfig
109+
- New-AzureRmApplicationGatewayPathRuleConfig
110+
- Set-AzureRmApplicationGatewayPathRuleConfig
111+
- Added optional parameter -RedirectConfigurations
112+
- New-AzureRmApplicationGateway
113+
- Set-AzureRmApplicationGateway
114+
* Added support for azure websites in Application Gateway
115+
- Added New-AzureRmApplicationGatewayProbeHealthResponseMatch
116+
- Added optional parameters -PickHostNameFromBackendHttpSettings, -MinServers, -Match
117+
- Add-AzureRmApplicationGatewayProbeConfig
118+
- New-AzureRmApplicationGatewayProbeConfig
119+
- Set-AzureRmApplicationGatewayProbeConfig
120+
- Added optional parameters -PickHostNameFromBackendAddress, -AffinityCookieName, -ProbeEnabled, -Path
121+
- Add-AzureRmApplicationGatewayBackendHttpSettings
122+
- New-AzureRmApplicationGatewayBackendHttpSettings
123+
- Set-AzureRmApplicationGatewayBackendHttpSettings
124+
* Update Get-AzureRmPublicIPaddress to retrieve publicipaddress resources created via VM Scale Set
125+
* Added cmdlet to get virtual network current usage
126+
- Get-AzureRmVirtualNetworkUsageList
127+
* Profile
128+
* Fixed error when using Import-AzureRmContext or Save-AzureRmContext
129+
- More information can be found in this issue: https://github.com/Azure/azure-powershell/issues/3954
130+
* RecoveryServices.SiteRecovery
131+
* Introducing a new module for Azure Site Recovery operations.
132+
- All cmdlets begin with AzureRmRecoveryServicesAsr*
133+
* Sql
134+
* Add Data Sync PowerShell Cmdlets to AzureRM.Sql
135+
* Updated AzureRmSqlServer cmdlets to use new REST API version that avoids timeouts when creating server.
136+
* Deprecated server upgrade cmdlets because the old server version (2.0) no longer exists.
137+
* Add new optional switch paramter "AssignIdentity" to New-AzureRmSqlServer and Set-AzureRmSqlServer cmdlets to support provisioning of a resource identity for the SQL server resource
138+
* The parameter ResourceGroupName is now optional for Get-AzureRmSqlServer
139+
- More information can be found in the following issue: https://github.com/Azure/azure-powershell/issues/635
140+
* ServiceManagement
141+
For ExpressRoute:
142+
* Updated New-AzureBgpPeering cmdlet to add following new options :
143+
- PeerAddressType : Values of "IPv4" or "IPv6" can be specified to create a BGP Peering of the corresponding address family type
144+
* Updated Set-AzureBgpPeering cmdlet to add following new options :
145+
- PeerAddressType : Values of "IPv4" or "IPv6" can be specified to update BGP Peering of the corresponding address family type
146+
* Updated Remove-AzureBgpPeering cmdlet to add following new options :
147+
- PeerAddressType : Values of "IPv4", "IPv6" or All can be specified to remove BGP Peering of the corresponding address family type or all of them
148+
149+
## 2017.06.07 - Version 4.1.0
2150
* AnalysisServices
3151
* New SKUs added: B1, B2, S0
4152
* Scale up/down support added

src/ResourceManager/AnalysisServices/AzureRM.AnalysisServices.psd1

+5-6
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: 6/4/2017
6+
# Generated on: 7/6/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'
@@ -113,9 +113,8 @@ PrivateData = @{
113113
# IconUri = ''
114114

115115
# ReleaseNotes of this module
116-
ReleaseNotes = '* New SKUs added: B1, B2, S0
117-
* Scale up/down support added
118-
'
116+
ReleaseNotes = '* Add new dataplane API
117+
- Introduced API to fetch AS server log, Export-AzureAnalysisServicesInstanceLog'
119118

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

src/ResourceManager/AnalysisServices/ChangeLog.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
22+
## Version 0.4.1
2123
* Add new dataplane API
22-
- Introduced API to fetch AS server log, we don't want this API to be documented, we want it to be just accessible and downloadable.
24+
- Introduced API to fetch AS server log, Export-AzureAnalysisServicesInstanceLog
2325

2426
## Version 0.4.0
2527
* New SKUs added: B1, B2, S0

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

+2-2
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: 6/4/2017
6+
# Generated on: 7/6/2017
77
#
88

99
@{

src/ResourceManager/ApiManagement/ChangeLog.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 4.2.0
23+
2224
## Version 4.1.0
2325

2426
## Version 4.0.1

src/ResourceManager/Automation/AzureRM.Automation.psd1

+5-3
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: 6/4/2017
6+
# Generated on: 7/6/2017
77
#
88

99
@{
@@ -160,7 +160,9 @@ PrivateData = @{
160160
# IconUri = ''
161161

162162
# ReleaseNotes of this module
163-
ReleaseNotes = 'Updated for common code changes'
163+
ReleaseNotes = '* Properly setting TimeZone value for Weekly and Monthly schedules for New-AzureRmAutomationSchedule
164+
- More information can be found in this issue: https://github.com/Azure/azure-powershell/issues/3043
165+
'
164166

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

src/ResourceManager/Automation/ChangeLog.md

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
-->
2020
## Current Release
2121

22+
## Version 3.2.0
23+
* Properly setting TimeZone value for Weekly and Monthly schedules for New-AzureRmAutomationSchedule
24+
- More information can be found in this issue: https://github.com/Azure/azure-powershell/issues/3043
25+
2226
## Version 3.1.0
2327

2428
## Version 3.0.1

src/ResourceManager/AzureBackup/AzureRM.Backup.psd1

+2-2
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: 6/4/2017
6+
# Generated on: 7/6/2017
77
#
88

99
@{

src/ResourceManager/AzureBackup/ChangeLog.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 3.2.0
23+
2224
## Version 3.1.0
2325

2426
## Version 3.0.1

0 commit comments

Comments
 (0)