Skip to content

Releases: AtlassianPS/JiraPS

v2.1.0.87

04 Jul 09:55
Compare
Choose a tag to compare
Fix typo

v2.1.0.84

04 Jul 09:26
Compare
Choose a tag to compare
Fix Github deployment

JiraPS v2.1.0

28 Jun 11:55
Compare
Choose a tag to compare

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 to PSjira.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

28 Jun 11:47
Compare
Choose a tag to compare

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

21 Aug 06:10
Compare
Choose a tag to compare

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

10 Dec 20:53
Compare
Choose a tag to compare

Improvements:

  • Get-JiraGroupMember: now returns all members by default, with support for -MaxResults and -StartIndex parameters (#14)
  • Get-JiraIssue: significantly increased performance (#12)

Bug Fixes:

  • Get-JiraIssue: fixed issue where Get-JiraIssue would only return one result when using -Filter parameter in some cases (#15)
  • Invoke-JiraIssueTransition: fixed -Credential parameter (#13)

PSJira v1.2.1

26 Oct 15:17
Compare
Choose a tag to compare

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

16 Oct 20:30
Compare
Choose a tag to compare

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

08 Oct 23:10
Compare
Choose a tag to compare

Set-JiraIssue now supports the -Fields parameter for modifying additional (and custom) fields on an issue.

v1.1

18 Sep 04:17
Compare
Choose a tag to compare

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)