Modules/DscResource.Common/0.9.2/DscResource.Common.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'DscResource.Common.psm1' # Version number of this module. ModuleVersion = '0.9.2' # ID used to uniquely identify this module GUID = '9c9daa5b-5c00-472d-a588-c96e8e498450' # Author of this module Author = 'DSC Community' # Company or vendor of this module CompanyName = 'DSC Community' # Copyright statement for this module Copyright = 'Copyright the DSC Community contributors. All rights reserved.' # Description of the functionality provided by this module Description = 'Common functions used in DSC Resources' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '4.0' # 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-BoundParameter','Assert-IPAddress','Assert-Module','Compare-ResourcePropertyState','ConvertTo-CimInstance','ConvertTo-HashTable','Get-LocalizedData','Get-TemporaryFolder','New-InvalidArgumentException','New-InvalidDataException','New-InvalidOperationException','New-InvalidResultException','New-NotImplementedException','New-ObjectNotFoundException','Remove-CommonParameter','Set-DscMachineRebootRequired','Set-PSModulePath','Test-DscParameterState','Test-IsNanoServer') # 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 = @() # 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 = @('DSC', 'Localization') # A URL to the license for this module. LicenseUri = 'https://github.com/dsccommunity/DscResource.Common/blob/master/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/dsccommunity/DscResource.Common' # A URL to an icon representing this module. IconUri = 'https://dsccommunity.org/images/DSC_Logo_300p.png' # ReleaseNotes of this module ReleaseNotes = '## [0.9.2] - 2020-07-22 ### Added - `Test-DscParameterState` can now handle scriptblocks. The parameter ''ValuesToCheck'' was renamed to ''Properties'' but an alias was added so it is not a braking change. The parameter ''ExcludeProperties'' was added. - Added a new test for the alias ''ValuesToCheck'' pointing to ''Properties''. - Added cmdlet `Compare-ResourcePropertyState` that also introduces a new design pattern to evaluate properties in both _Test_ and _Set_ - fixes [issue #47](https://github.com/dsccommunity/DscResource.Common/issues/47). ## Fixed - `Get-LocalizedData` - Now correctly evaluates the default UI culture on non-English operating systems ([issue #50](https://github.com/dsccommunity/DscResource.Common/issues/50). - If the LCID 127 is found it will be skipped and instead use the default UI culture (which is `''en-US''` unless specified) ([issue #11](https://github.com/dsccommunity/DscResource.Common/issues/11). ' Prerelease = '' } # End of PSData hashtable } # End of PrivateData hashtable } |