Sylius/UPGRADE-2.0.md
2023-09-21 13:02:23 +02:00

2.9 KiB

UPGRADE FROM 1.13 TO 2.0

Codebase

  • Doctrine MongoDB and PHPCR is not longer supported in ResourceBundle and GridBundle:

    • The following classes were removed:

      • Sylius\Bundle\GridBundle\Doctrine\PHPCRODM\DataSource
      • Sylius\Bundle\GridBundle\Doctrine\PHPCRODM\Driver
      • Sylius\Bundle\GridBundle\Doctrine\PHPCRODM\ExpressionBuilder
      • Sylius\Bundle\GridBundle\Doctrine\PHPCRODM\ExpressionBuilderInterface
      • Sylius\Bundle\GridBundle\Doctrine\PHPCRODM\ExpressionVisitor
      • Sylius\Bundle\GridBundle\Doctrine\PHPCRODM\ExtraComparison
      • Sylius\Bundle\ResourceBundle\DependencyInjection\Driver\Doctrine\DoctrineODMDriver
      • Sylius\Bundle\ResourceBundle\DependencyInjection\Driver\Doctrine\DoctrinePHPCRDriver
      • Sylius\Bundle\ResourceBundle\Doctrine\ODM\MongoDB\DocumentRepository
      • Sylius\Bundle\ResourceBundle\Doctrine\ODM\MongoDB\TranslatableRepository
      • Sylius\Bundle\ResourceBundle\Doctrine\ODM\PHPCR\EventListener\DefaultParentListener
      • Sylius\Bundle\ResourceBundle\Doctrine\ODM\PHPCR\EventListener\NameFilterListener
      • Sylius\Bundle\ResourceBundle\Doctrine\ODM\PHPCR\EventListener\NameResolverListener
      • Sylius\Bundle\ResourceBundle\Doctrine\ODM\PHPCR\Form\Builder\DefaultFormBuilder
      • Sylius\Bundle\ResourceBundle\Doctrine\ODM\PHPCR\DocumentRepository
      • Sylius\Bundle\ResourceBundle\EventListener\ODMMappedSuperClassSubscriber
      • Sylius\Bundle\ResourceBundle\EventListener\ODMRepositoryClassSubscriber
      • Sylius\Bundle\ResourceBundle\EventListener\ODMTranslatableListener
    • The following services were removed:

      • sylius.event_subscriber.odm_mapped_super_class
      • sylius.event_subscriber.odm_repository_class
      • sylius.grid_driver.doctrine.phpcrodm
    • The following parameters were removed:

      • sylius.mongodb_odm.repository.class
      • sylius.phpcr_odm.repository.class
    • The following configuration options were removed:

      • sylius.mailer.templates
  • Added the Sylius\Component\Order\Context\ResettableCartContextInterface that extends Sylius\Component\Order\Context\CartContextInterface and Symfony\Contracts\Service\ResetInterface.

  • The name of the default LiipImagineBundle's resolver and loader were changed from default to sylius_image (reference). To change the default resolver and/or loader for LiipImagineBundle, configure cache and/or data_loader parameters under the liip_imagine key.

Frontend

  • use_webpack option was removed from the sylius_ui configuration, and the Webpack has become the only module bundler provided by Sylius.
  • use_webpack twig global variable was removed. Webpack is always used now, and there is no need to check for it.