Upgrading from 0.7.0 to 0.8.0 ============================= Upgrade ``composer.json`` ------------------------- In your ``composer.json`` file, upgrade the version of ``netgen/content-browser`` package to ``~0.8.0`` and run the ``composer update`` command. Breaking changes ---------------- The following breaking changes were made in version ``0.8`` of Content Browser. Follow the instructions to upgrade your code to this newer version. * ``sections`` config has been removed from configuration of item types since overriding sections has never been properly implemented. Remove the section from your own item type definitions. * The concept of item serializer handlers is removed. Previously, they were used to specify how certain data will be serialized for an item. One method that the ``Netgen\ContentBrowser\Item\Serializer\ItemSerializerHandlerInterface`` provided has been moved to ``Netgen\ContentBrowser\Item\ItemInterface``, so you need to move your implementation there: .. code-block:: php // Before $thingOne, 'thingTwo' => $thingTwo, ); } } .. code-block:: php // After