Skip to main content

Release 26.5.48 on 27.07.2026

· One min read

This release fixes CC and BCC recipients being silently dropped when sending through the cegedim provider, and removes the deadlocks and "record has been changed by another user" errors that occurred on the address table when several documents were processed in parallel.

Bugfix
  • CC and BCC recipients are no longer lost when a document is sent through the cegedim provider. The SOAP call now uses the DocumentSendCc operation with the contract's CcAddress and BccAddress parameters instead of the DocumentSend operation's cc and bcc parameters, which the server ignored (SR-1231)
  • Parallel document processing no longer runs into deadlocks or "the record has been changed by another user" errors on the address table. The table has a new secondary key on Base Type, Base No. so address lookups are index seeks instead of full clustered-index scans, CopyAddress re-reads the row version before writing so a buffer read earlier in the transaction no longer fails on Modify, and the display and formatting reads in the target management use a new read-only address lookup (read isolation ReadCommitted) so a read after a write in the same transaction no longer takes update locks on the whole table (CHN-345)