Skip to content

Commit

Permalink
Merge pull request #2737 from dpfaffenbauer/release/4.1.0-RC2
Browse files Browse the repository at this point in the history
[Release] 4.1.0-RC2
  • Loading branch information
dpfaffenbauer authored Oct 21, 2024
2 parents 0b841d6 + 6b13e06 commit d9586dc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG-4.1.x.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/01_Getting_Started/00_Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/CoreShop/Bundle/CoreBundle/Application/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit d9586dc

Please sign in to comment.