Viscalyx.Common.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule           = 'Viscalyx.Common.psm1'

    # Version number of this module.
    ModuleVersion        = '0.7.1'

    # ID used to uniquely identify this module
    GUID                 = 'aba638ad-a584-4234-8eaa-48691b21be2f'

    # Author of this module
    Author               = 'Viscalyx' # cSpell: ignore Viscalyx

    # Company or vendor of this module
    CompanyName          = 'Viscalyx'

    # Copyright statement for this module
    Copyright            = 'Copyright the Viscalyx.Common contributors. All rights reserved.'

    # Description of the functionality provided by this module
    Description          = 'Common commands that adds or improves functionality in various scenarios.'

    # Minimum version of the PowerShell engine required by this module
    PowerShellVersion    = '5.1'

    # Modules that must be imported into the global environment prior to importing this module
    RequiredModules      = @()

    # Functions 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 functions to export.
    FunctionsToExport    = @('Assert-GitLocalChange','Assert-GitRemote','Assert-IPv4Address','Clear-AnsiSequence','ConvertTo-AnsiSequence','ConvertTo-AnsiString','ConvertTo-DifferenceString','ConvertTo-RelativePath','Disable-CursorShortcutCode','Get-ClassAst','Get-ClassResourceAst','Get-GitBranchCommit','Get-GitLocalBranchName','Get-GitRemote','Get-GitRemoteBranch','Get-GitTag','Get-LinkLayerAddress','Get-ModuleByVersion','Get-ModuleFileSha','Get-ModuleVersion','Get-NumericalSequence','Get-PSReadLineHistory','Get-TextOffset','Install-ModulePatch','Invoke-Git','Invoke-PesterJob','New-GitTag','New-SamplerGitHubReleaseTag','Out-Difference','Pop-VMLatestSnapshot','Push-GitTag','Receive-GitBranch','Remove-GitTag','Remove-History','Remove-PSHistory','Remove-PSReadLineHistory','Rename-GitLocalBranch','Rename-GitRemote','Request-GitTag','Resolve-DnsName','Resume-GitRebase','Send-WakeOnLan','Split-StringAtIndex','Start-GitRebase','Stop-GitRebase','Switch-GitLocalBranch','Test-FileHash','Test-GitLocalChanges','Test-GitRemote','Test-GitRemoteBranch','Test-IPv4Address','Update-GitLocalBranch','Update-RemoteTrackingBranch')

    # 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.
    CmdletsToExport      = @()

    # Variables to export from this module
    VariablesToExport    = @()

    # Aliases 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 aliases to export.
    AliasesToExport      = @('Get-MacAddress','ipj','Send-WOL')

    # DSC resources to export from this module
    DscResourcesToExport = @()

    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData          = @{
        PSData = @{
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags         = @('Common', 'Utility', 'Pester', 'PSReadLine', 'Sampler')

            # A URL to the license for this module.
            LicenseUri   = 'https://github.com/viscalyx/Viscalyx.Common/blob/main/LICENSE'

            # A URL to the main website for this project.
            ProjectUri   = 'https://github.com/viscalyx/Viscalyx.Common'

            # A URL to an icon representing this module.
            IconUri      = 'https://avatars.githubusercontent.com/u/53994072'

            # ReleaseNotes of this module
            ReleaseNotes = '## [0.7.1-preview0001] - 2026-07-06

### Changed

- Bump action codeql-action/upload-sarif to v4
- Bump action checkout to v7
- `Invoke-PesterJob`
  - Check for existing Pester module before importing.
  - Support using Pester even if there is no build script.

### Fixed

- `Invoke-PesterJob`
  - Make sure loop stops after first attempt of running build script to avoid
    infinite loop when build script fails to install Pester module.

'


            # Prerelease string of this module
            Prerelease   = 'preview0001'
        } # End of PSData hashtable
    } # End of PrivateData hashtable
}