Skip to content

Commit 377fcd7

Browse files
authored
Merge pull request #6248 from cormacpayne/release-6.1.0
[6.1.0] Update module versions for release
2 parents cc85084 + b22be8f commit 377fcd7

File tree

128 files changed

+61754
-35936
lines changed

Some content is hidden

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

128 files changed

+61754
-35936
lines changed

ChangeLog.md

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,66 @@
1-
## 6.0.0 - May 2018
1+
## 6.1.0 - May 2018
2+
#### AzureRM.Profile
3+
* Fix issue where running 'Clear-AzureRmContext' would keep an empty context with the name of the previous default context, which prevented the user from creating a new context with the old name
4+
5+
#### AzureRM.AnalysisServices
6+
* Enable Gateway assocaite/disassociate operations on AS.
7+
8+
#### AzureRM.ApiManagement
9+
* Added support for ApiVersions, ApiReleases and ApiRevisions
10+
* Added suppport for ServiceFabric Backend
11+
* Added support for Application Insights Logger
12+
* Added support for recognizing 'Basic' sku as a valid sku of Api Management service
13+
* Added support for installing Certificates issued by private CA as Root or CA
14+
* Added support for accepting Custom SSL certificates via KeyVault and Multiple proxy hostnames
15+
* Added support for MSI identity
16+
* Added support for accepting Policies via Url
17+
NOTE: The following cmdlets will be deprecated in future release
18+
- Import-AzureRmApiManagementHostnameCertificate
19+
- New-AzureRmApiManagementHostnameConfiguration
20+
- Set-AzureRmApiManagementHostnames
21+
- Update-AzureRmApiManagementDeployment
22+
23+
#### AzureRM.Batch
24+
* Release new cmdlet Get-AzureBatchPoolNodeCounts
25+
* Release new cmdlet Start-AzureBatchComputeNodeServiceLogUpload
26+
27+
#### AzureRM.Consumption
28+
* Add new parameters Expand, ResourceGroup, InstanceName, InstanceId, Tags, and Top on Cmdlet Get-AzureRmConsumptionUsageDetail
29+
30+
#### AzureRM.DataLakeStore
31+
* Fix example for Export-AzureRmDataLakeStoreChildItemProperties
32+
* Fix null parameter exception for Recurse case in Set-AzureRmDataLakeStoreItemAclEntry
33+
* Fix the help files for Set-AzureRmDataLakeStoreItemAclEntry, Set-AzureRmDataLakeStoreItemAcl, Remove-AzureRmDataLakeStoreItemAclEntry
34+
35+
#### AzureRM.Network
36+
* Bump up Network SDK version from 18.0.0-preview to 19.0.0-preview
37+
* Added cmdlet to create protocol configuration
38+
- New-AzureRmNetworkWatcherProtocolConfiguration
39+
* Added cmdlet to add a new circuit connection to an existing express route circuit.
40+
- Add-AzureRmExpressRouteCircuitConnectionConfig
41+
* Added cmdlet to remove a circuit connection from an existing express route circuit.
42+
- Remove-AzureRmExpressRouteCircuitConnectionConfig
43+
* Added cmdlet to retrieve a circuit connection
44+
- Get-AzureRmExpressRouteCircuitConnectionConfig
45+
46+
#### AzureRM.ServiceFabric
47+
* Fixed server authentication usage with generated certificates (Issue #5998)
48+
49+
#### AzureRM.Sql
50+
* Updated Auditing cmdlets to allow removing AuditActions or AuditActionGroups
51+
* Fixed issue with Set-AzureRmSqlDatabaseBackupLongTermRetentionPolicy when setting a new flexible retention policy where the command would fail with 'Configure long term retention policy with azure recovery service vault and policy is no longer supported. Please submit request with the new flexible retention policy'.
52+
* Update all Azure Sql Database/ElasticPool Creation/Update related cmdlets to use the new Database API, which support Sku property for scale and tier-related properties.
53+
* The updated cmdlets including:
54+
- New-AzureRmSqlDatabase; Set-AzureRmSqlDatabase
55+
- New-AzureRmSqlElasticPool; Set-AzureRmSqlElasticPool
56+
- New-AzureRmSqlDatabaseCopy
57+
- New-AzureRmSqlDatabaseSecondary
58+
- Restore-AzureRmSqlDatabase
59+
60+
#### AzureRM.TrafficManager
61+
* Update the parameters for 'Get-AzureRmTrafficManagerProfile' so that -ResourceGroupName parameter is required when using -Name parameter.
62+
63+
## 6.0.0 - May 2018
264
#### General
365
* Set minimum dependency of modules to PowerShell 5.0
466

src/ResourceManager/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.0.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
5555

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

src/ResourceManager/AnalysisServices/AzureRM.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: 4/24/2018
6+
# Generated on: 5/17/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '0.6.7'
15+
ModuleVersion = '0.6.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.0.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
5555

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

118118
# ReleaseNotes of this module
119-
ReleaseNotes = '* Set minimum dependency of module to PowerShell 5.0'
119+
ReleaseNotes = '* Enable Gateway assocaite/disassociate operations on AS.'
120120

121121
# Prerelease string of this module
122122
# Prerelease = ''

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.6.8
2123
* Enable Gateway assocaite/disassociate operations on AS.
2224

2325
## Version 0.6.7

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ CLRVersion='4.0'
4848
ProcessorArchitecture = 'None'
4949

5050
# Modules that must be imported into the global environment prior to importing this module
51-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.0.0'; })
51+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
5252

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

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.7")]
38-
[assembly: AssemblyFileVersion("0.6.7")]
37+
[assembly: AssemblyVersion("0.6.8")]
38+
[assembly: AssemblyFileVersion("0.6.8")]

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 48 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 4/24/2018
6+
# Generated on: 5/17/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '6.0.0'
15+
ModuleVersion = '6.1.0'
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.0.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\AutoMapper.dll',
@@ -79,65 +79,57 @@ FunctionsToExport = @()
7979
# 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.
8080
CmdletsToExport = 'Add-AzureRmApiManagementRegion',
8181
'Get-AzureRmApiManagementSsoToken',
82-
'New-AzureRmApiManagementHostnameConfiguration',
83-
'New-AzureRmApiManagementCustomHostnameConfiguration',
84-
'New-AzureRmApiManagementSystemCertificate',
85-
'New-AzureRmApiManagementRegion',
86-
'New-AzureRmApiManagementVirtualNetwork',
87-
'Remove-AzureRmApiManagementRegion',
82+
'New-AzureRmApiManagementHostnameConfiguration',
83+
'New-AzureRmApiManagementCustomHostnameConfiguration',
84+
'New-AzureRmApiManagementSystemCertificate',
85+
'New-AzureRmApiManagementRegion',
86+
'New-AzureRmApiManagementVirtualNetwork',
87+
'Remove-AzureRmApiManagementRegion',
8888
'Set-AzureRmApiManagementHostnames',
8989
'Update-AzureRmApiManagementDeployment',
9090
'Update-AzureRmApiManagementRegion',
9191
'Import-AzureRmApiManagementHostnameCertificate',
92-
'Backup-AzureRmApiManagement',
93-
'Get-AzureRmApiManagement',
94-
'New-AzureRmApiManagement',
95-
'Remove-AzureRmApiManagement',
92+
'Backup-AzureRmApiManagement', 'Get-AzureRmApiManagement',
93+
'New-AzureRmApiManagement', 'Remove-AzureRmApiManagement',
9694
'Restore-AzureRmApiManagement',
9795
'Add-AzureRmApiManagementApiToProduct',
9896
'Add-AzureRmApiManagementProductToGroup',
9997
'Add-AzureRmApiManagementUserToGroup',
100-
'Export-AzureRmApiManagementApi',
101-
'Get-AzureRmApiManagementApi',
102-
'Get-AzureRmApiManagementApiRelease',
103-
'Get-AzureRmApiManagementApiRevision',
104-
'Get-AzureRmApiManagementApiVersionSet',
98+
'Export-AzureRmApiManagementApi', 'Get-AzureRmApiManagementApi',
99+
'Get-AzureRmApiManagementApiRelease',
100+
'Get-AzureRmApiManagementApiRevision',
101+
'Get-AzureRmApiManagementApiVersionSet',
105102
'Get-AzureRmApiManagementAuthorizationServer',
106103
'Get-AzureRmApiManagementCertificate',
107-
'Get-AzureRmApiManagementGroup',
108-
'Get-AzureRmApiManagementLogger',
104+
'Get-AzureRmApiManagementGroup', 'Get-AzureRmApiManagementLogger',
109105
'Get-AzureRmApiManagementOpenIdConnectProvider',
110106
'Get-AzureRmApiManagementOperation',
111-
'Get-AzureRmApiManagementPolicy',
112-
'Get-AzureRmApiManagementProduct',
107+
'Get-AzureRmApiManagementPolicy', 'Get-AzureRmApiManagementProduct',
113108
'Get-AzureRmApiManagementProperty',
114109
'Get-AzureRmApiManagementSubscription',
115110
'Get-AzureRmApiManagementTenantSyncState',
116111
'Get-AzureRmApiManagementUser',
117112
'Get-AzureRmApiManagementUserSsoUrl',
118113
'Get-AzureRmApiManagementTenantAccess',
119114
'Get-AzureRmApiManagementTenantGitAccess',
120-
'Import-AzureRmApiManagementApi',
121-
'New-AzureRmApiManagementApi',
122-
'New-AzureRmApiManagementApiRevision',
123-
'New-AzureRmApiManagementApiRelease',
124-
'New-AzureRmApiManagementApiVersionSet',
115+
'Import-AzureRmApiManagementApi', 'New-AzureRmApiManagementApi',
116+
'New-AzureRmApiManagementApiRevision',
117+
'New-AzureRmApiManagementApiRelease',
118+
'New-AzureRmApiManagementApiVersionSet',
125119
'New-AzureRmApiManagementAuthorizationServer',
126120
'New-AzureRmApiManagementCertificate',
127-
'New-AzureRmApiManagementContext',
128-
'New-AzureRmApiManagementGroup',
121+
'New-AzureRmApiManagementContext', 'New-AzureRmApiManagementGroup',
129122
'New-AzureRmApiManagementLogger',
130123
'New-AzureRmApiManagementOpenIdConnectProvider',
131124
'New-AzureRmApiManagementOperation',
132125
'New-AzureRmApiManagementProduct',
133-
'New-AzureRmApiManagementSubscription',
134-
'New-AzureRmApiManagementBackendServiceFabric',
135-
'New-AzureRmApiManagementUser',
136-
'New-AzureRmApiManagementProperty',
126+
'New-AzureRmApiManagementSubscription',
127+
'New-AzureRmApiManagementBackendServiceFabric',
128+
'New-AzureRmApiManagementUser', 'New-AzureRmApiManagementProperty',
137129
'Publish-AzureRmApiManagementTenantGitConfiguration',
138-
'Remove-AzureRmApiManagementApi',
139-
'Remove-AzureRmApiManagementApiRelease',
140-
'Remove-AzureRmApiManagementApiRevision',
130+
'Remove-AzureRmApiManagementApi',
131+
'Remove-AzureRmApiManagementApiRelease',
132+
'Remove-AzureRmApiManagementApiRevision',
141133
'Remove-AzureRmApiManagementApiVersionSet',
142134
'Remove-AzureRmApiManagementApiFromProduct',
143135
'Remove-AzureRmApiManagementAuthorizationServer',
@@ -153,20 +145,17 @@ CmdletsToExport = 'Add-AzureRmApiManagementRegion',
153145
'Remove-AzureRmApiManagementSubscription',
154146
'Remove-AzureRmApiManagementUser',
155147
'Remove-AzureRmApiManagementUserFromGroup',
156-
'Save-AzureRmApiManagementTenantGitConfiguration',
157-
'Set-AzureRmApiManagement',
158-
'Set-AzureRmApiManagementApi',
159-
'Update-AzureRmApiManagementApiRelease',
160-
'Set-AzureRmApiManagementApiRevision',
161-
'Set-AzureRmApiManagementApiVersionSet',
148+
'Save-AzureRmApiManagementTenantGitConfiguration',
149+
'Set-AzureRmApiManagement', 'Set-AzureRmApiManagementApi',
150+
'Update-AzureRmApiManagementApiRelease',
151+
'Set-AzureRmApiManagementApiRevision',
152+
'Set-AzureRmApiManagementApiVersionSet',
162153
'Set-AzureRmApiManagementAuthorizationServer',
163154
'Set-AzureRmApiManagementCertificate',
164-
'Set-AzureRmApiManagementGroup',
165-
'Set-AzureRmApiManagementLogger',
155+
'Set-AzureRmApiManagementGroup', 'Set-AzureRmApiManagementLogger',
166156
'Set-AzureRmApiManagementOpenIdConnectProvider',
167157
'Set-AzureRmApiManagementOperation',
168-
'Set-AzureRmApiManagementPolicy',
169-
'Set-AzureRmApiManagementProduct',
158+
'Set-AzureRmApiManagementPolicy', 'Set-AzureRmApiManagementProduct',
170159
'Set-AzureRmApiManagementProperty',
171160
'Set-AzureRmApiManagementSubscription',
172161
'Set-AzureRmApiManagementUser',
@@ -215,9 +204,19 @@ PrivateData = @{
215204
# IconUri = ''
216205

217206
# ReleaseNotes of this module
218-
ReleaseNotes = '* Set minimum dependency of module to PowerShell 5.0
219-
* Introduce multiple breaking changes
220-
- Please refer to the migration guide for more information'
207+
ReleaseNotes = '* Added support for ApiVersions, ApiReleases and ApiRevisions
208+
* Added suppport for ServiceFabric Backend
209+
* Added support for Application Insights Logger
210+
* Added support for recognizing ''Basic'' sku as a valid sku of Api Management service
211+
* Added support for installing Certificates issued by private CA as Root or CA
212+
* Added support for accepting Custom SSL certificates via KeyVault and Multiple proxy hostnames
213+
* Added support for MSI identity
214+
* Added support for accepting Policies via Url
215+
NOTE: The following cmdlets will be deprecated in future release
216+
- Import-AzureRmApiManagementHostnameCertificate
217+
- New-AzureRmApiManagementHostnameConfiguration
218+
- Set-AzureRmApiManagementHostnames
219+
- Update-AzureRmApiManagementDeployment'
221220

222221
# Prerelease string of this module
223222
# Prerelease = ''

src/ResourceManager/ApiManagement/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 6.1.0
2123
* Added support for ApiVersions, ApiReleases and ApiRevisions
2224
* Added suppport for ServiceFabric Backend
2325
* Added support for Application Insights Logger

src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/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("6.0.0")]
46-
[assembly: AssemblyFileVersion("6.0.0")]
45+
[assembly: AssemblyVersion("6.1.0")]
46+
[assembly: AssemblyFileVersion("6.1.0")]

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.0.0")]
45-
[assembly: AssemblyFileVersion("6.0.0")]
44+
[assembly: AssemblyVersion("6.1.0")]
45+
[assembly: AssemblyFileVersion("6.1.0")]

0 commit comments

Comments
 (0)