Skip to content

Releases: princenyeche/jiraone

v0.9.3

15 Oct 08:41
9fca859

Choose a tag to compare

Update #157

  • An update to API in jira.management module

v0.9.2

17 Aug 21:01
4ca6885

Choose a tag to compare

Fix #156

  • 🐛 An issue with enhance_search returning duplicated results

v0.9.1

28 Jul 22:48
f079f8a

Choose a tag to compare

Update #155

  • Added license variable
  • Removed new argument from enhance_search

v0.9.0

28 Jul 22:06
a045afd

Choose a tag to compare

Fixes:

  • 🐛 Fix to API in jira.management module

v0.8.9

12 May 20:34
cfb0d5c

Choose a tag to compare

Fixes:

  • 🐛 Fix to typing error in jira.management module

v0.8.8

12 May 19:49
b3b70ee

Choose a tag to compare

Fixes:

  • 🐛 Minor fixes in jira.utils module
  • 🐛 Minor fixes in jira.management module
  • 🐛 Fix on issue_export function not working when merge_files argument is used

v0.8.7

23 Apr 21:06
c89a30a

Choose a tag to compare

Updates:

  • Deprecation warning of search_issues_jql API for Jira Cloud, Jira DC still uses the API #150
  • Added new function in jira.utils module to handle utc_datetime in Python 3.12.x
  • Added new function in jira.utils module for issue extraction called enhance_search
  • Added new function in access module for issue search on Jira Cloud called search_cloud_issues

Breaking

  • If you're using endpoint.search_issues_jql as a standalone endpoint in your scripts, this will break in v0.8.7 moving forward. This is due to the deprecation #150. Please consider using endpoint.search_cloud_issues instead. If you prefer the endpoint to behave in a similar way to the old API for cloud, you can use the enhance_search function from jiraone.utils

Example:

# previous import statement
data = LOGIN.get(endpoint.search_cloud_issues(
                        query='key = "AT2-229"',
                        next_page=None,
                        fields=None,
                        max_results=100,
                    )).json()
print(data)
#  {"issues": [...] }

Please read the docs for more info and example usage

v0.8.6

30 Dec 23:42
6ae8481

Choose a tag to compare

Fixes:

  • 🐛 An issue with JSON export that causes None type error which triggers an exception during extraction #122 #141

Updates:

  • Made an update to the attributes in Permissions to align with the built-in Jira project and global permission module on cloud.

v0.8.5

26 Jun 17:39
ee9728f

Choose a tag to compare

Fixes:

  • 🐛 get_all_sprints API fix to query parameter #137
  • 🐛 Corrected errors associated with the test script

Updates:

  • Made some spelling corrections #135

v0.8.4

20 May 20:00
758b132

Choose a tag to compare

Fixes:

  • 🐛 get_attachments_on_projects: Overwrite attachment file by default
  • 🐛 json_field_builder: check if sprint_custom_id is None
  • 🐛 path_builder: handle multi-dir base_dir
  • 🐛 download_attachments: avoid conflicts/overwrites by isolating attachments (helps with #112)

Improvements:

  • download_attachments: make defaults and behaviour match get_attachments_on_projects

Features:

  • download_attachments: support create_html_directors option (resolves #112)
  • download_attachments: support overwrite=False option (to speed up incremental backups)

Thanks to @huyz for the above fixes and improvements to v0.8.4