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="1">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.0.0

Incident Meshlet 

Release Date: TBD

Meshlets can now send heartbeats to show that it is currently running
Section
bordertrue


Enhancements 

You now have the option to select which project to integrate from ServiceNow to your Azure DevOps instance. See Add and edit ServiceNow outbound table map fields for Azure DevOps

Column
width15%

New Features

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-

10333

11333



Change Meshlet 

Release Date: TBD

Meshlets will no longer log message going to command queue, but instead to the inbound queue. 
Section
bordertrue


Enhancements

You now have the option to select which project to integrate from ServiceNow to your Azure DevOps instance. See Add and edit ServiceNow outbound table map fields for Azure DevOps.

Column
width15%

Bug Fixes

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-

12596

11333






HTML
<script> 
	var box = document.getElementById("release-box");
	box.style.display = "none";

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