stable

Clone or download

Read-only

feat(jira): Manage JiraServer comments

Like it was done for Changelog and users we need to distinguish the way comments are returned by JiraServer versus JiraCloud Part of: request #22580 Creation of new tracker from Jira doesn't work with Jira Server Change-Id: Ie35d42c58f42a6cf319788bebf15da041e6af3f7

Modified Files

Name
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/Comment.php +7 −54 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/CommentValuesBuilder.php +2 −45 Go to diff View file
A plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/JiraCloudComment.php +74 −0 Go to diff View file
A plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/JiraCloudCommentValuesBuilder.php +63 −0 Go to diff View file
A plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/JiraServerComment.php +73 −0 Go to diff View file
A plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/JiraServerCommentValuesBuilder.php +60 −0 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/JiraXmlExporter.php +5 −5 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/ArtifactsXMLExporterTest.php +2 −2 Go to diff View file
R plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/ChangelogEntryItemsRepresentationTest.php Go to diff View file
R plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/ChangelogEntryValueRepresentationTest.php Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Comment/CommentXMLValueEnhancerTest.php +4 −6 Go to diff View file
R plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Comment/CommentTest.php Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/ChangelogSnapshotBuilderTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/InitialSnapshotBuilderTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/IssueSnapshotCollectionBuilderTest.php +3 −2 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/JiraXmlExporterTest.php +2 −2 Go to diff View file