- Update to
time_in_status
function to include timestamp in UTC
- Update to
issue_export
method for better performance and caching #117
- Fix to
field
class in Server/DC Jira causing key error #119 #120 #122
- Added a new argument
delimit
to the issue_export
method which allows for the output of a CSV file to be in any delimiter #121
# import statement
issue_export(jql=jql, delimit=";")
- Added new method
async_change_log
to the PROJECT
constant. This helps to extract the change_log history but asynchronously. Thereby improving the speed of data extraction. See more on jiraone's documentation.
# import statement
PROJECT.async_change_log(
jql, folder="TEST", file="sample.csv", flush=10
)
- Added new methods to
endpoint
alias for issuetype scheme, security scheme etc
- Added tests for all the major functions/methods for CI/CD process
- Added requirement for Python 3.8.x and above to run jiraone starting from version 0.7.9
- Removed deprecated method
get_attachment_meta_data
from endpoint
constant as this has been active for more than 2 years.
- Removed duplicated URL link in code for
task
, issue_watchers
, and issue_votes
method in endpoint
constant.