Hotfix 1.10.6

Release Date: 28/07/2023

Fixes

  • [ESSD-223] Fixed document bulk deletion bug that would happen in some conditions due to schema constraints.

  • [ESSD-217] Fixed issue with TFA signatures credential exchange encryption in environments with several eSign instances and a load balancer

  • Fixed a bug that would cause signatures without a watermeark to not be rendered in eSign Viewer

  • Fixed a minor bug that caused eSign Viewer to send too many heartbeats while the document had not been loaded yet

  • Fixed a minor bug that would cause multiple eSign instances (when loaded for the first time connected to an empty Database) to write the same licensing information more than once

Upgrade Notes

Important changes

If upgrading from version 1.10.x, you are using PostgreSQL or Oracle databases and if the eSign’s database auto deploy is turned off you will need to run a migration SQL script. The script is available in the 1.10.6 incremental scripts folder (or below).
ALTER TABLE ARTIFACT
			DROP CONSTRAINT FK_ATF_ATFCOMPRESSDATA;

ALTER TABLE ARTIFACT
			ADD CONSTRAINT FK_ARTIFACT_ARTIFACT_COMPRESSDATA
			FOREIGN KEY (ARTIFACT_COMPRESSDATA)
			REFERENCES ARTIFACT_DATA(ARTIFACT_DATA_ID)
			ON DELETE CASCADE;

Also

If you are upgrading directly from 1.9.x, check the migration steps to understand how to upgrade.