File tree Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11# Jira one change log
22
3+ ** Release 0.9.3** - 2025-10-15
4+ Update:
5+ - An update to API in ` jira.management ` module
6+
7+
38** Release 0.9.2** - 2025-08-17
49Fixes::
510- 🐛An issue with enhance_search returning duplicated results
Original file line number Diff line number Diff line change @@ -6,14 +6,15 @@ Below is the list of supported versions for the jiraone library
66
77| Version | Supported |
88| ---------| --------------------|
9+ | 0.9.3 | :white_check_mark : |
910| 0.9.2 | :white_check_mark : |
1011| 0.9.1 | :white_check_mark : |
1112| 0.9.0 | :white_check_mark : |
1213| 0.8.9 | :white_check_mark : |
1314| 0.8.8 | :white_check_mark : |
1415| 0.8.7 | :white_check_mark : |
1516| 0.8.6 | :white_check_mark : |
16- | 0.8.5 | :white_check_mark : |
17+ | 0.8.5 | :x : |
1718| 0.8.4 | :x : |
1819| 0.8.3 | :x : |
1920| 0.8.2 | :x : |
Original file line number Diff line number Diff line change 11[project ]
22name = " jiraone"
3- version = " v0.9.2 "
3+ version = " v0.9.3 "
44authors = [
55 {
name =
" Prince Nyeche" ,
email =
" [email protected] " },
66]
Original file line number Diff line number Diff line change 3737from jiraone .management import manage
3838
3939__author__ = "Prince Nyeche"
40- __version__ = "0.9.2 "
40+ __version__ = "0.9.3 "
4141__all__ = [
4242 "LOGIN" ,
4343 "endpoint" ,
Original file line number Diff line number Diff line change @@ -567,7 +567,8 @@ def _parse_data_obj(
567567 else data .json ()["meta" ]["page_size" ]
568568 )
569569 count = 0
570- for ids in data .json ()["data" ]:
570+ resp_object = data .json ().get ("data" , [])
571+ for ids in resp_object :
571572 many .append (ids ["id" ]) if "id" in ids and total == - 1 else 0
572573 while count < total :
573574 count += 1
You can’t perform that action at this time.
0 commit comments