Releases: princenyeche/jiraone
Releases · princenyeche/jiraone
v0.9.3
v0.9.2
v0.9.1
v0.9.0
Fixes:
- 🐛 Fix to API in
jira.managementmodule
v0.8.9
Fixes:
- 🐛 Fix to typing error in
jira.managementmodule
v0.8.8
Fixes:
- 🐛 Minor fixes in
jira.utilsmodule - 🐛 Minor fixes in
jira.managementmodule - 🐛 Fix on
issue_exportfunction not working whenmerge_filesargument is used
v0.8.7
Updates:
- Deprecation warning of
search_issues_jqlAPI for Jira Cloud, Jira DC still uses the API #150 - Added new function in
jira.utilsmodule to handle utc_datetime in Python 3.12.x - Added new function in
jira.utilsmodule for issue extraction calledenhance_search - Added new function in
accessmodule for issue search on Jira Cloud calledsearch_cloud_issues
Breaking
- If you're using
endpoint.search_issues_jqlas a standalone endpoint in your scripts, this will break in v0.8.7 moving forward. This is due to the deprecation #150. Please consider usingendpoint.search_cloud_issuesinstead. If you prefer the endpoint to behave in a similar way to the old API for cloud, you can use theenhance_searchfunction fromjiraone.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
v0.8.5
v0.8.4
Fixes:
- 🐛
get_attachments_on_projects: Overwrite attachment file by default - 🐛
json_field_builder: check ifsprint_custom_idis 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 matchget_attachments_on_projects
Features:
- ✨
download_attachments: supportcreate_html_directorsoption (resolves #112) - ✨
download_attachments: supportoverwrite=Falseoption (to speed up incremental backups)
Thanks to @huyz for the above fixes and improvements to v0.8.4