- PHP8.0 Return Types (coreshop#1288, coreshop#1666)
- Cart eq Order eq Quote - one Object to rule them all (coreshop#1289)
- Strict Types (coreshop#1294)
- make service-aliases deprecated and change all internal uses of it (coreshop#1320)
- change IndexableInterface and pass IndexInterface (coreshop#1326)
- remove php template helpers (coreshop#1323)
- [Panther] Implement ui-tests (coreshop#1335, coreshop#1347)
- introduce class translations (coreshop#1349)
- change cart/order base-currency conversion (coreshop#1324)
- Allow to create a new Customer within the order-creation Process (coreshop#1236)
- introduce currency fraction display provider service (coreshop#1394)
- introduce tax-display service (coreshop#1393)
- integration to dachcom-digital/pimcore-seo (coreshop#1399)
- remove usage of ItemKeyTransformer Service and use DataObject\Service directly (coreshop#1411)
- create default address if customer doesn't have one (coreshop#1435)
- apply confirm and pay transition for orders with value of 0 (coreshop#1434)
- resolve theme only if not in admin (coreshop#1505)
- Pimcore X Compatibility (coreshop#1511, coreshop#1574, coreshop#1599, coreshop#1621)
- migrate to sylius/theme-bundle (coreshop#1513)
- implement new JS Routing and start with first backend tests (coreshop#1420)
- some JMS fixes and payum concurrency test (coreshop#1550)
- cleanup proposal stuff and fix serialization of Doctrine collections (coreshop#1641)
- migrate migrations to Doctrine Migrations Bundle (coreshop#1635)
- Feature/customer list (coreshop#1667)
- Fix merge for index-conditions (coreshop#1673)
- fix voucher modifier with empty voucher code (coreshop#1672)
- [ResourceBundle] fix unserialization of CoreShop entities saved by pimcore auto save (coreshop#1674)
- split customer and user into seperate entities (coreshop#1669)
- add proper events for cart-item add and remove (coreshop#1676)
- Introduce a folder creation service which loads the paths directly from the metadata (coreshop#1677)
- Introduce payum payment bundle (coreshop#1675)
- [Slug] default generate slugs and use instead of static routes for product and category (coreshop#1678, coreshop#1701)
- [FrontendBundle] Macro "price" is not defined in template (coreshop#1684)
- [SEO - ImageExtractor] Add thumbnail definition coreshop_seo (coreshop#1688)
- [Shipping] Ability to hide carrier from checkout (coreshop#1693)
- [Psalm] Introduce Psaml Tests for Components (coreshop#1727)
- Removed security.yaml, since Pimcore 10, you have to define the security config yourself, just copy following to config/packages/security.yaml (coreshop#1599)
parameters:
coreshop.security.frontend_regex: "^/(?!admin)[^/]++"
security:
providers:
coreshop_customer:
id: CoreShop\Bundle\CoreBundle\Security\ObjectUserProvider
firewalls:
coreshop_frontend:
anonymous: ~
provider: coreshop_customer
pattern: '%coreshop.security.frontend_regex%'
context: shop
form_login:
login_path: coreshop_login
check_path: coreshop_login_check
provider: coreshop_customer
failure_path: coreshop_login
default_target_path: coreshop_index
use_forward: false
use_referer: true
remember_me:
secret: "%secret%"
name: APP_CORESHOP_REMEMBER_ME
lifetime: 31536000
remember_me_parameter: _remember_me
logout:
path: coreshop_logout
target: coreshop_login
invalidate_session: false
success_handler: CoreShop\Bundle\CoreBundle\EventListener\ShopUserLogoutHandler
access_control:
- { path: "%coreshop.security.frontend_regex%/_partial", role: IS_AUTHENTICATED_ANONYMOUSLY, ips: [127.0.0.1, ::1] }
- { path: "%coreshop.security.frontend_regex%/_partial", role: ROLE_NO_ACCESS }