22 June 2023
Check-in action now persists information about the checked-in file. The information is persisted as job parameters, which are visible in the Admin UI. The parameters can be also utilized e.g. when triggering new job or sending mail via job event handlers.
For example:
<Job>
...
<FileModifier>
...
<CreatePDF>
<Checkin fileName="${name}.pdf" />
</CreatePDF>
</FileModifier>
<Events>
<Success>
<NewJob jobcfg="tvc:jobcfg/MyJob.xml" copyParams="true" copyObjectId="true" />
<Mail>
...
<Message>
File Name: ${job.param.fileCheckin.file.name}
Version Object ID: ${job.param.fileCheckin.version.id}
Object ID: ${job.param.fileCheckin.object.id}
Object Type: ${job.param.fileCheckin.object.type}
Object Name: ${job.param.fileCheckin.object.name}
Object Revision: ${job.param.fileCheckin.object.revision}
Object Current: ${job.param.fileCheckin.object.current}
</Message>
</Mail>
</Success>
</Events>
</Job>
Below is the list of fixed bugs as of this release.
Issue No | Description |
---|---|
949 |
TIF migration throws Invalid Password TVC Exception |
951 |
Directory listener for Create/Update integration does not move the file to out/err when using destinations AND update source file set to FALSE. |