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.12.3">5.0.12.3</option>    
	<option selected value="5.0.12.2">5.0.12.2</option>
    <option value="5.0.12.1">5.0.12.1</option>
	<option value="5.0.12">5.0.12</option>
	<option value="5.0.10">5.0.10</option>
	<option value="5.0.9">5.0.9</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.12.3

Incident Meshlet

Release Date: November 12February 20, 20212023

Section
bordertrue


Column
width15%

Enhancements


Column
width85%
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-5626







UI Tab
title5.0.12.2

Incident Meshlet

Release Date: November 12, 2021

Section
bordertrue


Column
width15%

Bug Fixes


Column
width85%
  • Fixed the issues with attachments and updates not correctly being sent out.
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-22462







UI Tab
title5.0.12.1

Incident Meshlet

Release Date: October 29, 2020

Section
bordertrue


Column
width15%

Bug Fixes


Column
width85%
  • Fixed an issue where Jira incident meshlet does not create a new session on Jira restart.
Show If
special@authenticated
Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-14230







UI Tab
title5.0.12

Incident Meshlet

Release Date: August 2, 2020

Section
bordertrue


Column
width15%

Enhancements


Column
width85%
  • Enhanced session authentication to use a single session throughout the Jira meshlets.  
Show If
special@authenticated
Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-11231







UI Tab
title5.0.10

Change Meshlet

Release Date: July 13, 2020

Section
bordertrue


Column
width15%

New Features


Column
width85%
  • Jira Change meshlet service is available to integrate Jira change records with other Perspectium-supported ITSM applications.
Show If
special@authenticated
Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-10547







UI Tab
title5.0.9

Incident Meshlet

Release Date: July 1, 2020

Section
bordertrue


Column
width15%

Enhancements


Column
width85%


Show If
special@authenticated
Jira
serverJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIde15725ca-3b2b-32f6-914c-89477a90901d
keyDEV-10781







UI Tab
title5.0.6

Incident Meshlet

Release Date: May 21, 2020

Section
bordertrue


Column
width15%

Enhancements


Column
width85%
  • Added the ability to authenticate against a staging instance
Show If
special@authenticated

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

  • Enhanced Jira meshlet to build url from yml instead of building it off ServiceNow instance
  • Added correlation logic
  • Optimized the start up of Jira meshlet
  • Added the ability to for Jira meshlet to select different Jira projects






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.12.23") {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
</script>