jira
jira copied to clipboard
Python Jira library. Development chat available on https://matrix.to/#/#pycontribs:matrix.org
### Bug summary The HTTP request payload use the template_key variable which is not a parameter: https://github.com/pycontribs/jira/blob/fdebf2e1ff006413c1ef2ee73d7252ccf4d9a4c9/jira/client.py#L4384 The template_key variable will be defined only if template_name is none: https://github.com/pycontribs/jira/blob/fdebf2e1ff006413c1ef2ee73d7252ccf4d9a4c9/jira/client.py#L4317-L4323 Thus...
On Linux (specifically Ubuntu 20.04), docker containers don't get internet access by default. But the test container provided by this projects needs internet access to download dependencies. The log when...
### Bug summary Exception when trying to add issues to an epic: ``` File "/home/valentijn/dd/dojo/jira_link/helper.py", line 580, in add_jira_issue_for_finding return add_jira_issue(finding, *args, **kwargs) File "/home/valentijn/dd/dojo/jira_link/helper.py", line 695, in add_jira_issue add_issues_to_epic(jira,...
### Problem trying to solve I am unable to find an epic using the API. ### Possible solution(s) Implementation of a Resource for an Epic: https://docs.atlassian.com/jira-software/REST/7.3.1/#agile/1.0/epic https://developer.atlassian.com/cloud/jira/software/rest/api-group-epic/#api-group-epic= So that I...
# Summary of changes 1. Use the correct request method 2. Support List[str] too 3. fix the API url ### Docs https://developer.atlassian.com/cloud/jira/software/rest/api-group-epic/#api-rest-agile-1-0-epic-epicidorkey-issue-post https://docs.atlassian.com/jira-software/REST/7.3.1/#agile/1.0/epic-moveIssuesToEpic
updates: - [github.com/PyCQA/flake8: 5.0.2 → 5.0.4](https://github.com/PyCQA/flake8/compare/5.0.2...5.0.4)
## Change Summary 1. Remove `setup.py` (would have kept it if we were using `pyproject.toml`, [per the guidance from setuptools docs to preserve editable install behaviour across older pip's](https://github.com/pypa/setuptools/blob/5179e8fcd89657d0f9b3660e2a7ec6f6eec9ce36/docs/userguide/pyproject_config.rst)) 2....
This adds a parameter to the `_get_user_id()` method which allows for selectively disabling the search for the user that said method performs. This allows for code to perform it's own...
### Bug summary As noted in the code, there's a bug where the add_worklog method only creates a worklog for the currently logged in user (eg an api user) rather...
https://github.com/pycontribs/jira/blob/fe78ddd99a6a8f738cc50b996259b27954b192c8/jira/client.py#L4402 I noticed that the jira.client.incompletedIssuesEstimateSum method fails with KeyError: 'incompletedIssuesEstimateSum'. At the moment the code looks for the nesting `['contents']['incompletedIssuesEstimateSum']['value']` It seems like the value that it should be...