Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Version 

HTML
<style> 
.version {
	height: 25px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
</style>
<select class="version" id="version" onchange="showContent()">        
  	<option value="5.0.1819" selected>5.0.19</option>	 
	<option value="5.0.18">5.0.18</option>	
	<option value="5.0.17">5.0.17</option>
	<option value="5.0.16">5.0.16</option>
    <option value="5.0.6">5.0.6</option>
</select>
<script> 
function showContent() {
	var dropdown = document.getElementById("version"); 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == dropdown.value) {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
}
</script>



UI Tab
title5.0.19

Incident Meshlet

Release Date: October 9, 2023

Section
bordertrue


Column
width15%

Enhancements


Column
width85%
  • Support reading comments using results from search API with changes to changelog API no longer always returning comments as changes.
Show If
special@authenticated

Jira
serverJIRA
columnIdsissuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-27119







UI Tab
title5.0.18

Incident Meshlet

Release Date: Jun June 29, 2023

Section
bordertrue


Column
width15%

Enhancements


Column
width85%
  • Support reading attachments using results from search API with changes to changelog API no longer always returning attachments as changes.
Show If
special@authenticated

Jira
serverJIRA
columnIdsissuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-27119







UI Tab
title5.0.17

Incident Meshlet

Release Date: Jun June 10, 2022

Section
bordertrue


Column
width15%

New Features


Column
width85%
  • Support reading public comments sent by email into Jira Service Desk for meshlet to process and map into Common Incident.
Show If
special@authenticated

Jira
serverJIRA
columnIdsissuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyINC-5557







UI Tab
title5.0.16

Incident Meshlet

Release Date: April 29, 2022

Section
bordertrue


Column
width15%

Bug Fixes


Column
width85%
  • Addresses an issue where the meshlet cannot fetch attachments created in Jira Service Desk from inbound email and goes into an infinite error loop.







UI Tab
title5.0.6

Incident Meshlet

Release Date: May 21, 2020

Section
bordertrue


Column
width15%

New Features


Column
width85%
  • Syncing your Jira Service Desk incidents and requests with other Perspectium-supported ITSM applications is now available.
Show If
special@authenticated

Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-7525


Show If
special@authenticated

Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-8457







HTML
<script> 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == "5.0.1819") {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
</script>