Skip to content
Snippets Groups Projects
  1. Jun 20, 2024
  2. Jun 18, 2024
  3. Jun 17, 2024
  4. Jun 11, 2024
  5. Jun 09, 2024
  6. Jun 01, 2024
  7. May 17, 2024
  8. May 16, 2024
  9. May 14, 2024
  10. May 13, 2024
  11. May 05, 2024
  12. May 03, 2024
  13. Apr 26, 2024
  14. Apr 23, 2024
  15. Apr 08, 2024
  16. Apr 07, 2024
  17. Apr 03, 2024
  18. Mar 06, 2024
  19. Feb 28, 2024
  20. Feb 26, 2024
  21. Feb 24, 2024
  22. Feb 13, 2024
  23. Feb 06, 2024
  24. Feb 03, 2024
  25. Jan 30, 2024
  26. Jan 29, 2024
  27. Jan 27, 2024
    • Stefan Bürk's avatar
      [TASK] Upgrade to `doctrine/dbal:4.0.0-RC2` · 3b563e58
      Stefan Bürk authored
      Doctrine DBAL has been upgraded to the next
      major version using the development version
      as a intermediate solution. Recently, the
      second release candidate has been released.
      
      This change upgraded to that candidate now.
      Adding the release candidate to a project
      root composer.json is still needed as a
      workaround - or lowering the minimum stability.
      
      Used command(s):
      
      > \
        composer req --no-update --no-install \
          -d typo3/sysext/redirects \
          "doctrine/dbal":"4.0.0-RC2@rc" ; \
        composer req --no-update --no-install \
          -d typo3/sysext/core \
          "doctrine/dbal":"4.0.0-RC2@rc" ; \
        composer req --no-update --no-install \
          -d typo3/sysext/install \
          "doctrine/dbal":"4.0.0-RC2@rc" ; \
        composer req -W \
          "doctrine/dbal":"4.0.0-RC2@rc" ; \
        COMPOSER=composer.dist.json composer req --no-update \
          -d Build/composer \
          "doctrine/dbal":"4.0.0-RC2@rc"
      
      Resolves: #102959
      Releated: #102875
      Releases: main
      
      Change-Id: Ia4c4c39234c68d6382fd6bebcc359eac6a8ab51e
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82674
      
      
      Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      Tested-by: default avatarBenni Mack <benni@typo3.org>
      Tested-by: default avatarcore-ci <typo3@b13.com>
      Reviewed-by: default avatarBenni Mack <benni@typo3.org>
      Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      3b563e58
  28. Jan 26, 2024
    • Christian Kuhn's avatar
      [TASK] Move 'extension download' upgrade wizard to EM · 3e6b817a
      Christian Kuhn authored
      The install tool has just a few dependencies to
      ext:extensionmanager. Most notably, it ships the
      AbstractDownloadExtensionUpdate upgrade wizard,
      which is used when core extracts stuff to dedicated
      extensions that are removed from monorepo.
      
      The v12 upgrade wizard for 'fe_login_mode' uses this.
      
      These upgrade wizards are tailored for non-composer-mode
      only, just like the extensionmanager, which essentially
      does nothing in composer mode.
      
      To loosen the dependency from ext:install to
      ext:extensionmanager, the patch moves the abstract, a
      model class for this case, plus the fe_login_mode
      implementation to ext:extensionmanager.
      
      Class aliases are established, so a casual deprecation
      is enough in this case. A few extensions rely on the
      class, typically those that try to extend the upgrade
      range of core by forward porting wizards older than
      two major core versions. Those shoud continue to work
      with v13, and will have to adapt the class namespace
      of the abstract with v14 latest.
      
      Moving the fe_login_mode wizard around does not make the
      wizard show up again in case the wizard has been marked
      'done' during v12 upgrade already, since usually the
      according DB field does not exist anymore. We don't need
      special handling for this case.
      
      Resolves: #102943
      Releases: main
      Change-Id: Idb5e6c90900ffad7f9c3c383fff58a05c6728aa9
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82659
      
      
      Tested-by: default avatarAndreas Kienast <a.fernandez@scripting-base.de>
      Tested-by: default avatarcore-ci <typo3@b13.com>
      Tested-by: default avatarNikita Hovratov <nikita.h@live.de>
      Reviewed-by: default avatarAndreas Kienast <a.fernandez@scripting-base.de>
      Reviewed-by: default avatarNikita Hovratov <nikita.h@live.de>
      3e6b817a
  29. Jan 25, 2024
  30. Jan 24, 2024
  31. Jan 12, 2024
  32. Jan 09, 2024
  33. Jan 08, 2024
  34. Jan 06, 2024
  35. Jan 04, 2024
    • Benni Mack's avatar
      [TASK] Allow usage of symfony 7 · a1a12035
      Benni Mack authored
      This change enables symfony 7 in
      addition to symfony 6 in TYPO3.
      
      Symfony7 requires PHP 8.2, thus
      is not installed by default for the
      time being, as this change is also
      allowed for TYPO3 v12 support when
      running with PHP 8.2 and composer.
      
      Used commands:
      
      composer req -W \
       "symfony/config:^6.4 || ^7.0" \
       "symfony/console:^6.4 || ^7.0" \
       "symfony/dependency-injection:^6.4 || ^7.0" \
       "symfony/doctrine-messenger:^6.4 || ^7.0" \
       "symfony/expression-language:^6.4 || ^7.0" \
       "symfony/filesystem:^6.4 || ^7.0" \
       "symfony/finder:^6.4 || ^7.0" \
       "symfony/http-foundation:^6.4 || ^7.0" \
       "symfony/mailer:^6.4 || ^7.0" \
       "symfony/messenger:^6.4 || ^7.0" \
       "symfony/mime:^6.4 || ^7.0" \
       "symfony/options-resolver:^6.4 || ^7.0" \
       "symfony/property-access:^6.4 || ^7.0" \
       "symfony/property-info:^6.4 || ^7.0" \
       "symfony/rate-limiter:^6.4 || ^7.0" \
       "symfony/routing:^6.4 || ^7.0" \
       "symfony/uid:^6.4 || ^7.0" \
       "symfony/var-dumper:^6.4 || ^7.0" \
       "symfony/yaml:^6.4 || ^7.0"
      
       composer req --dev -W \
       "codeception/codeception:^5.0.13" \
       "codeception/module-filesystem:^3.0.1" \
       "friendsofphp/php-cs-fixer:^3.46" \
       "symfony/translation:^6.4 || ^7.0"
      
      Resolves: #102746
      Releases: main, 12.4
      Change-Id: I6bbbfb0bc6e26c00fba0010234b5c8b698cf0a81
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82304
      
      
      Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
      Tested-by: default avatarcore-ci <typo3@b13.com>
      Reviewed-by: default avatarBenni Mack <benni@typo3.org>
      Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
      Tested-by: default avatarBenni Mack <benni@typo3.org>
      Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
      Tested-by: default avatarOliver Bartsch <bo@cedev.de>
      Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
      Tested-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
      a1a12035