INC-144387 · Issue 605340
Support added for allow list for LaxRedirectStrategy
Resolved in Pega Version 8.6
When using Connect REST with POST to access a third-party service deployed on multiple nodes, the load balancer sometimes replied 302 with Location header. The ability to allow the REST connector to automatically follow these redirects even in the case of POST messages is supported by Apache http client via LaxRedirectStrategy, but REST Connectors need both rule and engine enhancements to allow for this. To support this use, an allow list has been implemted for hostnames. This will allow the connector to be configured to follow the LaxRedirectStrategy only when the hostname of the redirect location is in the allow list. The default will continue to block the redirect.
INC-144601 · Issue 602423
Empty addresses removed from email
Resolved in Pega Version 8.6
After upgrade, an issue was seen when sending email to multiple 'To' addresses generated an exception if any 'To' address had an empty value. To resolve this, a check has been added that will remove any empty address from the recipientTo address list.
INC-144917 · Issue 598199
Healthcheck will only initialize after successful node startup
Resolved in Pega Version 8.6
Nodes were not starting up, but because the Healthcheck service was initialized even though the node was not started properly, errors related to that were overriding the actual exception causing the node startup to fail and it was not possible to diagnose the startup issue. To resolve this, an update has been made that will ensure the Healthcheck service is only initialized when the node is initialized successfully.
INC-144978 · Issue 600589
Updated JSON DT nested page property handling
Resolved in Pega Version 8.6
In a JSON data transform, when using an "Update page" step on a single-page property, as a child step of an "Append and map to" step where a page list property is given, the page list was populated with only one result but the single-page property was treated like a page list and received multiple results. This has been resolved by updating the ClipboardJSONDeserializer implementation and downstream abstractions to support "clipboard only" relations as properties in nested Page Lists.
INC-144982 · Issue 615338
Log-Service-File persistence logic updated
Resolved in Pega Version 8.6
When "Persist Log-Service-File instances" was unchecked and set to false, the process was still writing and committing the Log-Service-File table for every record processed from the file. This was traced to logic that always overrode the setting, and has been resolved by updating the system so the Log-Service-File will only be saved if it meets the conditions check of the setting. If the File Listener is recovering and "Persist Log-Service-File instances" is false/unchecked, the old and the current Log-Service-Files will be deleted.
INC-145255 · Issue 600273
EmailListener restart correctly reflects Inbox folder change
Resolved in Pega Version 8.6
The Email Listener did not pick up a change in the INBOX folder name when the listener was restarted, but did when the server itself was restarted. This was due to the folder name being cached but not being included in the cache key: a cache change only occurs when the key of the cache changes. This meant that even after changing the folder name, the object was treated as 'not changed' and returned the older connection with older folderName. This has been resolved by adding the foldername to the cache key.
INC-145756 · Issue 619295
Logging for MultiNodeSynchronize lock attempts changed from error to warn
Resolved in Pega Version 8.6
The File Listener was logging numerous errors stating "Unable to establish MultiNodeSynchronize lock while trying to determine if listener is enabled for this node". Handling has been previously established for error cases when the Listener is unable to establish a MultiNodeSynchronize lock, but this condition continued to be logged as an error even though it was not related to any failures in functionality. To resolve the logging issue, the logger level has been changed from ERROR to WARN.
INC-146030 · Issue 602604
Added queue process tracer cleanup on node restart
Resolved in Pega Version 8.6
If a node restart occurred while a queue process trace was in progress, some entries in the tracer distributed map were not cleared properly and a subsequent tracer failure was encountered indicating a current trace by a requestor on same operator Id was already running. This has been resolved by clearing the tracer distributed map on node startup for stale entries associated with this node.
INC-146057 · Issue 599806
Secure access for Activities
Resolved in Pega Version 8.6
Authentication requirements have been added to Standard activities.
INC-146123 · Issue 601119
SOAP service exception resolved
Resolved in Pega Version 8.6
A SOAP service created using the Service wizard resulted in a "Caught exception building SOAP request envelope" error when attempting to invoke the generated service/WSDL from the Soap integration wizard or SOAPUI. This was traced to an unexpected conflict with work done earlier in XSDConstants.java around name case matching and certain methods in XSDTreeViewUtils used to generate the attribute text "name" during SOAP service WSDL generation, and has been resolved.