Skip to content

Commit c91ac2a

Browse files
authored
Merge pull request Azure#7093 from Azure/release-2018-08-24v2
Release -> Master for 6.8.1
2 parents 20bdcea + 647d314 commit c91ac2a

File tree

258 files changed

+5477
-5146
lines changed

Some content is hidden

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

258 files changed

+5477
-5146
lines changed

ChangeLog.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,54 @@
1-
## 6.8.0 - August 2018
1+
## 6.8.1 - August 2018
2+
#### General
3+
* Fixed issue with default resource groups not being set.
4+
* Updated common runtime assemblies
5+
6+
#### AzureRM.ApiManagement
7+
* Fixed issue with default resource groups not being set.
8+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6603
9+
- Import-AzureRmApiManagementApi and *-AzureRmApiManagementCertificate cmdlets now handle relative Paths
10+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6879
11+
- The CertificateInformation is a settable property allowing for Set-AzureRmApiManagement cmdlet to work property. Fixed by upgrading to
12+
4.0.4-preview nuget
13+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6853
14+
- Fixed the Odata filter for Search by Name on Product
15+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6814
16+
- Fixed the Odata filter for Search by Name on Api
17+
* Added support for AzureMonitor logger
18+
19+
20+
#### AzureRM.Compute
21+
* Fixed the issue that target is missing in error output.
22+
* Fixed issue with storage account type for VM with managed disk
23+
* Fixed issue with default resource groups not being set.
24+
* Fix AEM Extension cmdlets for other environments, for example Azure China
25+
26+
#### AzureRM.Network
27+
* Changed default cmdlet output presentation to table view
28+
29+
#### AzureRM.PowerBIEmbedded
30+
* Fix failure in Update-AzureRmPowerBIEmbeddedCapacity when trying to scale paused capacity
31+
32+
33+
#### AzureRM.Resources
34+
* Fixed issue with creating managed applications from the MarketPlace.
35+
36+
#### AzureRM.ServiceBus
37+
* Fixed issues
38+
- https://github.com/Azure/azure-powershell/issues/5058
39+
- https://github.com/Azure/azure-powershell/issues/5055
40+
- https://github.com/Azure/azure-powershell/issues/6891
41+
42+
#### AzureRM.TrafficManager
43+
* Added Support for the MultiValue routing method
44+
- New parameter 'MaxReturn' for MultiValue routing
45+
* Added Support for the Subnet routing method
46+
- Support for IP address ranges (subnets) in endpoints
47+
* Added Support for Custom Headers in profiles
48+
* Added Support for Expected status code ranges in profiles
49+
* Added Support for Custom Headers in endpoints
50+
51+
## 6.8.0 - August 2018
252
#### General
353
* Fixed issue with default resource groups not being set.
454

src/ResourceManager/Aks/Commands.Aks/AzureRM.Aks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/AzureRM.AnalysisServices.psd1

Lines changed: 5 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/2018
6+
# Generated on: 8/28/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '0.6.13'
15+
ModuleVersion = '0.6.14'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll'
@@ -116,7 +116,8 @@ PrivateData = @{
116116
# IconUri = ''
117117

118118
# ReleaseNotes of this module
119-
ReleaseNotes = '* Fixed issue with default resource groups not being set.'
119+
ReleaseNotes = ' * Fixed issue with default resource groups not being set.
120+
* Updated common runtime assemblies'
120121

121122
# Prerelease string of this module
122123
# Prerelease = ''

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/ChangeLog.md

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

22+
## Version 0.6.14
23+
* Fixed issue with default resource groups not being set.
24+
* Updated common runtime assemblies
25+
2226
## Version 0.6.13
2327
* Fixed issue with default resource groups not being set.
2428

src/ResourceManager/AnalysisServices/Commands.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("0.6.13")]
38-
[assembly: AssemblyFileVersion("0.6.13")]
37+
[assembly: AssemblyVersion("0.6.14")]
38+
[assembly: AssemblyFileVersion("0.6.14")]

src/ResourceManager/ApiManagement/Commands.ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 15 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/2018
6+
# Generated on: 8/28/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '6.1.4'
15+
ModuleVersion = '6.1.5'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\AutoMapper.dll',
@@ -204,7 +204,18 @@ PrivateData = @{
204204
# IconUri = ''
205205

206206
# ReleaseNotes of this module
207-
ReleaseNotes = '* Fixed issue with default resource groups not being set.'
207+
ReleaseNotes = '* Fixed issue with default resource groups not being set.
208+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6603
209+
- Import-AzureRmApiManagementApi and *-AzureRmApiManagementCertificate cmdlets now handle relative Paths
210+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6879
211+
- The CertificateInformation is a settable property allowing for Set-AzureRmApiManagement cmdlet to work property. Fixed by upgrading to
212+
4.0.4-preview nuget
213+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6853
214+
- Fixed the Odata filter for Search by Name on Product
215+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6814
216+
- Fixed the Odata filter for Search by Name on Api
217+
* Added support for AzureMonitor logger
218+
* Updated common runtime assemblies'
208219

209220
# Prerelease string of this module
210221
# Prerelease = ''

src/ResourceManager/ApiManagement/Commands.ApiManagement/ChangeLog.md

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

22+
## Version 6.1.5
23+
* Fixed issue with default resource groups not being set.
24+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6603
25+
- Import-AzureRmApiManagementApi and *-AzureRmApiManagementCertificate cmdlets now handle relative Paths
26+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6879
27+
- The CertificateInformation is a settable property allowing for Set-AzureRmApiManagement cmdlet to work property. Fixed by upgrading to
28+
4.0.4-preview nuget
29+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6853
30+
- Fixed the Odata filter for Search by Name on Product
31+
* Fixed issue https://github.com/Azure/azure-powershell/issues/6814
32+
- Fixed the Odata filter for Search by Name on Api
33+
* Added support for AzureMonitor logger
34+
* Updated common runtime assemblies
35+
36+
2237
## Version 6.1.4
2338
* Fixed issue with default resource groups not being set.
2439
* Fixed issue https://github.com/Azure/azure-powershell/issues/6603

src/ResourceManager/ApiManagement/Commands.ApiManagement/Properties/AssemblyInfo.cs

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

44-
[assembly: AssemblyVersion("6.1.4")]
45-
[assembly: AssemblyFileVersion("6.1.4")]
44+
[assembly: AssemblyVersion("6.1.5")]
45+
[assembly: AssemblyFileVersion("6.1.5")]

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights/AzureRM.ApplicationInsights.psd1

Lines changed: 5 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/2018
6+
# Generated on: 8/28/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '0.1.7'
15+
ModuleVersion = '0.1.8'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll'
@@ -117,7 +117,8 @@ PrivateData = @{
117117
# IconUri = ''
118118

119119
# ReleaseNotes of this module
120-
ReleaseNotes = '* Fixed issue with default resource groups not being set.'
120+
ReleaseNotes = '* Fixed issue with default resource groups not being set.
121+
* Updated common runtime assemblies'
121122

122123
# Prerelease string of this module
123124
# Prerelease = ''

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights/ChangeLog.md

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

22+
## Version 0.1.8
23+
* Fixed issue with default resource groups not being set.
24+
* Updated common runtime assemblies
25+
2226
## Version 0.1.7
2327
* Fixed issue with default resource groups not being set.
2428

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights/Properties/AssemblyInfo.cs

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

45-
[assembly: AssemblyVersion("0.1.7")]
46-
[assembly: AssemblyFileVersion("0.1.7")]
45+
[assembly: AssemblyVersion("0.1.8")]
46+
[assembly: AssemblyFileVersion("0.1.8")]

src/ResourceManager/Automation/Commands.Automation/AzureRM.Automation.psd1

Lines changed: 5 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/2018
6+
# Generated on: 8/28/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '5.1.0'
15+
ModuleVersion = '5.1.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll'
@@ -164,7 +164,8 @@ PrivateData = @{
164164
# IconUri = ''
165165

166166
# ReleaseNotes of this module
167-
ReleaseNotes = '* Fixed issue with default resource groups not being set.'
167+
ReleaseNotes = '* Fixed issue with default resource groups not being set.
168+
* Updated common runtime assemblies'
168169

169170
# Prerelease string of this module
170171
# Prerelease = ''

src/ResourceManager/Automation/Commands.Automation/ChangeLog.md

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

22+
## Version 5.1.1
23+
* Fixed issue with default resource groups not being set.
24+
* Updated common runtime assemblies
25+
2226
## Version 5.1.0
2327
* Fixed issue with default resource groups not being set.
2428

src/ResourceManager/Automation/Commands.Automation/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("5.1.0")]
47-
[assembly: AssemblyFileVersion("5.1.0")]
46+
[assembly: AssemblyVersion("5.1.1")]
47+
[assembly: AssemblyFileVersion("5.1.1")]
4848
#if SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.Commands.ResourceManager.Automation.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
5050
#else

src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureRM.Backup.psd1

Lines changed: 5 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/2018
6+
# Generated on: 8/28/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '4.0.9'
15+
ModuleVersion = '4.0.10'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

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

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll',
@@ -124,7 +124,8 @@ PrivateData = @{
124124
# IconUri = ''
125125

126126
# ReleaseNotes of this module
127-
ReleaseNotes = '* Fixed issue with default resource groups not being set.'
127+
ReleaseNotes = '* Fixed issue with default resource groups not being set.
128+
* Updated common runtime assemblies'
128129

129130
# Prerelease string of this module
130131
# Prerelease = ''

src/ResourceManager/AzureBackup/Commands.AzureBackup/ChangeLog.md

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

22+
## Version 4.0.10
23+
* Fixed issue with default resource groups not being set.
24+
* Updated common runtime assemblies
25+
2226
## Version 4.0.9
2327
* Fixed issue with default resource groups not being set.
2428

src/ResourceManager/AzureBackup/Commands.AzureBackup/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
[assembly: ComVisible(false)]
3232
[assembly: CLSCompliant(false)]
3333

34-
[assembly: AssemblyVersion("4.0.9")]
35-
[assembly: AssemblyFileVersion("4.0.9")]
34+
[assembly: AssemblyVersion("4.0.10")]
35+
[assembly: AssemblyFileVersion("4.0.10")]

0 commit comments

Comments
 (0)