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.6.0" selected>8.6.0</option>
	<option value="8.5.0">8.5.0</option>
	<option value="8.4.0" selected>8>8.4.0</option>
    <option value="8.3.0">8.3.0</option>
	<option    <optionvalue="8.2.1">8.2.1</option>     
	<option value="8.2.0">8.2.0</option>
    <option value="8.1.0">8.1.0</option>
	<option value="8.0.0">8.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
title8.56.0

Release Date: TBDJune 13, 2024


Note

Krypton 8.56.0 is a minor version that can be installed on its own (without installing the Kryption 8.0.0 major release) as it contains the complete Perspectium Core application for ServiceNow.0 major release) as it contains the complete Perspectium Core application for ServiceNow.


Enhancements

Don't display domain option on conditional shares for tables that aren't domain separated (i.e. don't have sys_domain field) to overcome ServiceNow limitation with invalid queries.

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


Separate Group Share as an addon to the Core application for those who don't use it due to potential conflicts with ServiceNow health scans.

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


Support Share only selected fields when resharing records for Table Compare with a database on bulk shares.

(info) NOTE: You will need to account for the sys_mod_count field to properly use these Share only selected fields and Table Compare together. See here for more information.

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


Share out boolean field values as true/false instead of 1/0 when using Share only selected fields.

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


Support FX Currency (currency2) field type for sharing display values.

(info) NOTE: FX Currency (currency2) display value fields are decimal fields but will contain the currency symbols (i.e. $3.00) so the databaseConfig.json configuration file should not map the decimal type to a numeric type in Snowflake. Doing so will cause errors since you are trying to insert a non-numeric value into the field. This issue will not occur using the default settings of databaseConfig.json as the decimal type is not specified and will map to VARCHAR that support the currency symbols.

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


Don't disable the PSP property for posting to the default queue when a 401 Unauthorized is received.

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





UI Tab
title8.2.1

Release Date: June 13, 2024

Note

Krypton 8.2.1 is a hotfix to be applied to the Krypton 8.2.0 minor release. Please install Krypton 8.2.0 before installing Krypton 8.2.1 and run the "Finish Install" process upon update set commit.


Enhancements

Don't disable the PSP property for posting to the default queue when a 401 Unauthorized is received.

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





UI Tab
title8.5.0

Release Date: January 16, 2024


Note

Krypton 8.5.0 is a minor version that can be installed on its own (without installing the Kryption 8.0.0 major release) as it contains the complete Perspectium Core application for ServiceNow.


Enhancements

Use JavaScript library to continue supporting Triple DES encryption method for sharing data with ServiceNow's planned deprecation of the GlideEncrypter API. See ServiceNow GlideEncrypter API Deprecation for more information.

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


Use password2 fields for storing Perspectium properties

Enhancements

Use JavaScript library to continue supporting Triple DES encryption method for sharing data with ServiceNow's planned deprecation of the GlideEncrypter API. See ServiceNow GlideEncrypter API Deprecation for more information.

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


Remove warning about AES-128 encryption is only required for certain integrations as AES is recommended for encrypting Use password2 fields for storing Perspectium properties with ServiceNow's planned deprecation of the GlideEncrypter API. See ServiceNow GlideEncrypter API Deprecation for more information.

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






UI Tab
title8.4.0

Release Date: December 27, 2023


Note

Krypton 8.4.0 is a minor version that can be installed on its own (without installing the Kryption 8.0.0 major release) as it contains the complete Perspectium Core application for ServiceNow.


Bug Fixes

Disable Delete option on business rule dynamic share when async_always is selected as the Business Rule When option since this option does not support sharing deletes (similar to previous async option).

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


Fix Table Compare Synchronize Deleted Records not updating previous executions from a Pending state.

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



Enhancements

Prevent purging queue when queue has over 1,000,000 (one million) records.

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


Show Previous Table Compare Executions even if no agent results.

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


Check Enable confirmation enabled when resharing records to allow records from continuously being reshared when the database has an issue.

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






UI Tab
title8.3.0

Release Date: November 6, 2023


Note

Krypton 8.3.0 is a minor version that can be installed on its own as it contains the complete Perspectium Core application for ServiceNow.


Bug Fixes
Add all Iodine 7.0.1-7.0.10 hotfixes.

Fix Subscribe's Condition script not honoring answer value.hi

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


Fix modifications to override and update out of box sys_template New and Update UI actions.

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


Fix extra New buttons being shown on Bulk Share list view.


Enhancements

Use _operation() for dynamic share sharing records to account for tables that have an operation field.

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


Support Share only selected fields with conditional shares.

(info) NOTEWith Share only selected fields enabled, the Use Table Map option will not be available on conditional shares. Since both options modify the fields in the outgoing record payload, both options are not compatible with each other.

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


Support outbound records being generated for conditional bulk shares if default encryption key is not set.

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






UI Tab
title8.2.0

Release Date: July 21, 2023


Note

Krypton 8.2.0 is a minor version that can be installed on its own as it contains the complete Perspectium Core application for ServiceNow.


New Features

Support archiving and restoring data using DataSync with the Agent and a target database.

(info) NOTEThis requires the Archive Data update set to be installed. Contact support@perspectium.com for more information.

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
maximumIssues20
jqlQuerykey = DEV-27084 OR key = DEV-27085 OR key = DEV-27086 OR key = DEV-27087
serverIde15725ca-3b2b-32f6-914c-89477a90901d



Bug Fixes

Fix Schedule Table Compare not appearing when clicked on ServiceNow to Database Table Compare Synchronize Deleted Records.

(info) NOTE: Choosing the timezone has been removed from the Schedule Table Compare form as ServiceNow will not honor the timezone when setting through scripting. 

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


Don't check for attachments exceeding maximum allowed size on table maps that don't have a mapping using attachments (source field uses psp_attachment or target field is attachments)

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



Enhancements

Support dynamic shares and scheduled bulk shares not being started or stopped with the Start/Stop All Shares by naming them starting with "X" or "x".

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


Support the new async_always business rule when option available with Rome+ on dynamic shares and remove the legacy (deprecated) async option when creating a new dynamic share.

(info) NOTE: If you have a current dynamic share set with the legacy async business rule when, this will not be changed to the new async_always so as to not disrupt your current active dynamic shares and since the legacy option continues to work. You can edit your current dynamic share and choose the new async_always option to upgrade to the new option.

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
maximumIssues20
jqlQuerykey = DEV-26962 OR key = INC-5618
serverIde15725ca-3b2b-32f6-914c-89477a90901d


Add Meshlet to filter list for Table Compare's Previous Table Compare Executions list on Compare Records by 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-26724


Add displaying table and option to delete a table compare results record in Table Compare's Previous Table Compare Executions list.

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





UI Tab
title8.1.0

Release Date: June 16, 2023


Note

Krypton 8.1.0 is a minor version that can be installed on its own as it contains the complete Perspectium Core application for ServiceNow.


Enhancements

Support specifying number of queues for a shared queue.

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


Support child bulk shares based on number of queues.

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


Add All (One Job Per Queue) option when creating multiple MultiOutput jobs by outbound queue.

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


Return to list when saving a bulk share record instead of staying on the record so user knows record has saved properly.

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


Use Table Map from bulk share for records reshared to a database by Table Compare.

(info) NOTE: See Table Compare for further configuration required if using a Table Map with Table Compare for ServiceNow to database.

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


Sort table names alphabetically in Choose Table dropdown on Synchronize Delete Records and Compare Records by Table pages of Table Compare.

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


Keep queue active when getting queue status regardless of status returned.

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


Warn and default Sharing setup to Share the table records only when using a table map in dynamic or bulk share (including conditional shares).

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


Remove calling queue metrics not being used in application.

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


Optimize Weekly Troubleshooting Report scheduled job performance.

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


Use dynamic share legacy approach for Use audit delete listener instead of delete recovery to account for tables like sys_user_grmember that do not work with delete recovery.

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


Set table field maps to have same field type and field length when adding fields that exist in source table with the Add all source table fields or entering a new field manually using the form. 

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


Update table field map script to set default field type and field length to not use GlideRecord per instance troubleshooter scan best practices.


Bug Fixes

Support updating bulk shares that have the same name in scheduled bulk shares if upgrading from older versions of the Perspectium application.

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


Fix database views to not share out encoded sys_id field when using Share only selected fields option.

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


Fix executing a bulk share again when the user triggers executing again in a different timezone.

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


Fix scripting boxes not appearing on Subscribe form when upgrading from Helium.

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


Display field type and field length options on table field map form.

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





UI Tab
title8.0.0

Release Date: January 25, 2023

Bug Fixes

Fixed Perspectium UI pages having incomplete blue border lines on San Diego/Tokyo+ versions of ServiceNow when clicking on a link

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
maximumIssues20
jqlQuerykey = DEV-26944 OR key = DEV-26950
serverIde15725ca-3b2b-32f6-914c-89477a90901d


Fixed fonts for headings on Perspectium UI pages not all being consistent on San Diego/Tokyo+ versions of ServiceNow. 

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


Fixed the Show icon for password fields not being lined up correctly on Perspectium properties UI pages when on San Diego/Tokyo+ versions of ServiceNow.

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


Fixed Refresh and Setting options not appearing on the Dashboard for San Diego/Tokyo+ versions of ServiceNow.

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


Fixed UI remaining legacy view when upgrading to Iodine version of Perspectium Core on San Diego/Tokyo+ versions of ServiceNow.

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


Fixed Portal Settings missing from Perspectium properties UI page on San Diego/Tokyo+ versions of ServiceNow.

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


Fixed Finish Install not running the first time Perspectium Core installed on an instance with San Diego/Tokyo+ versions of ServiceNow.

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






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