All notable changes of the PHPUnit 10.3 release series are documented in this file using the Keep a CHANGELOG principles.
10.3.1 - 2023-08-04
- #5459:
assertStringMatchesFormat()
should allowstring
type (notnon-empty-string
) for$actual
parameter
10.3.0 - 2023-08-04
- #5368: Control when PHP's garbage collector is triggered
- #5428: Attribute
#[WithoutErrorHandler]
to disable PHPUnit's error handler for a test method - #5431: Add more garbage collector details to event telemetry
- Errors (
E_USER_ERROR
), deprecations (E_DEPRECATED
,E_USER_DEPRECATED
), notices (E_STRICT
,E_NOTICE
,E_USER_NOTICE
), and warnings (E_WARNING
,E_USER_WARNINGS
) are now displayed grouped by issue - When a test case class inherits test methods from a parent class then, by default (when no test reordering is requested), the test methods from the class that is highest in the inheritance tree (instead of the class that is lowest in the inheritance tree) are now run first
- Invocation count expectation failure messages have been slightly improved
- When a test case class inherits test methods from a parent class then the TestDox output for such a test case class now starts with test methods from the class that is highest in the inheritance tree (instead of the class that is lowest in the inheritance tree)
TestCase::createStub()
,TestCase::createStubForIntersectionOfInterfaces()
, andTestCase::createConfiguredStub()
are now static (and can be used from static data provider methods)- The internal methods
__phpunit_*()
have been removed from theStub
andMockObject
interfaces
- #5456: Risky Test Check for Output Buffering is performed before after-test methods are called