Skip to content

Conversation

@blumilk-renovate
Copy link
Contributor

@blumilk-renovate blumilk-renovate bot commented Jan 1, 2026

This PR contains the following updates:

Package Type Update Change Pending Age Confidence
actions/cache action minor v4.2.4 -> v4.3.0 age confidence
actions/checkout action patch v4.3.0 -> v4.3.1 age confidence
friendsofphp/php-cs-fixer require patch ^3.89.1 -> ^3.89.2 age confidence
ghcr.io/blumilksoftware/php minor 8.4 -> 8.5 age confidence
kubawerlos/php-cs-fixer-custom-fixers require minor ^3.30.2 -> ^3.36.0 age confidence
phpunit/phpunit (source) require-dev patch ^11.5.43 -> ^11.5.52 11.5.53 age confidence
shivammathur/setup-php action minor 2.35.5 -> 2.36.0 age confidence
symfony/console (source) require-dev patch ^7.3.5 -> ^7.3.10 age confidence

Release Notes

actions/cache (actions/cache)

v4.3.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4...v4.3.0

actions/checkout (actions/checkout)

v4.3.1

Compare Source

PHP-CS-Fixer/PHP-CS-Fixer (friendsofphp/php-cs-fixer)

v3.89.2

Compare Source

  • fix: NoUnneededBracesFixer - do not crash on multiline group import (#​9160)
  • chore: Standardize repository to use British English spelling (#​9154)
  • CI: ensure enforced Symfony version is installed (#​9174)
  • deps: bump php-coveralls to v2.9 (#​9173)
  • refactor: FixerDocumentGenerator::getSetsOfRule - cache resolved sets (#​9170)
  • refactor: FixerDocumentGenerator::getSetsOfRule - use cache (#​9171)
kubawerlos/php-cs-fixer-custom-fixers (kubawerlos/php-cs-fixer-custom-fixers)

v3.36.0

Compare Source

  • CommentedOutFunctionFixer - add dump, dd, d to default functions

v3.35.1

Compare Source

  • NoExtraBlankLinesFixer must run before FunctionParameterSeparationFixer (#​1097)

v3.35.0

Compare Source

  • PhpdocPropertySortedFixer - support @property-read and @property-write
  • PhpdocNoIncorrectVarAnnotationFixer - keep string literals

v3.34.0

Compare Source

  • Add PhpdocPropertySortedFixer
  • Deprecate PhpDocPropertySorterFixer - use PhpdocPropertySortedFixer

v3.33.0

Compare Source

  • Add PhpDocPropertySorterFixer
  • Deprecate PhpdocTagNoNamedArgumentsFixer - use "phpdoc_tag_no_named_arguments"
  • Update minimum PHP CS Fixer version to 3.87.0

v3.32.0

Compare Source

  • Add FunctionParameterSeparationFixer
  • Update minimum PHP CS Fixer version to 3.85.0

v3.31.1

Compare Source

  • PromotedConstructorPropertyFixer - do not promote when there is assignment to variable (#​1063)

v3.31.0

Compare Source

  • Update minimum PHP CS Fixer version to 3.84.0
sebastianbergmann/phpunit (phpunit/phpunit)

v11.5.52: PHPUnit 11.5.52

Compare Source

Fixed
  • #​6495: Source map for issue trigger identification is regenerated in process isolation child processes

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.51: PHPUnit 11.5.51

Compare Source

Added
  • #​6488: Allow disabling issue trigger identification for improved performance
Fixed
  • #​6486: Incorrect file name reported for errors for test methods declared in traits
  • #​6490: Incorrect test count when tests are skipped in before-class method

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.50: PHPUnit 11.5.50

Compare Source

Changed
  • To prevent Poisoned Pipeline Execution (PPE) attacks using prepared .coverage files in pull requests, a PHPT test will no longer be run if the temporary file for writing code coverage information already exists before the test runs

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.49: PHPUnit 11.5.49

Compare Source

Fixed
  • #​6362: Manually instantiated test doubles are broken since PHPUnit 11.2
  • #​6470: Infinite recursion in Count::getCountOf() for unusal implementations of Iterator or IteratorAggregate

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.48: PHPUnit 11.5.48

Compare Source

Changed

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.47: PHPUnit 11.5.47

Compare Source

Fixed
  • #​6470: Mocking a class with a property hook setter accepting more types than the property results in a fatal error

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.46: PHPUnit 11.5.46

Compare Source

  • No changes; phpunit.phar rebuilt with PHP 8.4 to work around PHP-Scoper issue #​1139

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.45: PHPUnit 11.5.45

Compare Source

Changed
  • Updated list of deprecated PHP configuration settings for PHP 8.6
Fixed
  • #​6408: Exception in a data provider method leads to internal PHPUnit error
  • #​6426: Fix migration of configuration without schema location

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:

v11.5.44: PHPUnit 11.5.44

Compare Source

Fixed
  • #​6402: Avoid reading from STDOUT when rewind() fails

Learn how to install or update PHPUnit 11.5 in the documentation.

Keep up to date with PHPUnit:
shivammathur/setup-php (shivammathur/setup-php)

v2.36.0

Compare Source

Changelog

  • Added support for PHP 8.5 stable release.
- name: Setup PHP 8.5 (stable)
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
  • Added support for PHP 8.6.0-dev. Specifying 8.6 in the php-version input should now set up a nightly build from the master branch of php-src. (#​1002)
- name: Setup PHP 8.6.0-dev
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.6'
  • Added support for pdo_ibm and ibm_db2 extensions.
- name: Setup PHP with pdo_ibm and ibm_db2 extensions
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: pdo_ibm, ibm_db2
  • Added support to install blackfire extension on PHP 8.5.
- name: Setup PHP with blackfire extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: blackfire
  • Improved support to detect the required libraries when building from source for common extensions. For example installing gnupg from source would install the required libgpgme library automatically. (#​1021)
- name: Setup PHP with amqp extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: gnupg-1.5.4
  • Improved support for symfony-cli. It should now correctly set up the requested version. (#​1008)
- name: Setup PHP with symfony-cli
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    tools: symfony-cli:5.16.0
  • Improved support for relay extension. Also added support to install the nightly version of the extension. (#​1011, #​1012)

  • Improved installing PHP on macOS. Also fixed installing PHP on macos-15-intel GitHub runner. (#​1029)

  • Improved support for deb822 format sources files on Linux. It should now set up the sources files in deb822 format on Ubuntu 24.04, Debian 13, and newer. It would automatically switch the format as well for the repositories added by the action to the new format when supported. (#​1027)

  • Improved support for installing pdo_oci. (#​1028)

  • Fixed installing gearman extension for PHP 5.6 and 7.0 on Linux.

  • Fixed an edge case in tools setup to fall back to the latest version. (#​1024)

  • Fixed support to build extensions with uppercase names from PECL. (#​1017)

  • Fixed warning on redis setup on macOS after formula rename. (shivammathur/homebrew-extensions#5413)

  • Fixed fallback link for composer setup. (#​1025)

  • Updated the link for flex documentation in README. (#​1020)

  • Updated Node.js dependencies.

Thanks @​shyim, @​tillkruss, and @​nicolas-grekas for the contributions 🎉

Thanks @​JetBrainsOfficial and @​cachewerk for the sponsorship ❤️

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

symfony/console (symfony/console)

v7.3.10

Compare Source

Changelog (symfony/console@v7.3.9...v7.3.10)

  • no significant changes

v7.3.9

Compare Source

Changelog (symfony/console@v7.3.8...v7.3.9)

v7.3.8

Compare Source

Changelog (symfony/console@v7.3.7...v7.3.8)

v7.3.6

Compare Source

Changelog (symfony/console@v7.3.5...v7.3.6)


Configuration

📅 Schedule: Branch creation - On day 1 of the month, every 3 months ( * * 1 */3 * ) in timezone Europe/Warsaw, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@blumilk-renovate blumilk-renovate bot requested a review from Blusia January 1, 2026 10:02
@blumilk-renovate blumilk-renovate bot force-pushed the renovate/all-minor-patch-digest-pindigest branch 3 times, most recently from 00f4124 to a7d934d Compare January 25, 2026 10:02
@blumilk-renovate blumilk-renovate bot force-pushed the renovate/all-minor-patch-digest-pindigest branch 3 times, most recently from 2022f69 to 6a36c77 Compare February 3, 2026 10:05
@blumilk-renovate blumilk-renovate bot force-pushed the renovate/all-minor-patch-digest-pindigest branch 2 times, most recently from 29ccc1c to c688902 Compare February 11, 2026 10:03
@blumilk-renovate blumilk-renovate bot force-pushed the renovate/all-minor-patch-digest-pindigest branch from c688902 to b974f16 Compare February 12, 2026 10:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants