What's New In Magento 2.4.6

Sdílet
Vložit
  • čas přidán 13. 03. 2023
  • Want to know what's new in Magento? Version 2.4.6 was released on March 14, 2023, and is the latest & greatest. Watch the entire video to know the latest features, bugfixes & improvements to both Magento Open Source and Adobe Commerce.
    0:06 - Community Prioritization Process
    1:01 - PHP 8 support
    2:11 - Other Software updates
    3:21 - Exciting updates
    6:44 - Bug fixes and improvements
    7:18 - Security and accessibility improvements
    7:48 - Notable updates and bug fixes
    8:59 - Adobe Commerce beta program
    9:57 - Updated release cycle
    LINKS FROM THE VIDEO
    =======================================
    🧑‍💻 Magento Open Source Community Prioritization Process - community.magento.com/t5/Mage...
    ⛙ Merged Community GitHub Issues - github.com/magento/magento2/p...
    🐘 PHP Supported Versions - www.php.net/supported-version...
    🗳️ Magento 2 PHP 8.x Compatibility Checker Module - github.com/elgentos/magento2-...
    📑 Elasticsearch Licensing Change - www.elastic.co/pricing/faq/li...
    🏁 High-throughput order processing - experienceleague.adobe.com/do...
    📆 Magento Release Schedule - experienceleague.adobe.com/do...
    READY TO LEARN MAGENTO?
    =======================================
    🏫 Start Learning Magento at M.academy - m.academy
    🚀 Magento 2 Coding Kickstart - m.academy/courses/magento-2-c...
    FOLLOW ME
    =======================================
    🧑‍💼 LINKEDIN: / markshust
    🐦 TWITTER: / markshust
    #magento #magento2 #programming #opensource #ecommerce
  • Jak na to + styl

Komentáře • 55

  • @MarkShust
    @MarkShust  Před rokem +1

    If you're wondering if it's still a good time to learn Magento 2... check out this video! 👉 czcams.com/video/kdgfGlds5GI/video.html

  • @denniszhaunerchyk6191
    @denniszhaunerchyk6191 Před rokem +4

    You’re doing a great job of keeping the Magento community updated in both LinkedIn and CZcams. Thank you Mark for creating this awesome concentrate of updates about new Magento releases!

    • @MarkShust
      @MarkShust  Před rokem

      My pleasure Dennis, …thanks so much for the kind words!! 🙏

  • @hav_bs0lll
    @hav_bs0lll Před rokem +3

    Awesome, Thanks Mark for keeping us updated

  • @roshanyadav89
    @roshanyadav89 Před rokem +2

    Cool 👌

    • @MarkShust
      @MarkShust  Před rokem +1

      Glad you liked the video! 🙌

  • @DimitryCherkashin85
    @DimitryCherkashin85 Před rokem +2

    Thanks, Mark!

  • @DanielHPavey
    @DanielHPavey Před rokem +3

    Thanks Mark.. great summary as always... It's getting to the point that we don't upgrade until we've watched your video... 😉

    • @MarkShust
      @MarkShust  Před rokem

      Haha that's awesome to hear Daniel! Appreciate it 🙌

  • @robkgilchrist
    @robkgilchrist Před rokem +2

    Great video Mark! Super Informative.

    • @MarkShust
      @MarkShust  Před rokem +1

      Thanks Rob, glad you liked it! 🤗

  • @DenDzhura
    @DenDzhura Před rokem +2

    Great quick overview, definitely "like"!

  • @oleksandrdykyi734
    @oleksandrdykyi734 Před rokem +2

    Great video. Thank you

    • @MarkShust
      @MarkShust  Před rokem +1

      Thank you, glad you liked it!

  • @cmuench
    @cmuench Před rokem +2

    Great summary video. Thanks for your passion.

  • @enriquedb666
    @enriquedb666 Před rokem +1

    love your channel man, keep the good work

    • @MarkShust
      @MarkShust  Před rokem

      Appreciate it Enrique 🤜 🤛

  • @mbissonho
    @mbissonho Před rokem +1

    Awesome! Great content!

    • @MarkShust
      @MarkShust  Před rokem

      Glad you think so Mateus! 🤘

  • @gnaniboy
    @gnaniboy Před rokem +1

    Mark, you are a born mentor! Thank you for videos and materials you share with us!

    • @MarkShust
      @MarkShust  Před rokem

      Really appreciate this, so much! 🙏 🤗

  • @xdxylitol9407
    @xdxylitol9407 Před rokem +2

    thank you Mark

  • @naseer_aslam
    @naseer_aslam Před rokem +2

    Thank You Sir.😍🥰

    • @MarkShust
      @MarkShust  Před rokem +1

      You're always welcome Muhammad! ❤️

  • @StarlynsAgency
    @StarlynsAgency Před rokem +3

    Juicy

    • @MarkShust
      @MarkShust  Před rokem +1

      Some good stuff just came out!

  •  Před rokem +2

    Great as always, Mark! I'm struggling with setup:upgrade since yesterday, by the way, comming from a 2.4.5 to the latest 2.4.6... Could you do a video showing the updgrade process with Community and/or Cloud? Best regards from Brazil!

  • @sakikuyy
    @sakikuyy Před rokem +2

    First 🙂 Thanks for this informative video Mark!

    • @MarkShust
      @MarkShust  Před rokem +1

      Woohoo... I appreciate it! 🙌 You're welcome, this is a really good M2 release.

  • @aurelioflores4571
    @aurelioflores4571 Před 4 měsíci +1

    Hi Mark, thank you for your attention,
    I have a question, I have often seen in the Magento documentation the following command specifically what it performs:
    composer --no-ansi --no-interaction install --no-progress --prefer-dist --optimize-autoloader
    I have seen that after localization they recommend that command,
    best regards

    • @MarkShust
      @MarkShust  Před 4 měsíci

      Hey Aurelio,
      If you remove all of the flags/arguments of this command, it's basically just "composer install". The "no-ansi no-interaction" tells composer to not prompt the user for anything, which basically runs a headless composer install command which doesn't require your interaction to proceed. The "no-progress" flag doesn't display the progress output of running this command. The "prefer-dist" flag means that it prefers a distribution (tarball) of a package rather than retrieving it from source code, and the "optimize-autoloader" builds a file->class mapping which speeds up loads on production. Note that you probably don't want to run any of these flags in developer mode, as "composer install" is just fine and is the preferred method in development. So these flags are specific to production and may vary from environment to environment.
      Cheers,
      -M

  • @techwithcoding641
    @techwithcoding641 Před rokem +3

    just waiting when we the page builder include responsive functionality
    so we can style it from page builder instead of doing separate less styling

  • @Act1veSp1n
    @Act1veSp1n Před rokem +2

    oh thank god they are doing public beta releases.

    • @MarkShust
      @MarkShust  Před rokem +1

      Agreed, this is long overdue. Really looking forward to this.

  • @vantruongdong1899
    @vantruongdong1899 Před rokem +2

    Great, Mark! I'm struggling with upgrade version from 2.4.5 (PHP7.4) to 2.4.6 (used PHP8.1). Although I used PHP8.1 but error is "Magento supports PHP 8.1.0 or later". Can u help!

    • @MarkShust
      @MarkShust  Před rokem +1

      You may want to confirm the PHP version listed in your composer.json file (and related composer lock file). Otherwise, that’s an odd error if you have PHP 8.1 installed!

    • @skillboosteracademy
      @skillboosteracademy Před rokem

      Check this post :
      czcams.com/video/I5rJKH2ZBac/video.html
      Also make sure your system full fill your Magento requirements.

  • @HaifengZhu-pn3uq
    @HaifengZhu-pn3uq Před rokem +1

    I heard people say there is only page builder for Magento Commerce, I want to know if there is block editor or page builder for Magento Open Source

    • @MarkShust
      @MarkShust  Před rokem

      That used to be the case, but Adobe open-sourced PageBuilder with Magento 2.4.3! So everyone should have access to it now, regardless of if you are Enterprise (Adobe Commerce) or Open Source (Magento).

  • @musammil111
    @musammil111 Před rokem +1

    Hi Mark, Thanks for your video. I have downloaded the magento2.4.6 trying to install with elasticsearch8.4.0. But I am getting the error "Could not validate a connection to the OpenSearch. No alive nodes found in your cluster" I have given only seachengine as Elastic search. But still is looking Opensearch. Please let me know the fix

    • @MarkShust
      @MarkShust  Před rokem +1

      Is this with docker-magento? If so, please open a ticket in the repo. I’m not quite sure!

  • @hansphung
    @hansphung Před rokem +2

    Can I install it now?

    • @MarkShust
      @MarkShust  Před rokem +1

      Yes, it was generally available as of 8am ET yesterday!

  • @slava7359
    @slava7359 Před rokem +1

    what I can say after upgrading several projects to Magento 2.4.5 the core looks pretty the same and does not use new php 8 features, so all these "perfect" updates look like just a bug fixing.
    even things that are declared deprecated by magento itself had not been changed (like using escaper class for templates, get rid of object manager, view models instead of helpers in templates etc.)
    new features like gallery look like trying to do the same things as modern frameworks did long time ago.
    and this creepy outdated frontend is still the same)
    huva theme gives some hope but again it looks like an attempt to follow modern frontend that works for years already on other platforms

    • @MarkShust
      @MarkShust  Před rokem +1

      Magento 2.4.5 was primarily a bugfix release, which is why I didn’t create a video summary for it. It takes a while for the core to get updated code, and hopefully it’s something we see updated in newer versions. Your other comments are too critical for me to take seriously.

    • @slava7359
      @slava7359 Před rokem

      @@MarkShust in 2.4.6 core is pretty the same.
      it's not critical it's how it is.
      for example, I remember you was excited about declaring properties in the class constructor feature few years ago, it can help to decrease amount of Magento code significantly, but core constructors are still the same. And there are many more things like that

    • @dichen4495
      @dichen4495 Před 7 měsíci

      Hyvä themes? @@slava7359