- Issue created by @claudiu.cristea
- last update
over 1 year ago 2 pass - @claudiucristea opened merge request.
- Status changed to Needs review
over 1 year ago 9:35pm 5 June 2023 - Status changed to Closed: works as designed
over 1 year ago 3:23pm 7 June 2023 - πΊπΈUnited States markdorison
Hey @claudiu.cristea! 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.
- π·π΄Romania claudiu.cristea Arad π·π΄
@markdorison, fair enough. Thanks