go-jira icon indicating copy to clipboard operation
go-jira copied to clipboard

Go client library for Atlassian Jira

Results 200 go-jira issues
Sort by recently updated
recently updated
newest added

## What happened? I am trying to create an issue in ServiceDesk that is set up on-premise. Am getting a an error of: ```golang {"time":"2023-10-23T16:28:52.746847979+03:00","level":"INFO","msg":"request failed. Please analyze the request...

I am using jql search for getting jira issues using the same golang client. And I am trying to get sprint name attached to each issues. But it looks like...

should be lower case ![Screenshot 2023-09-27 at 15 35 10](https://github.com/andygrunwald/go-jira/assets/123634205/27ff27a5-0b53-4f99-b650-5be5aeeba2b0)

## What would you like to be added? 429 and 5XX errors should be retried ## Why is this needed? it improves the UX otherwise the dev would have to...

#### What type of PR is this? * cleanup * documentation * api-change #### What this PR does / why we need it: * Return Jira Error from IssueService.Create *...

## What happened? I maintain a tool, [`gh-jira-issue-sync`](https://github.com/uwu-tools/gh-jira-issue-sync), which can (one-way) sync issues from GitHub to Jira. Well, sort of. I'm currently running into problems copying comments from a GitHub...

Bumps [golang.org/x/term](https://github.com/golang/term) from 0.6.0 to 0.9.0. Commits f6de4a1 go.mod: update golang.org/x dependencies 119f703 go.mod: update golang.org/x dependencies 7ae6be6 go.mod: update golang.org/x dependencies See full diff in compare view [![Dependabot compatibility...

dependencies
go

#### What type of PR is this? * bug When doing a `POST /jira/rest/servicedeskapi/request HTTP/1.1` I sometimes get this error: ``` 2023/01/31 15:24:25 json: cannot unmarshal array into Go struct...

#### What type of PR is this? feature #### What this PR does / why we need it: Adds support for servicedeskapi request comments #### Which issue(s) this PR fixes:...

``` var s strings.Builder fmt.Fprintf(&s, `{"fields": {"customfield_11702": "%s"}}`, *targetVersion) data := s.String() req, err := client.NewRequest("PUT", "rest/api/latest/issue/ACCCONTROL-12365", data) ``` Im trying to do a simple PUT request but even though...