Skip to content

Commit 7c7aa55

Browse files
author
Matthieu Honel
committed
Merge branch 'release/2.7.3'
2 parents 8dc62d2 + 0e0f3a3 commit 7c7aa55

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Since data is pulled from YWH platform to your server, only regular outbound web
5151

5252
- v2.7:
5353
- added synchronization of "fix verification" logs when "Upload status updates" is checked
54+
- fixed an issue with jira when scope contains special markdown characters
5455
- v2.6:
5556
- added work around bug trackers maximum size allowed for the text of the issues/comments (content put in Markdown file attachment when necessary)
5657
- v2.5:

docs/user-guide/User-Guide.pdf

6 Bytes
Binary file not shown.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ywh2bt"
3-
version = "2.7.2"
3+
version = "2.7.3"
44
description = "ywh2bt - YesWeHack to Bug Tracker"
55
readme = "README.md"
66
authors = ["m.honel <m.honel@yeswehack.com>"]

ywh2bt/core/api/trackers/jira/formatter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
|| Title || ${local_id} : ${title} ||
1313
| Priority | ${priority_name} |
1414
| ${bug_type_label} | [${bug_type_name}|${bug_type_link}] => [Remediation|${bug_type_remediation_link}] |
15-
| ${scope_label} | ${scope} |
15+
| ${scope_label} | {noformat}${scope}{noformat} |
1616
| Severity | ${cvss_criticity}, score: ${cvss_score}, vector: {noformat}${cvss_vector}{noformat} |
1717
| ${end_point_label} | ${end_point} |
1818
| ${vulnerable_part_label} | ${vulnerable_part} |
@@ -72,7 +72,7 @@
7272
|| Detail || Old value || New value ||
7373
${details_lines}
7474
"""
75-
DETAILS_UPDATE_LOG_LINE_TEMPLATE = """| *${updated_property}* | ${old_value} | ${new_value} |
75+
DETAILS_UPDATE_LOG_LINE_TEMPLATE = """| *${updated_property}* | {noformat}${old_value}{noformat} | {noformat}${new_value}{noformat} |
7676
"""
7777
PRIORITY_UPDATE_LOG_TEMPLATE = """
7878
*Priority updated*:

0 commit comments

Comments
 (0)