Skip to content

Comments

⬆️ Bump the composer group across 1 directory with 4 updates#319

Merged
homersimpsons merged 1 commit intomainfrom
dependabot/composer/composer-c4603a54c1
Aug 2, 2025
Merged

⬆️ Bump the composer group across 1 directory with 4 updates#319
homersimpsons merged 1 commit intomainfrom
dependabot/composer/composer-c4603a54c1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps the composer group with 4 updates in the / directory: nikic/php-parser, symfony/console, phpstan/phpstan and phpunit/phpunit.

Updates nikic/php-parser from 5.5.0 to 5.6.0

Release notes

Sourced from nikic/php-parser's releases.

PHP-Parser 5.6.0

Added

  • [8.5] Added support for clone with arbitrary function arguments. This will be parsed as an Expr\FuncCall node, instead of the usual Expr\Clone_ node.
  • [8.5] Permit declaration of function clone for use in stubs.
  • [8.5] Added support for the pipe operator, represented by Expr\BinaryOp\Pipe.
  • [8.5] Added support for the (void) cast, represented by Expr\Cast\Void_.
  • [8.5] Added support for the final modifier on promoted properties.
  • Added CallLike::getArg() to fetch an argument by position and name.
Changelog

Sourced from nikic/php-parser's changelog.

Version 5.6.0 (2025-07-27)

Added

  • [8.5] Added support for clone with arbitrary function arguments. This will be parsed as an Expr\FuncCall node, instead of the usual Expr\Clone_ node.
  • [8.5] Permit declaration of function clone for use in stubs.
  • [8.5] Added support for the pipe operator, represented by Expr\BinaryOp\Pipe.
  • [8.5] Added support for the (void) cast, represented by Expr\Cast\Void_.
  • [8.5] Added support for the final modifier on promoted properties.
  • Added CallLike::getArg() to fetch an argument by position and name.
Commits
  • 221b0d0 Release PHP-Parser 5.6.0
  • 3b8d8ab Add special case for clone in fuzzer
  • c724dde Allow final on promoted properties
  • 7c4f7ca Exclude one clone php-src test
  • c5216ac Remove use of E_STRICT in test runner
  • 507fa76 Add support for void cast
  • 3e74153 Add emulation support for void cast
  • b815a16 Add support for pipe operator
  • c1f6c4c Add lexer emulation support for pipe operator
  • 66d5018 feat: add CallLike::getArg() method (#1089)
  • Additional commits viewable in compare view

Updates symfony/console from 7.3.1 to 7.3.2

Release notes

Sourced from symfony/console's releases.

v7.3.2

Changelog (symfony/console@v7.3.1...v7.3.2)

Commits
  • 5f360eb Merge branch '7.2' into 7.3
  • 93518c2 Merge branch '6.4' into 7.2
  • 59266a5 [Console][Table] Fix unnecessary wrapping
  • e8ebdee [Console][Table] Fix invalid UTF-8 due to text wrapping
  • 1c43dcd bug #61080 [Console] Fix TreeHelper::addChild when providing a string (jtat...
  • b4ee0d4 [Console] Fix TreeHelper::addChild when providing a string
  • 3d42007 Merge branch '7.2' into 7.3
  • fc5fd0d Merge branch '6.4' into 7.2
  • 795dd19 [Console] Fix JSON description for negatable input flags
  • 6f888fb Merge branch '6.4' into 7.2
  • Additional commits viewable in compare view

Updates phpstan/phpstan from 2.1.17 to 2.1.21

Release notes

Sourced from phpstan/phpstan's releases.

2.1.21

Improvements 🔧

Bugfixes 🐛

Internals 🔍

2.1.20

Bugfixes 🐛

2.1.19

Improvements 🔧

Bugfixes 🐛

... (truncated)

Commits
  • 1ccf445 PHPStan 2.1.21
  • 90f8b11 Updated PHPStan to commit 90f8b11d423e18ff00fd4927907230b22edebcee
  • 8ae740c Updated PHPStan to commit 8ae740c48df5a011f14634fe843fa274d77aac16
  • a9ccfef PHPStan 2.1.20
  • d81cb77 Updated PHPStan to commit d81cb77c90b5ca6aaf2d274ec6b012f9522b513e
  • caef96e Shopware moved to Silver sponsors
  • e85367b Shopware moved to Silver sponsors
  • 80833f9 New gold sponsor
  • 5cb41b9 Adjustment
  • 98506a9 Revert "Always white"
  • Additional commits viewable in compare view

Updates phpunit/phpunit from 12.2.5 to 12.3.0

Release notes

Sourced from phpunit/phpunit's releases.

PHPUnit 12.3.0

Added

  • #3795: Bootstrap scripts specific to test suites
  • #6268: #[IgnorePHPUnitWarnings] attribute for ignoring PHPUnit warnings
  • #[TestDoxFormatter] and #[TestDoxFormatterExternal] attributes for configuring a custom TestDox formatter for tests that use data from data providers
  • TestRunner\ChildProcessErrored event
  • Configuration::includeTestSuites() and Configuration::excludeTestSuites()

Changed

  • #6237: Do not run tests when code coverage analysis is requested but code coverage data cannot be collected
  • #6272: Use @<data-set-name> format (compatible with --filter CLI option) in defect messages
  • #6273: Warn when #[DataProvider*] attributes are mixed with #[TestWith*] attributes

Deprecated

  • #6229: Configuration::includeTestSuite(), use Configuration::includeTestSuites() instead
  • #6229: Configuration::excludeTestSuite(), use Configuration::excludeTestSuites() instead
  • #6246: Using #[CoversNothing] on a test method

How to install or update PHPUnit

PHPUnit 12.2.9

Fixed

  • #6097: The file attribute of <testClass> node of XML test list can be wrong

How to install or update PHPUnit

PHPUnit 12.2.8

Fixed

  • #6274: Infinite recursion when code coverage report in OpenClover XML format is configured in XML configuration file

How to install or update PHPUnit

PHPUnit 12.2.7

Fixed

  • #6254: defects,randomconfiguration is supported by implementation, but it is not allowed by the XML configuration file schema
  • #6259: Order of tests which use data from data providers is not affected by test sorting
  • #6266: Superfluous whitespace in TestDox output when test method name has a number after the test prefix

How to install or update PHPUnit

PHPUnit 12.2.6

Fixed

  • #6104: Test with dependencies and data provider fails

... (truncated)

Changelog

Sourced from phpunit/phpunit's changelog.

12.3.0 - 2025-08-01

Added

  • #3795: Bootstrap scripts specific to test suites
  • #6268: #[IgnorePHPUnitWarnings] attribute for ignoring PHPUnit warnings
  • #[TestDoxFormatter] and #[TestDoxFormatterExternal] attributes for configuring a custom TestDox formatter for tests that use data from data providers
  • TestRunner\ChildProcessErrored event
  • Configuration::includeTestSuites() and Configuration::excludeTestSuites()

Changed

  • #6237: Do not run tests when code coverage analysis is requested but code coverage data cannot be collected
  • #6272: Use @<data-set-name> format (compatible with --filter CLI option) in defect messages
  • #6273: Warn when #[DataProvider*] attributes are mixed with #[TestWith*] attributes

Deprecated

  • #6229: Configuration::includeTestSuite(), use Configuration::includeTestSuites() instead
  • #6229: Configuration::excludeTestSuite(), use Configuration::excludeTestSuites() instead
  • #6246: Using #[CoversNothing] on a test method
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the composer group with 4 updates in the / directory: [nikic/php-parser](https://github.com/nikic/PHP-Parser), [symfony/console](https://github.com/symfony/console), [phpstan/phpstan](https://github.com/phpstan/phpstan) and [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit).


Updates `nikic/php-parser` from 5.5.0 to 5.6.0
- [Release notes](https://github.com/nikic/PHP-Parser/releases)
- [Changelog](https://github.com/nikic/PHP-Parser/blob/master/CHANGELOG.md)
- [Commits](nikic/PHP-Parser@v5.5.0...v5.6.0)

Updates `symfony/console` from 7.3.1 to 7.3.2
- [Release notes](https://github.com/symfony/console/releases)
- [Changelog](https://github.com/symfony/console/blob/7.3/CHANGELOG.md)
- [Commits](symfony/console@v7.3.1...v7.3.2)

Updates `phpstan/phpstan` from 2.1.17 to 2.1.21
- [Release notes](https://github.com/phpstan/phpstan/releases)
- [Changelog](https://github.com/phpstan/phpstan/blob/2.1.x/CHANGELOG.md)
- [Commits](phpstan/phpstan@2.1.17...2.1.21)

Updates `phpunit/phpunit` from 12.2.5 to 12.3.0
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/12.3.0/ChangeLog-12.3.md)
- [Commits](sebastianbergmann/phpunit@12.2.5...12.3.0)

---
updated-dependencies:
- dependency-name: nikic/php-parser
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: composer
- dependency-name: symfony/console
  dependency-version: 7.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: composer
- dependency-name: phpstan/phpstan
  dependency-version: 2.1.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: composer
- dependency-name: phpunit/phpunit
  dependency-version: 12.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: composer
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the x:size/tiny Tiny amount of work label Aug 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner August 1, 2025 09:29
@dependabot dependabot bot added the x:size/tiny Tiny amount of work label Aug 1, 2025
@homersimpsons homersimpsons merged commit 47b5237 into main Aug 2, 2025
4 checks passed
@homersimpsons homersimpsons deleted the dependabot/composer/composer-c4603a54c1 branch August 2, 2025 04:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

x:size/tiny Tiny amount of work

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants