Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 4.33 KB

UPGRADE-v9.0.2.md

File metadata and controls

55 lines (40 loc) · 4.33 KB

This guide contains instructions to upgrade from version v9.0.1 to v9.0.2.

Before you start, don't forget to take a look at general instructions about upgrading. There you can find links to upgrade notes for other versions too.

Application

  • generate images_id_seq in data fixtures automatically (#1918)

  • remove unused route /contactForm/ (#1940)

  • remove unnecessary else conditions (#1938)

  • use DIR instead of dirname(FILE) (#1939)

  • call static method as static (#1937)

  • update your project to upload temporary files to abstract filesystem (#1955)

  • fixed displaying errors in popup window (#1970)

  • categories in admin are now loaded using admin locale (#1982)

    • CategoryRepository::getTranslatedAllWithoutBranch() is deprecated, use CategoryRepository::getAllTranslatedWithoutBranch() instead
    • CategoryRepository::getTranslatedAll is deprecated, use CategoryRepository::getAllTranslated() instead
    • CategoryFacade::getTranslatedAllWithoutBranch() is deprecated, use CategoryFacade::getAllTranslatedWithoutBranch() instead
    • CategoryFacade::getTranslatedAll is deprecated, use CategoryFacade::getAllTranslated() instead
    • ProductCategoryFilter::__construct() has changed its interface and argument Domain will be removed in next major
    -   public function __construct(CategoryFacade $categoryFacade, Domain $domain = null)
    +   public function __construct(CategoryFacade $categoryFacade, ?Domain $domain = null, ?LocalizationAlias $localization = null)
  • remove customer and his addresses when customer user is deleted (#1977)

    • there is no need to update your project in any way, we are just noticing you that customer and his addresses are now removed when all his customer users were deleted
  • update your redis build-version to include application environment (#1985)

  • set timezone for your crons (#2000)

  • add acceptance test for testing sending order as logged customer (#2011)

  • fix ImageConfig does not accept extended entities (#1777)