Skip to content

chore(deps): update dependency phpunit/phpunit to v13#884

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-composer-dev-tooling
Open

chore(deps): update dependency phpunit/phpunit to v13#884
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-composer-dev-tooling

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jan 13, 2026

This PR contains the following updates:

Package Change Age Confidence
phpunit/phpunit (source) ^12.5.23^13.1.1 age confidence

Release Notes

sebastianbergmann/phpunit (phpunit/phpunit)

v13.1.1: PHPUnit 13.1.1

Compare Source

Changed
  • #​3676: Include class/interface name in mock object expectation failure messages
  • #​4793: Exit with non-zero exit code when exit was called from some test
Fixed
  • #​5881: colors="true" in XML configuration file does not unconditionally enable colored output
  • #​6019: --migrate-configuration does not update schema location when XML content already validates against current schema
  • #​6372: Assertion failure inside willReturnCallback() is silently swallowed when code under test catches exceptions
  • #​6464: Process isolation template unconditionally calls set_include_path()
  • #​6571: Static analysis errors for TestDoubleBuilder method chaining

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

Keep up to date with PHPUnit:

v13.1.0: PHPUnit 13.1.0

Compare Source

Added
  • #​6501: Include unexpected output in Open Test Reporting (OTR) XML logfile
  • #​6517: includeInCodeCoverage attribute for <directory> and <file> children of <source>
  • #​6523: Include #[Group] information in Open Test Reporting (OTR) XML logfile
  • #​6524: Report issues in Open Test Reporting (OTR) XML logfile
  • #​6526: Introduce #[DataProviderClosure] for static closures
  • #​6530: Support for custom issue trigger resolvers that can be configured using <issueTriggerResolvers> in the XML configuration file
  • #​6547: Support for %r...%r in EXPECTF section
  • Support for configuring HTML code coverage report options (colors, thresholds, custom CSS) in XML configuration file without requiring an outputDirectory attribute, allowing the output directory to be specified later with the --coverage-html CLI option
  • Support for configuring dark mode colors, progress bar colors, and breadcrumb colors for HTML code coverage reports in the XML configuration file
Changed
  • #​6557: Improve failure description for StringMatchesFormatDescription constraint which is used by assertFileMatchesFormat(), assertFileMatchesFormatFile(), assertStringMatchesFormat(), assertStringMatchesFormatFile(), and EXPECTF sections of PHPT test files
  • The HTML code coverage report now uses a more colorblind-friendly blue/amber/orange palette by default
  • Extracted PHPUnit\Runner\Extension\Facade from a concrete class to an interface and introduced an internal ExtensionFacade implementation, so that extensions only depend on the Facade interface while PHPUnit internally uses the ExtensionFacade class that also provides query methods
Deprecated
  • #​6515: Deprecate the --log-events-verbose-text <file> CLI option
  • #​6537: Soft-deprecate id() and after() for mock object expectations
Fixed
  • #​6025: FILE_EXTERNAL breaks __DIR__
  • #​6351: No warning when the same test runner extension is configured more than once
  • #​6433: Logic in TestSuiteLoader is brittle and causes "Class FooTest not found" even for valid tests in valid filenames
  • #​6463: Process Isolation fails on non-serializable globals and quietly ignore closures

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

Keep up to date with PHPUnit:

v13.0.6: PHPUnit 13.0.6

Compare Source

Changed
  • #​4440: Improve error when configured code coverage file list is empty
  • #​6549: Allow to stub both hooks of non-virtual properties
Fixed
  • #​6529: Git "detached HEAD state" in Open Test Reporting (OTR) XML logger not handled properly
  • #​6545: Stubbing a class with set property hook leaves property uninitialized by default
  • The RegularExpression and StringMatchesFormatDescription did not handle preg_match() errors such as Compilation failed: regular expression is too large

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

Keep up to date with PHPUnit:

v13.0.5: PHPUnit 13.0.5

Compare Source

Fixed
  • #​6521: Performance regression in PHPUnit 11.5.54, PHPUnit 12.5.13, and PHPUnit 13.0.4

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

Keep up to date with PHPUnit:

v13.0.4: PHPUnit 13.0.4

Compare Source

Fixed
  • #​6489: Classification of self/direct/indirect deprecation triggers is not aligned with Symfony's bridge for PHPUnit

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

Keep up to date with PHPUnit:

v13.0.3: PHPUnit 13.0.3

Compare Source

Fixed
  • #​6511: TestDox variables out of order with named arguments
  • #​6514: <ini /> can silently fail

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

Keep up to date with PHPUnit:

v13.0.2: PHPUnit 13.0.2

Compare Source

Deprecated
  • #​6505: Calling atLeast() with an argument that is not positive
  • #​6507: Support for using with*() without expects()
Fixed
  • #​6503: Temporary file used by SourceMapper may be deleted prematurely when multiple PHPUnit processes run in parallel
  • #​6509: "No expectations were configured for the mock object ..." notice is emitted when with() is used without expects()

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

Keep up to date with PHPUnit:

v13.0.1: PHPUnit 13.0.1

Compare Source

Fixed
  • #​6495: Source map for issue trigger identification is regenerated in process isolation child processes
  • #​6497: method() returns InvocationMocker instead of InvocationStubber for test stubs

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

Keep up to date with PHPUnit:

v13.0.0: PHPUnit 13.0.0

Compare Source

Added
  • #​6450: TestCase::invokeTestMethod() method for customizing test method invocation
  • #​6455: withParameterSetsInOrder() and withParameterSetsInAnyOrder() for expecting calls to the same method of a mock object but with different arguments
  • #​6466: Sealed test doubles
  • #​6468: Configuration option to require sealed mock objects
  • #​6477: assertArraysAreIdentical(), assertArraysAreIdenticalIgnoringOrder(), assertArraysHaveIdenticalValues(), assertArraysHaveIdenticalValuesIgnoringOrder(), assertArraysAreEqual(), assertArraysAreEqualIgnoringOrder(), assertArraysHaveEqualValues(), and assertArraysHaveEqualValuesIgnoringOrder() assertions
  • --test-files-file <file> CLI option to configure a file that contains the paths to the test files to be loaded (one file per line); use this when using CLI arguments is not an option due to argument length limitations
Deprecated
  • #​6461: any() matcher (hard deprecation)
Removed
  • #​6054: Assert::isType()
  • #​6057: assertContainsOnly() and assertNotContainsOnly()
  • #​6061: containsOnly()
  • #​6076: Support for PHP 8.3
  • #​6141: testClassName() method on event value objects for hook methods called for test methods
  • #​6230: Configuration::includeTestSuite() and Configuration::excludeTestSuite()
  • #​6241: --dont-report-useless-tests CLI option
  • #​6247: Support for using #[CoversNothing] on a test method
  • #​6285: #[RunClassInSeparateProcess] attribute
  • #​6356: Support for version constraint string argument without explicit version comparison operator

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

Keep up to date with PHPUnit:

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested review from a team as code owners January 13, 2026 15:29
@renovate renovate bot added the renovate label Jan 13, 2026
@renovate renovate bot enabled auto-merge January 13, 2026 15:29
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 5 times, most recently from bda13c6 to f34050d Compare January 27, 2026 07:44
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 2 times, most recently from f515013 to 4097d46 Compare January 28, 2026 06:01
@renovate renovate bot changed the title chore(deps): update composer dev tooling dependencies (major) chore(deps): update composer dev tooling dependencies to v2 (major) Jan 28, 2026
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 4 times, most recently from fa998f6 to c8cba78 Compare February 3, 2026 19:13
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 2 times, most recently from 613eb32 to d5fbb4b Compare February 6, 2026 18:12
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 4 times, most recently from 0b6baee to fe6a1e2 Compare February 18, 2026 17:52
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 2 times, most recently from 9601fde to a95bcb7 Compare February 23, 2026 12:55
@renovate renovate bot changed the title chore(deps): update composer dev tooling dependencies to v2 (major) chore(deps): update composer dev tooling dependencies (major) Feb 23, 2026
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Feb 23, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: composer.lock
Command failed: composer update phpunit/phpunit:13.1.1 --with-dependencies --ignore-platform-req=ext-* --ignore-platform-req=lib-* --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins --minimal-changes
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Root composer.json requires phpunit/phpunit ^13.1.1 -> satisfiable by phpunit/phpunit[13.1.1].
    - phpunit/phpunit 13.1.1 requires php >=8.4.1 -> your php version (8.3; overridden via config.platform, same as actual) does not satisfy that requirement.

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 3 times, most recently from 4cf614b to 1914f49 Compare March 1, 2026 09:52
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch from 1914f49 to 904326b Compare March 2, 2026 20:48
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 3 times, most recently from 33c8ce7 to 3964ae9 Compare March 24, 2026 17:52
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 4 times, most recently from 56720d3 to 2e40c1f Compare April 7, 2026 11:10
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 4 times, most recently from 9eca03e to cdff2c8 Compare April 15, 2026 06:59
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 2 times, most recently from c9d2fc5 to 40ef8e8 Compare April 15, 2026 20:26
@renovate renovate bot changed the title chore(deps): update composer dev tooling dependencies (major) chore(deps): update dependency phpunit/phpunit to v13 Apr 15, 2026
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v13 chore(deps): update dependency phpunit/phpunit to v13 - autoclosed Apr 18, 2026
@renovate renovate bot closed this Apr 18, 2026
auto-merge was automatically disabled April 18, 2026 10:44

Pull request was closed

@renovate renovate bot deleted the renovate/major-composer-dev-tooling branch April 18, 2026 10:44
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v13 - autoclosed chore(deps): update dependency phpunit/phpunit to v13 Apr 18, 2026
@renovate renovate bot reopened this Apr 18, 2026
@renovate renovate bot force-pushed the renovate/major-composer-dev-tooling branch 2 times, most recently from 40ef8e8 to 632dd72 Compare April 18, 2026 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants