PSDevOps.psd1
@{ ModuleVersion = '0.5.2' RootModule = 'PSDevOps.psm1' Description = 'PowerShell Tools for DevOps' Guid = 'e6b56c5f-41ac-4ba4-8b88-2c063f683176' PrivateData = @{ PSData = @{ Tags = 'ADO', 'AzureDevOps', 'PSDevOps', 'DevOps' ProjectURI = 'https://github.com/StartAutomating/PSDevOps' LicenseURI = 'https://github.com/StartAutomating/PSDevOps/blob/master/LICENSE' ReleaseNotes = @' 0.5.2 --- * Get-ADOTeam: Adding alias -AreaPath for -TeamFieldValue, carrying on team property * Set-ADOTeam: Support for -DefaultAreaPath/-AreaPath (TeamFieldValues api, fixing issue #92) * Get-ADOTest: Enabling pagination and filtering of results. ** Invoke-ADORestAPI: Fixing -Cache(ing) correctly (#88) ** Invoke-GitHubRESTAPI: Only using .ContentEncoding if present in results (PowerShell core fix) * Get-ADOWorkItem: ** Fixing -Related (#79) ** Fixing -Comment errors when there are no commments (#80) * New/Set-ADOWorkItem: ** Adding -Relationship and -Comment (#81) ** Improving Formatting of Work Items (#82) ** Adding -Tag * Invoke-ADORestAPI: Fixing issue with -QueryParameter 0.5.1 --- * Bugfixes: ** Get-ADOTest: Fixing parameter sets and adding formatting. ** Invoke-GitHubRESTAPI: Only using .ContentEncoding when present. 0.5 --- * Improved Git Functionality ** New-GitHubAction ** Invoke-GitHubRESTApi ** Connect/Disconnect-GitHub (enabling smart aliases like api.github.com/zen and api.github.com/repos/<owner>/<repo>) ** Formatting for GitHub Issues and Repos * Azure DevOps Additions/Fixes ** Invoke-ADORestAPI -AsJob ** Get-ADOArtifactFeed now has -Metric, -PackageList, -PackageVersionList, -Provenance ** Get-ADOIdentity [new] ** Get-ADOProject now has -Board, -TestVariable, -TestConfiguration ** Get-ADOPermission is now more API-complete and has parameter sets for permission types ** Set-ADOPermission ** Get-ADOExtension can now read extension data ** Set-ADOExtension can now set extension data ** Get-ADOTest [new] ** New-ADOPipeline now has -RootDirectory ** Tons of New Type Definitions and Formatters 0.4.9 --- * New Command: Wait-ADOBuild * Start-ADOBuild ** Supports -Debug (to start a build with extra tracing) ** Allows parameters as PSObject * Get-ADORepository: Added -IncludeHidden, -IncludeRemoteURL, -IncludeLink * Improvements to Pipelines and Workflows: ** Pester, PSScriptAnalyzer, and ScriptCop now produce output variables ** PSDevOps now includes a file to generate it's own build ** PublishTest/CodeCoverage Results steps will always() run ** Convert-BuildStep will add a .Name to each script step. 0.4.8 --- * Improved Tracing ** New Commands: Write-ADOOutput, Trace-ADOCommand/GitHubCommand ** Renaming Command / Adding Parameters: Set-ADOVariable -> Write-ADOVariable. Added -IsOutput & -IsReadOnly. ** Adding Trace-GitHubCommand/ADOCommand ** Improved logging of parameters in Convert-BuildStep * New Functionality in Azure DevOps: ** Get-ADOProject now has -TestRun, -TestPlan, -Release, and -PendingApproval (and better progress bars) ** Get-ADOWorkItemType now has -Field ** Commands for Picklists: Add/Get/Remove/Update-ADOPicklist 0.4.7 ---- * New Commands: ** Add/Get/Remove-ADOWiki ** Get-ADOPermission * Bugfixes: ** Honoring Get-ADOBuild -DefinitionName * Disconnect-ADO is now run prior at the start of Connect-ADO, and on module unload. 0.4.6 --- * New-ADOPipeline/New-GitHubWorkflow: Adding -BuildScript * Connect-ADO: Auto-detecting connected user's teams and adding tab completion for -Project/-ProjectID/-Team/-TeamID * Convert-BuildStep: Re-ordering YAML for GitHub Workflows (putting .runs last) * Convert-ADOPipeline: Not returning .inputs when there are no .inputs * Get-ADOProject: Adding -PolicyType and -PolicyConfiguration * Get-ADORepository: Adding -PullRequest, -SourceReference, -TargetReference, -ReviewerIdentity, -CreatorIdentity. * Get-ADOBuild: Adding -DefinitionName * Invoke-ADORestAPI: Passing content length of 0 when body is empty. * Updating README '@ } Colors = @{ Build = @{ Succeeded = '#00ff00' Failed = '#ff0000' } } } FormatsToProcess = 'PSDevOps.format.ps1xml' TypesToProcess = 'PSDevOps.types.ps1xml' Author = 'James Brundage' Copyright = '2019 Start-Automating' PowerShellVersion ='3.0' } |