Versions Compared

Key

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


HTML
<style>
.release-box {
	height: 30px; 
	width: 100px; 
	padding-top: 8px;
	text-align: center; 
	border-radius: 5px; 
	font-weight: bold; 
	background-color: #8efeb3;  
	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/krypton" style="text-decoration: none; color: #FFFFFF; display: block;">
Krypton
</a>
</div>



Version 

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

Release Date: TBDSeptember 6, 2023

Note

Uses the new databaseConfig.json as released with Krypton 8.0.3. If you are upgrading from a version older than Krypton 8.0.3, you will need a new databaseConfig.json. Contact Perspectium Support for more information. If you have databaseConfig.json from Krypton 8.0.3, you have the latest version and do not need to update this file.   


Bug Fixes

Fixed extra alter statements (invalid operation: cannot alter column) being called due to how meshlet was caching table columns in memory. 

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-27147





UI Tab
title8.0.3

Release Date: August 21, 2023

Note

Krypton 8.0.3 and newer will require a new databaseConfig.json. Contact Perspectium Support for more information.


Enhancements

Match column length to ServiceNow when column length is less than Redshift's maximum length. Length will be increased to maximum size when column length is changed and data in a column will be truncated if the size is larger than Redshift's maximum length.

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-27147



Bug Fixes

Fixed "Invalid operation: syntax error at or near" error when the meshlet receives a message where the record contains multiple new columns for the table.

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-27147





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