diff --git a/CHANGELOG-4.1.x.md b/CHANGELOG-4.1.x.md index cb3efcdcec..e0af4c0135 100644 --- a/CHANGELOG-4.1.x.md +++ b/CHANGELOG-4.1.x.md @@ -1,3 +1,13 @@ +## 4.1.0-RC2 + +> **Important** The FrontendBundle is now disabled by default. We added a migration to enable it +> Please check if it actually is enabled in the bundles.php file +> If you don't need it, feel free to disable it. +* [ResourceBundle] check also for empty "pimcore_class_name" by @breakone in https://github.com/coreshop/CoreShop/pull/2716 +* [CoreBundle] implement name functions and add migration for order-name and wishlist-name by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2717 +* [Pimcore] introduce the Printable by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2720 +* [Printable] further improvements to new printable feature by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2724 + ## 4.1.0-RC1 > **Important**: Dependency to dachcom-digital/emailizr has been removed due to licensing issues with GPL and CCL. If diff --git a/docs/01_Getting_Started/00_Installation.md b/docs/01_Getting_Started/00_Installation.md index 066027fb88..e6f998684a 100644 --- a/docs/01_Getting_Started/00_Installation.md +++ b/docs/01_Getting_Started/00_Installation.md @@ -13,6 +13,7 @@ CoreShop: return [ ... CoreShop\Bundle\CoreBundle\CoreShopCoreBundle::class => ['all' => true], + CoreShop\Bundle\FrontendBundle\CoreShopFrontendBundle::class => ['all' => true], ]; ``` 3. To configure the CoreShop Password Hasher, create or update the `config/packages/pimcore.yaml` and add: diff --git a/src/CoreShop/Bundle/CoreBundle/Application/Version.php b/src/CoreShop/Bundle/CoreBundle/Application/Version.php index f8eb9f85ad..4f8290952a 100644 --- a/src/CoreShop/Bundle/CoreBundle/Application/Version.php +++ b/src/CoreShop/Bundle/CoreBundle/Application/Version.php @@ -26,7 +26,7 @@ final class Version public const RELEASE_VERSION = '0'; - public const EXTRA_VERSION = 'RC1'; + public const EXTRA_VERSION = 'RC2'; public static function getVersion(): string {