Skip to content

Commit 0d92b81

Browse files
authored
Merge pull request #4956 from cormacpayne/fix-assemblies
Add missing assemblies to psd1 files
2 parents da99595 + 4f90ebe commit 0d92b81

File tree

72 files changed

+365
-379
lines changed

Some content is hidden

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

72 files changed

+365
-379
lines changed

ChangeLog.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
## 2017.11.8 - Version 5.0.0
1+
## 2017.11.10 Version 5.0.1
2+
* Fixed assembly loading issue that caused some cmdlets to fail when executing in the following modules:
3+
- AzureRM.ApiManagement
4+
- AzureRM.Backup
5+
- AzureRM.Batch
6+
- AzureRM.Compute
7+
- AzureRM.DataFactories
8+
- AzureRM.HDInsight
9+
- AzureRM.KeyVault
10+
- AzureRM.RecoveryServices
11+
- AzureRM.RecoveryServices.Backup
12+
- AzureRM.RecoveryServices.SiteRecovery
13+
- AzureRM.RedisCache
14+
- AzureRM.SiteRecovery
15+
- AzureRM.Sql
16+
- AzureRM.Storage
17+
- AzureRM.StreamAnalytics
18+
19+
## 2017.11.8 - Version 5.0.0
220
* 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.
321
* All cmdlets in AzureRM now support online help
422
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser

setup/azurecmdfiles.wxi

Lines changed: 116 additions & 0 deletions
Large diffs are not rendered by default.

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '5.0.0'
15+
ModuleVersion = '5.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -59,7 +59,8 @@ RequiredAssemblies = '.\AutoMapper.dll',
5959
'.\Microsoft.Data.Edm.dll',
6060
'.\Microsoft.Data.OData.dll',
6161
'.\Microsoft.Data.Services.Client.dll',
62-
'.\Microsoft.WindowsAzure.Storage.dll'
62+
'.\Microsoft.WindowsAzure.Storage.dll',
63+
'.\System.Spatial.dll'
6364

6465
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6566
# ScriptsToProcess = @()
@@ -189,16 +190,7 @@ PrivateData = @{
189190
# IconUri = ''
190191

191192
# ReleaseNotes of this module
192-
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.
193-
* Breaking Changes in Cmdlet to Manage Api Management Users
194-
- New-AzureRmApiManagementUser Parameter `Password` is changed from String to SecureString
195-
- Set-AzureRmApiManagementBackend Parameter `Password` is changed from String to SecureString
196-
* Breaking Changes in Cmdlet to Create Backend Proxy Object
197-
- New-AzureRmApiManagementBackendProxy Parameter `Password` and `UserName` have been replaced with `ProxyCredentials` of type PSCredential
198-
* Updated Cmdlet Get-AzureRmApiManagementUser to fix issue https://github.com/Azure/azure-powershell/issues/4510
199-
* Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path https://github.com/Azure/azure-powershell/issues/4069
200-
* Add support for online help
201-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
193+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
202194

203195
# External dependent modules of this module
204196
# ExternalModuleDependencies = ''

src/ResourceManager/ApiManagement/ChangeLog.md

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

22+
## Version 5.0.1
23+
* Fixed assembly loading issue that caused some cmdlets to fail when executing
24+
2225
## Version 5.0.0
2326
* 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.
2427
* Breaking Changes in Cmdlet to Manage Api Management Users

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("5.0.0")]
46-
[assembly: AssemblyFileVersion("5.0.0")]
45+
[assembly: AssemblyVersion("5.0.1")]
46+
[assembly: AssemblyFileVersion("5.0.1")]

src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/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("5.0.0")]
45-
[assembly: AssemblyFileVersion("5.0.0")]
44+
[assembly: AssemblyVersion("5.0.1")]
45+
[assembly: AssemblyFileVersion("5.0.1")]

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("5.0.0")]
45-
[assembly: AssemblyFileVersion("5.0.0")]
44+
[assembly: AssemblyVersion("5.0.1")]
45+
[assembly: AssemblyFileVersion("5.0.1")]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
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("5.0.0")]
46-
[assembly: AssemblyFileVersion("5.0.0")]
45+
[assembly: AssemblyVersion("5.0.1")]
46+
[assembly: AssemblyFileVersion("5.0.1")]
4747
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/AzureBackup/AzureRM.Backup.psd1

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0'
15+
ModuleVersion = '4.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -54,7 +54,10 @@ CLRVersion = '4.0'
5454
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
57-
RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll'
57+
RequiredAssemblies = '.\Microsoft.Azure.Management.BackupServicesManagement.dll',
58+
'.\Microsoft.WindowsAzure.Management.Common.dll',
59+
'.\Microsoft.WindowsAzure.Management.Scheduler.dll',
60+
'.\Security.Cryptography.dll'
5861

5962
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6063
# ScriptsToProcess = @()
@@ -122,8 +125,7 @@ PrivateData = @{
122125
# IconUri = ''
123126

124127
# ReleaseNotes of this module
125-
ReleaseNotes = '* Add support for online help
126-
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser'
128+
ReleaseNotes = '* Fixed assembly loading issue that caused some cmdlets to fail when executing'
127129

128130
# External dependent modules of this module
129131
# ExternalModuleDependencies = ''

src/ResourceManager/AzureBackup/ChangeLog.md

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

22+
## Version 4.0.1
23+
* Fixed assembly loading issue that caused some cmdlets to fail when executing
24+
2225
## Version 4.0.0
2326
* Add support for online help
2427
- Run Get-Help with the -Online parameter to open the online help in your default Internet browser

0 commit comments

Comments
 (0)