From 2bd250971b4d3ad2c05c88b0dff27feaeb36b294 Mon Sep 17 00:00:00 2001 From: pinguinfuss Date: Mon, 10 Oct 2022 10:00:42 +0200 Subject: [PATCH] Fix optional module dependencies (#75) #### :book: Summary - Fix the optional dependencies. - DataONTAP was never a PSGallery module, and we have to custom build that. - NetApp finally submitted NetApp.ONTAP into PSGallery, so we can depend on that. - Updates UCS- and VMware-modules. #### :bookmark_tabs: Test Plan > :bulb: Select your test plan for the code changes. - [ ] Tested via Drone.io pipeline - [ ] Custom test - [x] No test plan ##### Details / Justification Sadly, you have to run it. The module loader does not have a unit test. #### :books: Additional Notes Co-authored-by: OCram85 Reviewed-on: https://gitea.ocram85.com/OCram85/PSCredentialStore/pulls/75 Reviewed-by: OCram85 Co-authored-by: pinguinfuss Co-committed-by: pinguinfuss --- src/PSCredentialStore.psd1 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/PSCredentialStore.psd1 b/src/PSCredentialStore.psd1 index efe91d9..c8ce1cf 100644 --- a/src/PSCredentialStore.psd1 +++ b/src/PSCredentialStore.psd1 @@ -146,27 +146,27 @@ ExternalModuleDependencies = @( @{ ModuleName = 'VMware.VimAutomation.Core' - ModuleVersion = '6.5.2.6234650' + ModuleVersion = '12.7.0.20091293' }, @{ ModuleName = 'VMware.VimAutomation.Cis.Core' - ModuleVersion = '6.5.4.6983166' + ModuleVersion = '12.6.0.19601368' }, @{ - ModuleName = 'Cisco.UCS.Core' - ModuleVersion = '2.3.1.5' + ModuleName = 'Cisco.UCS.Common' + ModuleVersion = '3.0.1.2' }, @{ ModuleName = 'Cisco.UCSManager' - ModuleVersion = '2.5.2.2' + ModuleVersion = '3.0.1.2' }, @{ ModuleName = 'WinSCP' ModuleVersion = '5.17.8.1' }, @{ - ModuleName = 'DataONTAP' - ModuleVersion = '9.7.1.1' + ModuleName = 'NetApp.ONTAP' + ModuleVersion = '9.10.1.2111' } )