atlassian-python-api
atlassian-python-api copied to clipboard
in version 3.13.0 get_project_versions_paginated() does not respect status
def get_paginated_project_version(
self,
):
"""
Returns all project versions paginated as an iterator.
"""
all_proj_relcand_dicts = self.jira.get_project_versions_paginated(
key=self.spacekey,
start=None,
limit=100000,
order_by="releaseDate",
expand=None,
query=None,
status=["unreleased"],
)
return all_proj_relcand_dicts
This should return only unreleased versions. but it only returns released versions. Problem does not occur in 3.9
cheers
Hi @wetjenk , Could you share a version of Jira? or you meant it's only wrapper level ?
Cheers, Gonchik
hi, not sure what you mean exactly?
using version 3.13.0 of atlassian-python-api calling to Atlassian Jira Project Management Software (v8.15.1#815002-sha1:9ca7b02)
the function the wrapper is calling seems to not work afaik
hope that helps?