Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/4.1.0 rc1 #2736

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG-4.1.x.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 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
Loading