andygrunwald / go-jira

Go client library for Atlassian Jira
https://pkg.go.dev/github.com/andygrunwald/go-jira?tab=doc
MIT License
1.48k stars 471 forks source link

Sprint is nil in Issue #388

Open Chhekur opened 3 years ago

Chhekur commented 3 years ago

Describe the bug

Sprint is nil in the returned response for Issue

To Reproduce

Provide a link to a live example, or an unambiguous set of steps to reproduce this bug. Include configuration, logs, etc. to reproduce, if relevant.

  1. Hit any of method to get Issue, Get/Search

Expected behavior

Sprint should not be nil at least for Issues which are there in active Sprint

github-actions[bot] commented 3 years ago

Hi! Thank you for taking the time to create your first issue! Really cool to see you here for the first time. Please give us a bit of time to review it.

andygrunwald commented 3 years ago

@Chhekur Can you provide the information

Thank you.

romeufcrosa commented 2 years ago

I have this same issue

I'm using Jira Cloud (which does not really have the concept of version, so not sure what extra info I could provide regarding that)

As for the code snippet

options := &jira.SearchOptions{
    Expand:     "changelog",
    MaxResults: 100,
    StartAt:    0,
}
query := fmt.Sprintf(
        "project = '%s' AND issuetype in (Bug, Security, Story, Task) AND Sprint in openSprints()",
        projectKey,
    )
result, resp, err := jiraClient.Issue.Search(query, options)

When trying to print the Sprint property for any issue retrieved I get this: (*jira.Sprint)(<nil>)

Chhekur commented 2 years ago

@romeufcrosa the main issue over here is, sometimes sprint actually comes under the customfields so you have to parse unknown to get that info.

andygrunwald commented 2 years ago

Hey,

I am very sorry that this issue has been open for a long time with no final solution. We work on this project in our spare time, and sometimes, other priorities take over. This is the typical open source dilemma.

However, there is news: We are kicking off v2 of this library 🚀

To provide visibility, we created the Road to v2 Milestone and calling for your feedback in https://github.com/andygrunwald/go-jira/issues/489

The development will take some time; however, I hope you can benefit from the changes. If you seek priority development for your issue + you like to sponsor it, please contact me.

What does this mean for my issue?

We will work on this issue indirectly. This means that during the development phase, we aim to tackle it. Maybe in a different way like it is currently handled. Please understand that this will take a while because we are running this in our spare time.

Final words

Thanks for using this library. If there is anything else you would like to tell us, let us know!