Skip to content

Commit 6f2df03

Browse files
authored
Merge pull request Azure#10713 from Azure/release-2019-12-17
Release 2019 12 17
2 parents 74d5efa + b944cf8 commit 6f2df03

File tree

288 files changed

+26195
-8261
lines changed

Some content is hidden

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

288 files changed

+26195
-8261
lines changed

ChangeLog.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
## 3.2.0 - December 2019
2+
3+
### General
4+
* Update references in .psd1 to use relative path for all modules
5+
6+
#### Az.Accounts
7+
* Set correct UserAgent for client-side telemetry for Az 4.0 preview
8+
* Display user friendly error message when context is null in Az 4.0 preview
9+
10+
#### Az.Batch
11+
* Fix issue #10602, where **New-AzBatchPool** did not properly send 'VirtualMachineConfiguration.ContainerConfiguration' or 'VirtualMachineConfiguration.DataDisks' to the server.
12+
13+
#### Az.DataFactory
14+
* Update ADF .Net SDK version to 4.5.0
15+
16+
#### Az.FrontDoor
17+
* Added WAF managed rules exclusion support
18+
* Add SocketAddr to auto-complete
19+
20+
#### Az.HealthcareApis
21+
* Exception Handling
22+
23+
#### Az.KeyVault
24+
* Fixed error accessing value that is potentially not set
25+
* Elliptic Curve Cryptography Certificate Managment
26+
- Added support to specify the Curve for Certificate Policies
27+
28+
#### Az.Monitor
29+
* Adding optional argument to the Add Diagnostic Settings command. A switch argument that if present indicates that the export to Log Analytics must be to a fixed schema (a.k.a. dedicated, data type)
30+
31+
#### Az.Network
32+
* Support for IpGroups in AzureFirewall Application,Nat & Network Rules.
33+
34+
#### Az.RecoveryServices
35+
* Added SoftDelete feature for VM and added tests for softdelete
36+
* Azure Site Recovery support for Azure Disk Encryption One Pass for Azure to Azure.
37+
38+
#### Az.Resources
39+
* Fix an issue where template deployment fails to read a template parameter if its name conflicts with some built-in parameter name.
40+
* Updated policy cmdlets to use new api version 2019-09-01 that introduces grouping support within policy set definitions.
41+
42+
#### Az.Sql
43+
* Upgraded storage creation in Vulnerability Assessment auto enablement to StorageV2
44+
45+
#### Az.Storage
46+
* Support generate Blob/Constainer Idenity based SAS token with Storage Context based on Oauth authentication
47+
- New-AzStorageContainerSASToken
48+
- New-AzStorageBlobSASToken
49+
* Support revoke Storage Account User Delegation Keys, so all Idenity SAS tokens are revoked
50+
- Revoke-AzStorageAccountUserDelegationKeys
51+
* Upgrade to Microsoft.Azure.Management.Storage 14.2.0, to support new API version 2019-06-01.
52+
* Support Share QuotaGiB more than 5120 in Management plane File Share cmdlets, and add parameter alias 'Quota' to parameter 'QuotaGiB'
53+
- New-AzRmStorageShare
54+
- Update-AzRmStorageShare
55+
* Add parameter alias 'QuotaGiB' to parameter 'Quota'
56+
- Set-AzStorageShareQuota
57+
* Fix the issue that Set-AzStorageContainerAcl can clean up the stored Access Policy
58+
- Set-AzStorageContainerAcl
59+
160
## 3.1.0 - November 2019
261
### Highlights since the last major release
362
* Az.DataBoxEdge 1.0.0 released

src/Accounts/Accounts/Az.Accounts.psd1

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/29/2019
6+
# Generated on: 12/11/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.6.4'
15+
ModuleVersion = '1.6.5'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -72,8 +72,7 @@ RequiredAssemblies = 'Microsoft.Azure.PowerShell.Authentication.Abstractions.dll
7272
'Microsoft.Azure.PowerShell.Clients.KeyVault.dll',
7373
'Microsoft.Azure.PowerShell.Clients.Websites.dll',
7474
'Hyak.Common.dll', 'Microsoft.ApplicationInsights.dll',
75-
'Microsoft.Azure.Common.dll',
76-
'Microsoft.Rest.ClientRuntime.dll',
75+
'Microsoft.Azure.Common.dll', 'Microsoft.Rest.ClientRuntime.dll',
7776
'Microsoft.Rest.ClientRuntime.Azure.dll',
7877
'Microsoft.WindowsAzure.Storage.dll',
7978
'Microsoft.WindowsAzure.Storage.DataMovement.dll',
@@ -143,7 +142,9 @@ PrivateData = @{
143142
# IconUri = ''
144143

145144
# ReleaseNotes of this module
146-
ReleaseNotes = '* Add a deprecation message for ''Resolve-Error'' alias.'
145+
ReleaseNotes = '* Update references in .psd1 to use relative path
146+
* Set correct UserAgent for client-side telemetry for Az 4.0 preview
147+
* Display user friendly error message when context is null in Az 4.0'
147148

148149
# Prerelease string of this module
149150
# Prerelease = ''

src/Accounts/Accounts/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
## Upcoming Release
21+
22+
## Version 1.6.5
2123
* Update references in .psd1 to use relative path
2224
* Set correct UserAgent for client-side telemetry for Az 4.0 preview
2325
* Display user friendly error message when context is null in Az 4.0

src/Accounts/Accounts/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("1.6.4")]
47-
[assembly: AssemblyFileVersion("1.6.4")]
46+
[assembly: AssemblyVersion("1.6.5")]
47+
[assembly: AssemblyFileVersion("1.6.5")]
4848
#if !SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")]
5050
#endif

src/Advisor/Advisor/Az.Advisor.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/29/2019
6+
# Generated on: 12/11/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.1.0'
15+
ModuleVersion = '1.1.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.5'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = 'Microsoft.Azure.Management.Advisor.dll'
@@ -109,7 +109,7 @@ PrivateData = @{
109109
# IconUri = ''
110110

111111
# ReleaseNotes of this module
112-
ReleaseNotes = '* Added new category ''Operational Excellence'' to Get-AzAdvisorRecommendation cmdlet.'
112+
ReleaseNotes = '* Update references in .psd1 to use relative path'
113113

114114
# Prerelease string of this module
115115
# Prerelease = ''

src/Advisor/Advisor/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
- Additional information about change #1
2020
-->
2121
## Upcoming Release
22+
23+
## Version 1.1.1
2224
* Update references in .psd1 to use relative path
2325

2426
## Version 1.1.0

src/Advisor/Advisor/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("860B550A-20CE-4FB1-BAE7-EF10E9221BCE")]
2727

28-
[assembly: AssemblyVersion("1.1.0")]
29-
[assembly: AssemblyFileVersion("1.1.0")]
28+
[assembly: AssemblyVersion("1.1.1")]
29+
[assembly: AssemblyFileVersion("1.1.1")]

src/Aks/Aks/Az.Aks.psd1

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 8/22/2019
6+
# Generated on: 12/11/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.2'
15+
ModuleVersion = '1.0.3'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.5'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'YamlDotNet.dll', 'AutoMapper.dll'
@@ -110,9 +110,7 @@ PrivateData = @{
110110
# IconUri = ''
111111

112112
# ReleaseNotes of this module
113-
ReleaseNotes = '* Fixed miscellaneous typos across module
114-
* Fix issue with output for ''Get-AzAks''
115-
* More information here: https://github.com/Azure/azure-powershell/issues/9847'
113+
ReleaseNotes = '* Update references in .psd1 to use relative path'
116114

117115
# Prerelease string of this module
118116
# Prerelease = ''

src/Aks/Aks/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
## Upcoming Release
21+
22+
## Version 1.0.3
2123
* Update references in .psd1 to use relative path
2224

2325
## Version 1.0.2

src/Aks/Aks/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
[assembly: ComVisible(false)]
2424
[assembly: CLSCompliant(false)]
2525
[assembly: Guid("a97e0c3e-e389-46a6-b73d-2b9bd6909bdb")]
26-
[assembly: AssemblyVersion("1.0.2")]
27-
[assembly: AssemblyFileVersion("1.0.2")]
26+
[assembly: AssemblyVersion("1.0.3")]
27+
[assembly: AssemblyFileVersion("1.0.3")]

src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 6/17/2019
6+
# Generated on: 12/11/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.1.0'
15+
ModuleVersion = '0.1.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation'
3030
Copyright = 'Microsoft Corporation. All rights reserved.'
3131

3232
# Description of the functionality provided by this module
33-
Description = 'Microsoft Azure PowerShell - AlertsManagement service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.
33+
Description = 'Microsoft Azure PowerShell - AlertsManagement service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.
3434
3535
For more information on AlertsManagement, please visit the following: https://docs.microsoft.com/azure/alertsmanagement/'
3636

@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.5'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll'
@@ -65,7 +65,8 @@ RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll'
6565
# TypesToProcess = @()
6666

6767
# Format files (.ps1xml) to be loaded when importing this module
68-
FormatsToProcess = 'Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.generated.format.ps1xml'
68+
FormatsToProcess =
69+
'Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.generated.format.ps1xml'
6970

7071
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
7172
NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll')
@@ -74,15 +75,17 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll')
7475
FunctionsToExport = @()
7576

7677
# 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.
77-
CmdletsToExport = 'Get-AzAlert', 'Get-AzAlertObjectHistory', 'Update-AzAlertState', 'Measure-AzAlertStatistic',
78-
'Get-AzSmartGroup', 'Get-AzSmartGroupHistory', 'Update-AzSmartGroupState',
79-
'Get-AzActionRule', 'Set-AzActionRule', 'Update-AzActionRule', 'Remove-AzActionRule'
78+
CmdletsToExport = 'Get-AzAlert', 'Get-AzAlertObjectHistory', 'Update-AzAlertState',
79+
'Measure-AzAlertStatistic', 'Get-AzSmartGroup',
80+
'Get-AzSmartGroupHistory', 'Update-AzSmartGroupState',
81+
'Get-AzActionRule', 'Set-AzActionRule', 'Update-AzActionRule',
82+
'Remove-AzActionRule'
8083

8184
# Variables to export from this module
8285
# VariablesToExport = @()
8386

8487
# Aliases 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 aliases to export.
85-
# AliasesToExport = @()
88+
AliasesToExport = @()
8689

8790
# DSC resources to export from this module
8891
# DscResourcesToExport = @()
@@ -111,7 +114,7 @@ PrivateData = @{
111114
# IconUri = ''
112115

113116
# ReleaseNotes of this module
114-
ReleaseNotes = '* Public Release for Alerts Management Cmdlets based on API version 2019-05-05-preview.'
117+
ReleaseNotes = '* Update references in .psd1 to use relative path'
115118

116119
# Prerelease string of this module
117120
# Prerelease = ''

src/AlertsManagement/AlertsManagement/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
## Upcoming Release
21+
22+
## Version 0.1.1
2123
* Update references in .psd1 to use relative path
2224

2325
## Version 0.1.0

src/AlertsManagement/AlertsManagement/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("4381ecdd-5486-46fb-bef0-c0b2fb16bd54")]
27-
[assembly: AssemblyVersion("0.1.0")]
28-
[assembly: AssemblyFileVersion("0.1.0")]
27+
[assembly: AssemblyVersion("0.1.1")]
28+
[assembly: AssemblyFileVersion("0.1.1")]

src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 8/22/2019
6+
# Generated on: 12/11/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.1.1'
15+
ModuleVersion = '1.1.2'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

5555
# Modules that must be imported into the global environment prior to importing this module
56-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; })
56+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.5'; })
5757

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll'
@@ -123,7 +123,7 @@ PrivateData = @{
123123
# IconUri = ''
124124

125125
# ReleaseNotes of this module
126-
ReleaseNotes = '* Fixed miscellaneous typos across module'
126+
ReleaseNotes = '* Update references in .psd1 to use relative path'
127127

128128
# Prerelease string of this module
129129
# Prerelease = ''

src/AnalysisServices/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
## Upcoming Release
21+
22+
## Version 1.1.2
2123
* Update references in .psd1 to use relative path
2224

2325
## Version 1.1.1

src/AnalysisServices/AnalysisServices/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
// You can specify all the values or you can default the Build and Revision Numbers
3535
// by using the '*' as shown below:
3636

37-
[assembly: AssemblyVersion("1.1.1")]
38-
[assembly: AssemblyFileVersion("1.1.1")]
37+
[assembly: AssemblyVersion("1.1.2")]
38+
[assembly: AssemblyFileVersion("1.1.2")]

0 commit comments

Comments
 (0)