go-jira
go-jira copied to clipboard
Go client library for Atlassian Jira
# Description * **The What**: Added Bearer authentication example to the `examples/` directory and updated Readme to add Bearer (PAT's) to the list of support authentication schemes. * **The Why**:...
## Describe the bug I am abstracting the process of transitioning a Jira issue to a different state. When attempting to transition an issue from `Backlog` to `Ready`, the Jira...
I am able to successfully connect to My JIRA cloud and pulled in the details of an issue even transition is also happening of existing tickets. I am trying to...
# Description Please describe _what does this Pull Request fix or add?_. Information that is useful here: * **The What**: Add the names of response * **The Why**: During my...
Would it be possible to add Context support for HTTP requests please ?
I'm trying to implement Oauth authentification with our Jira cloud platform. I saw that OAuth1.0 is legacy and it's recommended to use Auth2.0 (https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-oauth-authentication/) Is this library supports OAuth2.0? and...
# Description * **The What**: Jira has support for [the Search API to be called via a POST request for long queries](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issue-search/#api-rest-api-2-search-post) that would be too long for the URL...
# Description For our current implementation against jira we decided to use this module, but it lacks some requests we need which we would like to contribute in this and...
# Description Adds the optional Goal field to the Sprint Struct ## Example: ```go // Example code sprints, _, _ := jiraClient.Board.GetAllSprints(boardID) fmt.Println(sprints[0].Goal) ``` # Checklist * [x] Unit or...
# Description Please describe _what does this Pull Request fix or add?_. It replaces the obsolete module `github.com/pkg/errors` with the official one `errors` which got introduced in golang 1.13 Information...