Version 

<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.19" 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>



Incident Meshlet

Release Date: October 9, 2023


Enhancements


  • Support reading comments using results from search API with changes to changelog API no longer always returning comments as changes.







Incident Meshlet

Release Date: June 29, 2023


Enhancements


  • Support reading attachments using results from search API with changes to changelog API no longer always returning attachments as changes.







Incident Meshlet

Release Date: June 10, 2022


New Features


  • Support reading public comments sent by email into Jira Service Desk for meshlet to process and map into Common Incident.







Incident Meshlet

Release Date: April 29, 2022


Bug Fixes


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







Incident Meshlet

Release Date: May 21, 2020


New Features


  • Syncing your Jira Service Desk incidents and requests with other Perspectium-supported ITSM applications is now available.








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