Skip to content

Conversation

@blumilk-renovate
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change 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
kubawerlos/php-cs-fixer-custom-fixers require minor ^3.30.2 -> ^3.35.1 age confidence
phpunit/phpunit (source) require-dev patch ^11.5.43 -> ^11.5.46 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.9 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.35.1

Compare Source

  • NoExtraBlankLinesFixer must run before FunctionParameterSeparationFixer (#​1097)

v3.35.0

Compare Source

  • Extend PhpdocPropertySortedFixer to support @property-read and @property-write (#​1088)
  • PhpdocNoIncorrectVarAnnotationFixer - keep string literals (#​1096)

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.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:
  • You can follow @​[email protected] to stay up to date with PHPUnit's development.
  • You can subscribe to the PHPUnit Updates newsletter to receive updates about and tips for 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:
  • You can follow @​[email protected] to stay up to date with PHPUnit's development.
  • You can subscribe to the PHPUnit Updates newsletter to receive updates about and tips for 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:
  • You can follow @​[email protected] to stay up to date with PHPUnit's development.
  • You can subscribe to the PHPUnit Updates newsletter to receive updates about and tips for 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.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.

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.

1 participant