Skip to content
Snippets Groups Projects
  1. Nov 15, 2021
    • Stefan Bürk's avatar
      [BUGFIX] Raise 3rd party composer packages to composer.lock version · bce2a155
      Stefan Bürk authored
      During testing to activate E_ALL and PHP 8.1 testing with activated
      E_ALL, nightly 'composerMin' tests for PHP8.1 are failing with several
      E_DEPRECATED warnings, which was not discoverd in composerLock tests.
      
      Several composer packages, ex. 'symfony/finder' and 'symfony/routing',
      are required with different min versions than written in composer.lock
      file, thus downgrading these components which emits E_DEPRECATED PHP8.1
      warnings in nightly composerMin tests execeuted with PHP 8.1.
      
      'symfony/options-resolver' needs to be added directly, as this has been
      installed as dependency with different lower version constraints for
      'friendsofphp/php-cs-fixer' and 'symfony/rate-limiter', thus we need to
      add it directly with the locked version as min requirement as there are
      no newer versions of these packages with needed min version as required
      version.
      
      'bacon/bacon-qr-code' needs to be raised to avoid a float to int PHP8.1
      conversion warning.
      
      This patch acts as pre-patch to activate E_ALL and PHP 8.1 testing and
      thus raise version of these components to the currently locked version
      in 'composer.lock' file, to be conservative.
      
      Used composer commands:
      
      composer req bacon/bacon-qr-code:^2.0.4
      composer req bacon/bacon-qr-code:^2.0.4 \
        -d typo3/sysext/core --no-update
      
      composer req masterminds/html5:^2.7.5
      composer req masterminds/html5:^2.7.5 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/config:^5.3.4
      composer req symfony/config:^5.3.4 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/console:^5.3.7
      composer req symfony/console:^5.3.7 \
        -d typo3/sysext/core --no-update
      composer req symfony/console:^5.3.7 \
        -d typo3/sysext/redirects --no-update
      
      composer req symfony/dependency-injection:^5.3.7
      composer req symfony/dependency-injection:^5.3.7 \
        -d typo3/sysext/core --no-update
      composer req symfony/dependency-injection:^5.3.7 \
        -d typo3/sysext/extbase --no-update
      composer req symfony/dependency-injection:^5.3.7 \
        -d typo3/sysext/fluid --no-update
      
      composer req symfony/expression-language:^5.3.7
      composer req symfony/expression-language:^5.3.7 \
        -d typo3/sysext/core --no-update
      composer req symfony/expression-language:^5.3.7 \
        -d typo3/sysext/form --no-update
      
      composer req symfony/filesystem:^5.3.4
      composer req symfony/filesystem:^5.3.4 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/finder:^5.3.7
      composer req symfony/finder:^5.3.7 \
        -d typo3/sysext/core --no-update
      composer req symfony/finder:^5.3.7 \
        -d typo3/sysext/install --no-update
      
      composer req symfony/http-foundation:^5.3.7
      composer req symfony/http-foundation:^5.3.7 \
        -d typo3/sysext/core --no-update
      composer req symfony/http-foundation:^5.3.7 \
        -d typo3/sysext/install --no-update
      
      composer req symfony/mailer:^5.3.4
      composer req symfony/mailer:^5.3.4 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/mime:^5.3.7
      composer req symfony/mime:^5.3.7 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/polyfill-intl-normalizer:^1.23.0
      composer req symfony/polyfill-intl-normalizer:^1.23.0 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/polyfill-intl-icu:^1.23.0
      composer req symfony/polyfill-intl-icu:^1.23.0 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/polyfill-intl-idn:^1.23.0
      composer req symfony/polyfill-intl-idn:^1.23.0 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/polyfill-mbstring:^1.23.1
      composer req symfony/polyfill-mbstring:^1.23.1 \
        -d typo3/sysext/core --no-update
      composer req symfony/polyfill-mbstring:^1.23.1 \
        -d typo3/sysext/frontend --no-update
      
      composer req symfony/property-access:^5.3.7
      composer req symfony/property-access:^5.3.7 \
        -d typo3/sysext/extbase --no-update
      
      composer req symfony/property-info:^5.3.7
      composer req symfony/property-info:^5.3.7 \
        -d typo3/sysext/extbase --no-update
      
      composer req symfony/rate-limiter:^5.3.4
      composer req symfony/rate-limiter:^5.3.4 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/routing:^5.3.7
      composer req symfony/routing:^5.3.7 \
        -d typo3/sysext/core --no-update
      
      composer req symfony/var-dumper:^5.3.7
      composer req symfony/var-dumper:^5.3.7 \
        -d typo3/sysext/adminpanel --no-update
      
      composer req symfony/yaml:^5.3.6
      composer req symfony/yaml:^5.3.6 \
       -d typo3/sysext/core --no-update
      
      Following are needed, but are new as direct requirements but locked:
      
      composer req symfony/options-resolver:^5.3.7
      composer req symfony/options-resolver:^5.3.7 \
        -d typo3/sysext/core --no-update
      
      Resolves: #95970
      Releases: master
      Change-Id: I43441ff6ba260721026447c035d0f2a56902119b
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/72166
      
      
      Tested-by: default avatarcore-ci <typo3@b13.com>
      Tested-by: default avatarJochen <rothjochen@gmail.com>
      Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
      Reviewed-by: default avatarJochen <rothjochen@gmail.com>
      Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
      bce2a155
    • Peter Kraume's avatar
      [BUGFIX] Fix typo in description of LostFilesCommand · 01e867b0
      Peter Kraume authored
      Resolves: #95971
      Releases: master
      Change-Id: I73f4d694d3a641c07c10b31c7e508f20836a955c
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/72169
      
      
      Tested-by: default avatarOliver Hader <oliver.hader@typo3.org>
      Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
      Reviewed-by: default avatarOliver Hader <oliver.hader@typo3.org>
      Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
      01e867b0
    • Christian Eßl's avatar
      [BUGFIX] Correctly double and single quotes in page tree tooltips · ab479dd5
      Christian Eßl authored
      There were several problems with tooltips in the page tree:
      
      - htmlspecialchars was applied twice to the tooltip string. Once in
      BackendUtility::titleAttribForPages, once in TreeController.
      - When applying double or single quotes to a page title, the tooltips in
      the page tree would show these as html entities.
      
      Double and single quotes are now allowed, while any potential html tags
      in the title will be stripped from the tooltip. Any of those characters
      (", ', <, >) left in the tooltip are later escaped to unicode in the
      json view.
      
      Resolves: #91424
      Releases: master
      Change-Id: I53b2ad6bbd4e4131535eb573422a8cbd5d002858
      Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64511
      
      
      Tested-by: default avatarBenni Mack <benni@typo3.org>
      Tested-by: default avatarcore-ci <typo3@b13.com>
      Tested-by: default avatarOliver Hader <oliver.hader@typo3.org>
      Reviewed-by: default avatarBenni Mack <benni@typo3.org>
      Reviewed-by: default avatarOliver Hader <oliver.hader@typo3.org>
      ab479dd5
  2. Nov 13, 2021
  3. Nov 12, 2021
  4. Nov 11, 2021
  5. Nov 10, 2021