SecretManagement.KeePass.psd1
# # Module manifest for module 'SecretsManagement.KeePass' # # Generated by: jgrote # # Generated on: 2/10/2020 # @{ # Script module or binary module file associated with this manifest. RootModule = 'SecretManagement.KeePass.psm1' # Version number of this module. ModuleVersion = '0.9.3' # Supported PSEditions CompatiblePSEditions = @('Desktop','Core') # ID used to uniquely identify this module GUID = '14f945da-777e-4f2b-9c79-b59287d19478' # Author of this module Author = 'Justin Grote' # Copyright statement for this module Copyright = '(c) 2021 Justin Grote. All rights reserved.' # Description of the functionality provided by this module Description = 'A cross-platform Keepass Secret Management vault extension. See the README.MD in the module for more details.' # Modules that must be imported into the global environment prior to importing this module NestedModules = @( './SecretManagement.KeePass.Extension/SecretManagement.KeePass.Extension.psd1' ) RequiredModules = @( @{ModuleName = 'Microsoft.Powershell.SecretManagement'; ModuleVersion = '1.1.0' }, @{ModuleName = 'PSFramework'; ModuleVersion = '1.6.205' } ) PowershellVersion = '5.1' FunctionsToExport = @('Register-KeePassSecretVault','Unlock-KeePassSecretVault') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = 'SecretManagement', 'KeePass', 'SecretVault', 'Vault', 'Secret' ProjectUri = 'https://www.github.com/JustinGrote/SecretManagement.KeePass' IconUri = 'https://raw.githubusercontent.com/JustinGrote/SecretManagement.KeePass/main/images/Logo.png' Prerelease = 'beta0001' ReleaseNotes = '## [0.9.3-beta0001] - 2021-08-27 ### Minor Updates and Bug Fixes - 🧪 Move test files to central folder & Support updating entries with recycled sibling (#61) * -Moved all test-files to the Tests folder * -Test files all moved to the main Tests-Folder -Adjusted path references * Added hint that Test will fail under Windows Powershell 5.1 if the localization is not en-US * Adjusted Test-Path * Removed the removal of the extensions Tests folder as this does not exist anymore * -Refined some Logging -Added Test ''Should ignore recycle bin on update of an existing entry with Set-Secret'' to SecretManagement.KeePass/Tests/SecretManagementVault.Tests.ps1 -Implemented "ignore recycle bin on update of an existing entry with Set-Secret" based on the vault settings (see https://github.com/JustinGrote/SecretManagement.KeePass/issues/37#issuecomment-904227201) * Errorhandling adjusted in Pester test if Get-Secret does not find an entry.' } } } |