Skip to content

Latest commit

 

History

History
99 lines (92 loc) · 7.3 KB

CHANGELOG-3.0.x.md

File metadata and controls

99 lines (92 loc) · 7.3 KB

3.0.0-beta.2

  • [Order] remove unused CartRepository (coreshop#1801)
  • [PimcoreBundle] add coreshop:migration:migrate and coreshop:migration:generate (coreshop#1802)
  • [FrontendBundle] fix new form namespace (coreshop#1807)
  • [Index] make ListingInterface a Pimcore PaginateListingInterface (coreshop#1790)
  • [Cart] fix existing cart initialization on customer login (coreshop#1779)
  • [CoreBundle] fix saving stores in PaymentProvider (coreshop#1783)
  • [Index] make IndexProcess compatible with the interface (coreshop#1782)
  • [User] remove md5 password and use password_hash (coreshop#1780)
  • [ThemeBundle] refactor theme-context to work with area-bricks (coreshop#1778)
  • [ThemeBundle] remove sylius theme-aware-translator, that doesn't work well with Pimcore (coreshop#1777)
  • [ResourceBundle] allow easier custom resources (coreshop#1776)
  • [Index] remove dbal connection in AbstractListing (coreshop#1769)
  • [Store select / multiselect] Support getOptions() via option provider (coreshop#1773)
  • [CoreExtensions] refactor how Doctrine Entities are cloned (coreshop#1770)
  • [Faker] use fakerphp/faker (coreshop#1768)
  • [CoreBundle] remove duplicate paymentTotal and convertedPaymentTotal from class definition (coreshop#1766)
  • [OrderBundle] fix admin en translations (coreshop#1764)
  • [All] remove installed translations and use symfony translations instead (coreshop#1762)

3.0.0-beta.1

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 }