Skip to content

Commit c6f2529

Browse files
authored
Bump atlassian-python-api to 3.28.0, revert 145bcce (#244)
* Bump atlassian-python-api to 3.28.0 * Uncomment icon_url params, reverting `145bcce`
1 parent 931ade4 commit c6f2529

File tree

3 files changed

+66
-40
lines changed

3 files changed

+66
-40
lines changed

jbi/actions/default.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,13 +274,13 @@ def create_and_link_issue( # pylint: disable=too-many-locals
274274
jira_key_in_response,
275275
extra=log_context.update(operation=Operation.LINK).dict(),
276276
)
277-
# icon_url = f"{settings.bugzilla_base_url}/favicon.ico"
277+
icon_url = f"{settings.bugzilla_base_url}/favicon.ico"
278278
jira_response = self.jira_client.create_or_update_issue_remote_links(
279279
issue_key=jira_key_in_response,
280280
link_url=bugzilla_url,
281281
title=bugzilla_url,
282-
# icon_url=icon_url,
283-
# icon_title=icon_url,
282+
icon_url=icon_url,
283+
icon_title=icon_url,
284284
)
285285

286286
self.update_issue(

poetry.lock

Lines changed: 62 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = ">=3.10 <3.11"
1010
fastapi = "^0.79.0"
1111
pydantic = {version = "^1.9.2", extras = ["dotenv", "email"]}
1212
uvicorn = {extras = ["standard"], version = "^0.18.2"}
13-
atlassian-python-api = "^3.27.0"
13+
atlassian-python-api = "^3.28.0"
1414
dockerflow = "2022.7.0"
1515
Jinja2 = "^3.1.2"
1616
pydantic-yaml = {extras = ["pyyaml","ruamel"], version = "^0.8.0"}

0 commit comments

Comments
 (0)