AzureDevOpsDsc.psd1
@{ RootModule = 'AzureDevOpsDsc.psm1' # Version number of this module. moduleVersion = '0.2.0' # ID used to uniquely identify this module GUID = '3f8bbada-0fa9-4d80-b3d8-f019c3c60230' # 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 = 'Module with DSC Resources for deployment and configuration of Azure DevOps Server/Services.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.0' # Minimum version of the common language runtime (CLR) required by this module CLRVersion = '4.0' # Functions to export from this module FunctionsToExport = @() # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @() # Import all the 'DSCClassResource', modules as part of this module NestedModules = @() DscResourcesToExport = @('AzDevOpsProject') RequiredAssemblies = @() # 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 = @{ # Set to a prerelease string value if the release should be a prerelease. Prerelease = 'preview0001' # Tags applied to this module. These help with module discovery in online galleries. Tags = @('DesiredStateConfiguration', 'DSC', 'DSCResourceKit', 'DSCResource') # A URL to the license for this module. LicenseUri = 'https://github.com/dsccommunity/AzureDevOpsDsc/blob/main/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/dsccommunity/AzureDevOpsDsc' # A URL to an icon representing this module. IconUri = 'https://dsccommunity.org/images/DSC_Logo_300p.png' # ReleaseNotes of this module ReleaseNotes = '## [0.2.0-preview0001] - 2024-11-17 ### Added - AzureDevOpsDsc - Updated pipeline files to support change of default branch to main. - Added GitHub issue templates and pull request template ([issue #1](https://github.com/dsccommunity/AzureDevOpsDsc/issues/1)) - Added the `AzDevOpsProject`, DSC Resource - Fixed non-terminating, integration tests ([issue #18](https://github.com/dsccommunity/AzureDevOpsDsc/issues/18)) - Increased Azure DevOps, API timeout to 5 minutes to allow for busy/slow API operations ([issue #25](https://github.com/dsccommunity/AzureDevOpsDsc/issues/25)). - Updated contextual help ([issue #5](https://github.com/dsccommunity/AzureDevOpsDsc/issues/5)). - Removed `Classes` directory from being output in packaged module ([issue #10](https://github.com/dsccommunity/AzureDevOpsDsc/issues/10)). - Removed `Examples` directory from being output in packaged module ([issue #11](https://github.com/dsccommunity/AzureDevOpsDsc/issues/11)). - Moved ''Ensure'' and ''RequiredAction'' enums into ''Enum'' directory and out of ''prefix.ps1'' ([issue #12](https://github.com/dsccommunity/AzureDevOpsDsc/issues/12)). - Added pipeline support for publish markdown content to the GitHub repository wiki ([issue #15](https://github.com/dsccommunity/AzureDevOpsDsc/issues/15)). This will publish the markdown documentation that is generated bu the build pipeline. - Added new source folder `WikiSource`. Every markdown file in the folder `WikiSource` will be published to the GitHub repository wiki. The markdown file `Home.md` will be updated with the correct module version on each publish to gallery (including preview). - CodeCov integration. - AzureDevOpsDsc.Common - Added ''wrapper'' functionality around the [Azure DevOps REST API](https://docs.microsoft.com/en-us/rest/api/azure/devops/) ### Changed - AzureDevOpsDsc - Enabled integration tests against https://dev.azure.com/azuredevopsdsc/ (see comment https://github.com/dsccommunity/AzureDevOpsDsc/issues/9#issuecomment-766375424 for more information). - Updated pipeline file `RequiredModules.ps1` to latest pipeline pattern. - Updated pipeline file `build.yaml` to latest pipeline pattern. - Updated pipeline file `azure-pipelines.yml` to use correct images (hosted runners) and correct task for artifacts. - AzDevOpsProject - Added a validate set to the parameter `SourceControlType` to (for now) limit the parameter to the values `Git` and `Tfvc`. - Update comment-based help to remove text which the valid values are since that is now add automatically to the documentation (conceptual help and wiki documentation). - Repository Updates - Update repository files to latest versions. - Resolve-Dependency - build.yml - Sampler files - azure-pipelines ### Fixed - AzDevOpsProject - Added description to the comment-based help. ' } # End of PSData hashtable } # End of PrivateData hashtable } |