CS
SCALE.sdm
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage
Confidential information

1.256

Release date: February 24, 2026

New featureIt is now possible to upload attachments via AuxiliaryContentLoader. [ #11513 ]

An API was added to the auxiliary content loader, which allows users to:

  • Upload attachments.
  • Edit or overwrite an attachment if it already exists.
  • Extract or request attachments.
    def add_attachment(self, content_type: str, name: str, path: str) -> None:
        self._content_loader.add_attachment(
            pool_entry_uuid=self.entry.uuid,  # target
            content_type=content_type,
            name=name,  # Name for the file
            path=path,  # Path of a file
        )

ImprovementSCALE.search: Table visualization was improved for large data sets. [ #11520 ]

Improvements were made to the way that tables are displayed in SCALE.search. In the past, large data sets ran into a memory limit. This caused tables to be displayed incorrectly. The visualization has been improved.

Bug fixRemote assembly no longer fails if the assembly contains a run output component that was imported via the "Import from files" window. [ #11562 ]

In the past, users received an error during remote assembly. The error occurred in situations when the assembly contained a run output component that was imported via the Import from files window. This has been fixed.

Bug fixThe permanent vault option now works correctly for simultaneous batch assemblies. [ #11543 ]

This fix relates to the option --permanent-assembly-vault=/assembly-vault, which creates an assembly-vault and stores the downloaded data in this assembly-vault, so that it can be used again if needed instead of downloading the data again from the service. In the past, the option --permanent-assembly-vault=/assembly-vault did not work correctly for batch assemblies. Example: A first assembly starts to download the file. In the meantime, a second assembly starts and wants to use this file. In the past, the second assembly had no way to see if the download was already finished or still ongoing. The result was that the second assembly only saw that a file with this name existed and it would be used in the assembly. This has been fixed to ensure that the assembly is complete.

Bug fixWhen logging in, users no longer run into a timeout if they wait several minutes before clicking on the "Browser Login" button. [ #339 ]