Releases: AtlassianPS/JiraPS
Releases · AtlassianPS/JiraPS
v2.1.0.87
v2.1.0.84
JiraPS v2.1.0
CHANGELOG
FEATURES:
Get-JiraIssueEditMetadata
: Returns metadata required to create an issue in JIRA (#65, @lipkau)Get-JiraRemoteLink
: Returns a remote link from a JIRA issue (#80, @lipkau)Remove-JiraRemoteLink
: Removes a remote link from a JIRA issue (#80, @lipkau)Get-JiraComponent
: Returns a Component from JIRA (#68, @axxelG)Add-JiraIssueWorklog
: Add worklog items to an issue (#83, @jkknorr)- Added support for getting and managing Issue Watchers (
Add-JiraIssueWatcher
,Get-JiraIssueWatcher
,Remove-JiraIssueWatcher
) (#73, @ebekker) - Added IssueLink functionality (
Add-JiraIssueLink
,Get-JiraIssueLink
,Get-JiraIssueLinkType
,Remove-JiraIssueLink
) (#131, @lipkau)
IMPROVEMENTS:
New-JiraIssue
: Description and Priority are no longer mandatory (#53, @brianbunke)- Added property
Components
toPSjira.Project
(#68, @axxelG) Invoke-JiraIssueTransition
: add support for parameters Fields, Comment and Assignee (#38, @padgers)New-JiraIssue
: support parameter FixVersion (#103, @Dejulia489)Set-JiraIssue
: support parameter FixVersion (#103, @Dejulia489)- Respect the global
$PSDefaultParameterValues
inside the module (#110, @lipkau) New-JiraSession
: Display warning when login needs CAPTCHA (#111, @lipkau)- Switched to Basic Authentication when generating the session (#116, @lipkau)
- Added more tests for the CI (#142, @lipkau)
BUG FIXES:
Invoke-JiraMethod
: Error when Invoke-WebRequest returns '204 No content' (#42, @colhal)Invoke-JiraIssueTransition
: Error when Invoke-WebRequest returns '204 No content' (#43, @colhal)Set-JiraIssueLabel
: Forced label property to be an array (#88, @kittholland)Invoke-JiraMethod
: Send ContentType as Parameter instead of in the Header (#121, @lukhase)
JiraPS v2.0.0
Changes to the code module
- Move module to organization
AtlassianPS
- Rename of the module to
JiraPS
breaking change - Rename of module's custom objects to
JiraPS.*
breaking change
PSJira v1.2.5
IMPROVEMENTS:
- New-JiraIssue: Priority and Description are no longer mandatory (#24, @lipkau)
- New-JiraIssue: Added -Parent parameter for sub-tasks (#29, @ebekker)
BUG FIXES:
- ConvertTo-JiraProject: updated for Atlassian's minor wording change of projectCategory (#31, @alexsuslin)
- Invoke-JiraMethod: now uses the -ContentType parameter instead of manually passing the Content-Type header (#19)
- New-JiraIssue: able to create issues without labels again (#21)
- Set-JiraIssue: fixed issue with JSON depth for custom parameters (#17, @ThePSAdmin)
- Various: Fixed issues with ConvertFrom-Json max length with a custom ConvertFrom-Json2 function (#23, @LiamLeane)
PSJira v1.2.4
PSJira v1.2.1
Improvements
- Get-JiraIssueCreateMetadata: changed output type from a generic PSCustomObject to new type PSJira.CreateMetaField
- Get-JiraIssueCreateMetadata: now returns additional properties for field metadata, such as AllowedValues
PSJira v1.2.0
Features
- Get-JiraFilter: get a reference to a JIRA filter, including its JQL and owner
Improvements
- Get-JiraIssue: now supports a -Filter parameter to obtain all issues matching a given filter object or ID
PSJira v1.1.1
Set-JiraIssue now supports the -Fields parameter for modifying additional (and custom) fields on an issue.
v1.1
User management is here. Add and remove JIRA users and groups, and modify group memberships.
New-JiraUser userFoo
Add-JiraGroupMember -Group 'Admins' -User userFoo
Bugfixes:
- PSJira.User: ToString() now works correctly
- Several fixes and improvements to Pester tests (more to come)