SR-C19568 · Issue 360661
Check added to ensure Charts appear consistently after form submit
Resolved in Pega Version 8.1
If a chart was included in a section along with some other fields, the Chart disappeared whenever a client validation triggered with a pop-up asking to fill in the mandatory fields. When a form is submitted, charts are destroyed before the submit happens. If there are client side errors, then the section doesn't refresh and so the chart was not initialized again. To handle this, the submitWrapper method in pzpega_ui_doc_submit has been modified to check for client side errors before destroying the charts.
SR-C19787 · Issue 363113
Improved security for personal information parameters involved in alerts
Resolved in Pega Version 8.1
Previously, if an alert was generated while there was Personally Identifiable Information (PII) data on the parameter page, that PII was put in the alert log in clear text. If dynamic appenders (PDC/AES) were used, only the values for whitelisted key names were included. It was also possible to override the remote value to send all values except those on the blacklist (obfuscated). In order to improve security, the system will check if it needs to do whitelist (which is now the default) or blacklist, and then does the obfuscation only once. RemoteFilterType can be used to control both the remote and file based parameter page, and the allowed/obfuscated keywords are shared between remote and local alerts.
SR-C19835 · Issue 360026
Refresh fixed for data pages
Resolved in Pega Version 8.1
A refresh was causing empty data pages due to a sequencing error in the code. This has been fixed by rearranging the evaluations.
SR-C20061 · Issue 362706
Logic changed to improve pr_assembledclasses use on multi-node systems
Resolved in Pega Version 8.1
Previously, each time an RUF was generated on a multi-node system a pulse event was sent to other nodes to re-generate the library as well. When these nodes would get the message, they would regenerate the library as well as in some cases send out the pulse event. In complex installations, this resulted in ~1.4 million updates per hour to the database table in pr_Assembledclasses. In order to improve performance, the system will no longer generate the library on a generate pulse event if eager population is enabled. The library is simply invalidated.
SR-C20064 · Issue 359982
Streamlined truststore.jks creation
Resolved in Pega Version 8.1
Many folders were being created in the Tomcat temp folder that each contained the file "truststore.jks" used to hold the certificates used in Kafka connection security settings. The implementation has been changed to streamline this: a new KafkaSecurity class was created for a KafkaInstanceImpl which holds 1 truststore file instead of the previous method which created the truststore file in getProducer and getConsumer.
SR-C20240 · Issue 361514
Display caption checkbox control honored
Resolved in Pega Version 8.1
In some configurations the Check Boxes control was not respecting the "Display caption when read only" setting. This has been fixed,
SR-C20466 · Issue 361005
Security/privacy enhancement added to allow overriding URL parameter values being logged
Resolved in Pega Version 8.1
The Connect-REST method/engine class throws an exception when it times out; the standard behavior is to disclose the entire URL string including URL parameter values, but in some cases the parameter values may contain sensitive data. To support greater security and privacy, an enhancement has been added to override this behavior when desired by adding an extra check to filter the data being displayed in the PegaRULES log.
SR-C205 · Issue 354134
Special character handling improved for field value rule description fields
Resolved in Pega Version 8.1
When special characters such as valor do preÝ âê ($) were used as part of the description field in a field value rule, the description field was empty or not visible after the field value rule was saved. This was an issue with the way the encoding API was applied to special characters, and has been corrected.
SR-C20839 · Issue 367745
Performance improved for screen rendering and checkbox action in Microsoft Internet Explorer
Resolved in Pega Version 8.1
After upgrade, Screen rendering and checkbox action was slow in the Microsoft Internet Explorer Browser. To improve performance, the following updates have been made: 1) Conditionally skipping multiple flex resizes on harness resize event. 2) Replaced $ calls in getCorrectPropertyElemFromDOM() with native querySelector. 3) Grid's getScrollParent() (~200ms) was erroneously comparing element’s scrollWidth with scrollWidth (instead of clientWidth) each time. 4) ui_inspector.js was making multiple attempts to get the closest element. The results are now cached. 5) In client expr evaluation, getAllRefreshableTargets() queries for the entry were handled three times. The query is fired only once now and the results are cached.
SR-C20923 · Issue 370325
Added explicit cleanup of non-serializable objects in the Connect-SOAP ParameterPage
Resolved in Pega Version 8.1
In investigating an application continuously logging error messages for Serialization, it was found that Connect-SOAP execution leaves non-serializable objects in the ParameterPage, which in-turn caused this the error logging upon requestor passivation. To resolve this, code has been added to remove the pyServiceClient, soapHdr, and activityParamPage parameters from the ParameterPage after use.