- Issue created by @kristofferrom
- Status changed to Postponed: needs info
over 1 year ago 8:07pm 14 May 2023 - πΊπΈUnited States markdorison
@kristofferrom What version of Drupal core are you encountering this on?
- Status changed to Closed: works as designed
over 1 year ago 1:31pm 15 May 2023 - πΊπΈUnited States markdorison
Hey @kristofferrom! Version 3.0 is not supported on D9. You will need to upgrade to 3.x at the same time you update Drupal core as it is not possible to support both Drupal 9.x and 10.x in a single release π CsvEncoder::encode must be compatible with Symfony\Component\Serializer\Encoder\EncoderInterface::encode Fixed due to a breaking change in
EncoderInterface::encode()
between Symfony 4.4 (D9) and Symfony 6.2 (D10).When preparing for an upgrade to Drupal 10 we recommend that you widen your Composer version constraints to allow either 2.x or 3.x:
composer require drupal/csv_serialization:^2.0 || ^3.0
. This will allow the module to be automatically upgraded when you upgrade Drupal core.Marking this as "works as designed" even though "designed" isn't really the right word here. Really it's working as expected, though not as we would wish.
- π©π°Denmark kristofferrom
Oops - can't believed I missed core compatibility specs, doh! Thanks for taking the time to tell me still :).