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




NOTE:

  • Meshlets will only run with Java 11 and greater.


Version 

<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.5" selected>8.0.5</option>
	<option value="8.0.2">8.0.2</option>
	<option value="8.0.1">8.0.1</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



Krypton 8.0.5 and newer meshlets require the Spring - Main configuration for allow-circular-references to be set to true in the application.yml configuration file to properly run. Please see here for more information.


Enhancements

Update to not fill up log files when recovering from failed request.





Release Date: June 25, 2024

Krypton 8.0.5 and newer meshlets require the Spring - Main configuration for allow-circular-references to be set to true in the application.yml configuration file to properly run. Please see here for more information.


Bug Fixes

Upgraded to new Spring versions to fix CVE-2024-22262, CVE-2024-22259 and CVE-2024-22243.





Release Date: January 9, 2023

Bug Fixes

Upgrade to commons-text-1.10.jar to fix CVE-2022-42889.






Release Date: November 14, 2022

Enhancements

Meshlets support for Java 18



Meshlet service support commands for all meshlet installed as a service on the same machine.



Meshlets will stop logging in the foreground when running as a service on Linux








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