<style>
.release-box {
	height: 30px; 
	width: 100px; 
	padding-top: 8px;
	text-align: center; 	border-radius: 5px; 
	font-weight: bold; 
	background-color: #828995;  
	border-color: #FCE28A;}

.release-box:hover {
  	cursor: hand;
    cursor: pointer;
    opacity: .9; 
}
</style>
<meta name="robots" content="noindex">

<div class="release-box">
<a href="https://docs.perspectium.com/display/Lithium" style="text-decoration: none; color: #FFFFFF; display: block;">
Lithium
</a>
</div>



Version 

<style> 
.version {
	height: 25px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
</style>
<select class="version" id="version" onchange="showContent()">          
	<option value="9.1.0">9.1.0</option>
	<option value="9.0.0" selected>9.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>



Release Date: TBD



Enhancements

Ensure Troubleshooting Report always runs in the proper application scope if multiple different DataSync apps (DataSync Express, DataSync Free, Perspectium Core) are installed on the instance.


Don't display details on target queue for Bulk Share or Outbound Messages since queue can't be changed.



Bug Fixes

Fixed close button (X) on notification messages at top of Perspectium UI pages (such as Start/Stop All Jobs) overlapping on left side of message.







Release Date: April 3, 2025

Enhancements

Support for Yokohama release of ServiceNow.

(info) NOTE: Tagged as 5.0.1 in the ServiceNow Store





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