Versions Compared

Key

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

Version 

Bulk share history record will now account for additional records shared, thus Dashboard will display the correct counts of records shared.

DEV-19081
HTML
<style> 
.version {
	height: 25px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
</style>
<select class="version" id="version" onchange="showContent()">   
 	<option value="6.1.0">6.0.2</option>  
 	<option value="6.0.2">6.0.2</option>
	<option value="6.0.1">6.0.1</option>
	<option value="6.0.0">6.0.0</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
title6.1.0

Release Date: TBD

Bug Fixes
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
key



UI Tab
title6.0.2

(info) NOTEDashboard 6.0.2 does not require previous versions (such as 6.0.0) of the Dashboard be installed in your ServiceNow instance as it contains the complete Dashboard feature. Only the latest Helium version of the Perspectium Core application is required.

Release Date: August 4, 2021

Bug Fixes

The "Refresh" and "Properties" icons will no longer disappear when accessing the Dashboard main page. 

Show If
special@authenticated

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


Enhanced error logging for Integration Mesh (MBS) connection. 

Show If
special@authenticated

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





UI Tab
title6.0.1

(info)NOTEDashboard 6.0.1 does not require previous versions (such as 6.0.0) of the Dashboard be installed in your ServiceNow instance as it contains the complete Dashboard feature. Only the latest Helium version of the Perspectium Core application is required.

Release Date: May 25, 2021

Bug Fixes

Removed unused view icon for Dashboard properties.

Show If
special@authenticated

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


Fixed issue casing an error message to display on the Dashboard main page when a valid MBS 4.6.12 version is connected but no Agent results were found for a vhost user.

Show If
special@authenticated

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


The numbers in the "Total monthly records" field will no longer overflow and can be viewed properly.  

Show If
special@authenticated

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





UI Tab
title6.0.0

Release Date: March 25, 2021

New Features

A visual representation of operational details of your ServiceNow instances and bulk/dynamic shares, open tickets with Perspectium Support, and monitoring existing queues is now available through Dashboard.

Show If
special@authenticated

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





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