Skip to content
Snippets Groups Projects
  1. Feb 13, 2024
  2. Feb 12, 2024
  3. Feb 06, 2024
  4. Feb 03, 2024
  5. Jan 30, 2024
  6. Jan 29, 2024
  7. 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
  8. 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
  9. Jan 25, 2024
  10. Jan 24, 2024
    • Benjamin Franzke's avatar
      [FEATURE] Make backend URL configurable · a94b7b5f
      Benjamin Franzke authored
      The TYPO3 Backend URL is made configurable in order to enable optional
      protection against application admin interface infrastructure
      enumeration (WSTG-CONF-05). Both, frontend and backend requests are
      now handled by the PHP script `/index.php` to enable virtual admin
      interface URLs.
      
      The default TYPO3 Backend entrypoint path `/typo3` can be changed by
      specifying a custom URL path or domain name in
      `$GLOBALS['TYPO3_CONF_VARS']['BE']['entryPoint']`.
      
      This change requires web server adaption. A silent migration and
      according documentation for custom web server configurations is added.
      A deprecation layer (for non-adapted systems) is in place that rewrites
      the server environment variables passed to `/typo3/index.php` as if
      `/index.php` was used directly. This layer will be removed in TYPO3 v14.
      
      This change does not take assets into account, only routing is adapted.
      That means composer mode will use assets provided via _assets as before
      and TYPO3 classic mode will serve...
      a94b7b5f
    • Stefan Bürk's avatar
      [!!!][TASK] Require doctrine/dbal 4.x · 8af1c49d
      Stefan Bürk authored
      TYPO3 v13 requires Doctrine DBAL 4 and will be subsequently updated.
      
      Doctrine DBAL 4 is shipping with a few breaking changes, where
      most breaking stuff is coped and handled by the TYPO3 core and placed
      in internal API implementation and wrappings. However, minor breaking
      things on extended and provided API's are included and requires proper
      adoption by extensions.
      
      * [1] `AbstractPlatform::getName()` has been removed and `instance of`
        checks are required to be used instead. TYPO3 adopted this removal
        in the extended platform classes and does not provide a b/c for it.
      
      * [2] Doctrine DBAL dropped support for older RDBMS version, aligned
        the Platform class extend chain and removed not-supported version
        for PostgreSQL and MariaDB. TYPO3 extended platform implementation
        are aligned and platform replacement in the replacement driver
        middleware modified.
      
      * [3] Doctrine DBAL switched the casing (renaming) of some
        of the Platform classes, where the new casing ...
      8af1c49d
  11. Jan 18, 2024
  12. Jan 12, 2024
  13. Jan 09, 2024
  14. Jan 08, 2024
  15. Jan 06, 2024
  16. Jan 04, 2024
  17. Dec 28, 2023
  18. Dec 09, 2023
  19. Dec 08, 2023
  20. Dec 04, 2023
  21. Dec 02, 2023
  22. Nov 29, 2023
  23. Nov 27, 2023
  24. Nov 25, 2023
  25. Nov 24, 2023
  26. Nov 14, 2023
  27. Nov 06, 2023
  28. Nov 02, 2023
  29. Nov 01, 2023
  30. Oct 31, 2023
  31. Oct 30, 2023
  32. Oct 24, 2023
    • Christian Kuhn's avatar
      [TASK] Bump friendsofphp/php-cs-fixer:^3.35.1 · 41e66f9c
      Christian Kuhn authored
      It's time to update to latest changes of php-cs-fixer
      to align with current community rules. This brings a
      rather huge series of changes, main changes due to
      single_line_empty_body rule which now formats empty
      class and method body curly braces into a single line,
      plus changes from function_declaration rule which tends
      to avoid more whitespaces.
      
      The change has a slight impact on phpstan, we
      regenerate baseline.
      
      To reduce backport headaches, this change is backported
      to v12 and v11.
      
      > composer req --dev friendsofphp/php-cs-fixer:^3.35.1
      > Build/Scripts/runTests.sh -s cgl
      > Build/Scripts/runTests.sh -s phpstanGenerateBaseline
      
      Resolves: #102236
      Releases: main, 12.4, 11.5
      Change-Id: Iea45b10667951672b2194033216c49f580799f55
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/81512
      
      
      Tested-by: default avatarcore-ci <typo3@b13.com>
      Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      Tested-by: Jasmina Ließmann <minapokhalo+...
      41e66f9c
  33. Oct 10, 2023
  34. Oct 09, 2023