5.4.0 

Breaking 

Nothing

Features 

  • Add support for PHP 8.5.
  • Handle errors during import of single event. Those will be logged, and no longer break the whole import. The import will continue with next event.
  • Support paging of destination.one API. That way we remove the rest_limit configuration option and always import all available events.
  • Associate imported events with the corresponding import configuration. This is exposed as read only field in TYPO3 backend. This adds some debugging info for editors and admins, and paves the way for future features.
  • Cleanup no longer existing events during import. Those are deleted via TYPO3 API (soft deleted). Files are therefore kept until those records are finally removed and files are clean up by separate cleanup job.

Fixes 

  • Wrong date creation based on destination.one repeatUntil. Editors don't have access to a time, only the date. We therefore no longer respect the time, but only the date. Also the date is inclusive, so we need to repeat dates including the date mentioned in repeatUntil.

    This now also affects the import_repeat_until in the same way, to streamline the behaviour. This is now also inclusive. +10 days will not include the 10th day.

    We could not use DatePeriod::INCLUDE_END_DATE as we still support PHP 8.1 which isn't aware of the constant.

Tasks 

Deprecation 

Nothing