Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 13, 2023

This PR contains the following updates:

Package Change Age Confidence
phpunit/phpunit (source) 10.5.3610.5.60 age confidence

Release Notes

sebastianbergmann/phpunit (phpunit/phpunit)

v10.5.60: PHPUnit 10.5.60

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 10.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.

v10.5.59: PHPUnit 10.5.59

Compare Source

Changed
  • #​6338: Removed code from PHPUnit\Runner\TestSuiteSorter that was only used in the tests for this class
  • Updated list of deprecated PHP configuration settings for PHP 8.4, PHP 8.5, and PHP 8.6

Learn how to install or update PHPUnit 10.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.

v10.5.58: PHPUnit 10.5.58

Compare Source

Fixed
  • #​6368: failOnPhpunitWarning="false" has no effect

Learn how to install or update PHPUnit 10.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.

v10.5.57: PHPUnit 10.5.57

Compare Source

  • No changes; phpunit.phar rebuilt with updated dependencies

Learn how to install or update PHPUnit 10.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.

v10.5.56: PHPUnit 10.5.56

Compare Source

  • No changes; phpunit.phar rebuilt with updated dependencies

Learn how to install or update PHPUnit 10.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.

v10.5.55: PHPUnit 10.5.55

Compare Source

Changed
  • #​6366: Exclude __sleep() and __wakeup() from test double code generation on PHP >= 8.5

Learn how to install or update PHPUnit 10.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.

v10.5.54: PHPUnit 10.5.54

Compare Source

Changed
  • Do not use __sleep() method (which will be deprecated in PHP 8.5)

Learn how to install or update PHPUnit 10.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.

v10.5.53

Compare Source

v10.5.52: PHPUnit 10.5.52

Compare Source

Changed
  • #​6321: Allow error_reporting=E_ALL for --check-php-configuration

Learn how to install or update PHPUnit 10.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.

v10.5.51: PHPUnit 10.5.51

Compare Source

Changed
  • #​6308: Improve output of --check-php-configuration
  • The version number for the test result cache file has been incremented to reflect that its structure for PHPUnit 10.5 is not compatible with its structure for PHPUnit 8.5 and PHPUnit 9.6

Learn how to install or update PHPUnit 10.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.

v10.5.50: PHPUnit 10.5.50

Compare Source

Changed
  • #​6300: Emit warning when the name of a data provider method begins with test
  • Do not use SplObjectStorage methods that will be deprecated in PHP 8.5

Learn how to install or update PHPUnit 10.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.

v10.5.49: PHPUnit 10.5.49

Compare Source

Added
  • #​6297: --check-php-configuration CLI option for checking whether PHP is configured for testing
Fixed
  • Errors due to invalid data provided using #[TestWith] or #[TestWithJson] attributes are now properly reported

Learn how to install or update PHPUnit 10.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.

v10.5.48: PHPUnit 10.5.48

Compare Source

Fixed
  • #​6254: defects,randomconfiguration is supported by implementation, but it is not allowed by the XML configuration file schema

How to install or update PHPUnit

v10.5.47: PHPUnit 10.5.47

Compare Source

Added
  • #​6236: failOnPhpunitWarning attribute on the <phpunit> element of the XML configuration file and --fail-on-phpunit-warning CLI option for controlling whether PHPUnit should fail on PHPUnit warnings (default: true)
  • #​6239: --do-not-fail-on-deprecation, --do-not-fail-on-phpunit-warning, --do-not-fail-on-phpunit-deprecation, --do-not-fail-on-empty-test-suite, --do-not-fail-on-incomplete, --do-not-fail-on-notice, --do-not-fail-on-risky, --do-not-fail-on-skipped, and --do-not-fail-on-warning CLI options
  • --do-not-report-useless-tests CLI option as a replacement for --dont-report-useless-tests
Deprecated
  • --dont-report-useless-tests CLI option (use --do-not-report-useless-tests instead)
Fixed
  • #​6243: Constraints cannot be implemented without using internal class ExpectationFailedException

How to install or update PHPUnit

v10.5.46: PHPUnit 10.5.46

Compare Source

Added
  • displayDetailsOnAllIssues attribute on the <phpunit> element of the XML configuration file and --display-all-issues CLI option for controlling whether PHPUnit should display details on all issues that are triggered (default: false)
  • failOnAllIssues attribute on the <phpunit> element of the XML configuration file and --fail-on-all-issues CLI option for controlling whether PHPUnit should fail on all issues that are triggered (default: false)
Changed
  • #​5956: Improved handling of deprecated E_STRICT constant
  • Improved message when test is considered risky for printing unexpected output

How to install or update PHPUnit

v10.5.45: PHPUnit 10.5.45

Compare Source

Changed
  • #​6117: Include source location information for issues triggered during test in --debug output
  • #​6119: Improve message for errors that occur while parsing attributes

How to install or update PHPUnit

v10.5.44: PHPUnit 10.5.44

Compare Source

Fixed
  • #​6115: Backed enumerations with values not of type string cannot be used in customized TestDox output

How to install or update PHPUnit

v10.5.43: PHPUnit 10.5.43

Compare Source

Changed
  • Do not skip execution of test that depends on a test that is larger than itself

How to install or update PHPUnit

v10.5.42: PHPUnit 10.5.42

Compare Source

Fixed
  • #​6103: Output from test run in separate process is printed twice
  • #​6109: Skipping a test in a before-class method crashes JUnit XML logger
  • #​6111: Deprecations cause SourceMapper to scan all <source/> files

How to install or update PHPUnit

v10.5.41: PHPUnit 10.5.41

Compare Source

Added
  • Test\AfterLastTestMethodErrored, Test\AfterTestMethodErrored, Test\BeforeTestMethodErrored, Test\PostConditionErrored, and Test\PreConditionErrored events
Fixed
  • #​6094: Errors in after-last-test methods are not reported
  • #​6095: Expectation is not counted correctly when a doubled method is called more often than is expected
  • #​6098: No system-out element in JUnit XML logfile

How to install or update PHPUnit

v10.5.40: PHPUnit 10.5.40

Compare Source

Fixed
  • #​6082: assertArrayHasKey(), assertArrayNotHasKey(), arrayHasKey(), and ArrayHasKey::__construct() do not support all possible key types
  • #​6087: --migrate-configuration does not remove beStrictAboutTodoAnnotatedTests attribute from XML configuration file

How to install or update PHPUnit

v10.5.39: PHPUnit 10.5.39

Compare Source

Added
  • #​6081: DefaultResultCache::mergeWith() for merging result cache instances
Fixed
  • #​6066: TeamCity logger does not handle error/skipped events in before-class methods correctly

How to install or update PHPUnit

v10.5.38: PHPUnit 10.5.38

Compare Source

Changed
  • #​6012: Remove empty lines between TeamCity events

How to install or update PHPUnit

v10.5.37: PHPUnit 10.5.37

Compare Source

Fixed

How to install or update PHPUnit


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/phpunit-phpunit-10.x-lockfile branch 4 times, most recently from 7ff83ca to b99c598 Compare August 14, 2023 20:39
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-10.x-lockfile branch from b99c598 to d5b6453 Compare August 14, 2023 21:35
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.3.1 chore(deps): update dependency phpunit/phpunit to v10.3.2 Aug 15, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Aug 27, 2023

⚠ 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:10.5.20 --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - laminas/laminas-hydrator is locked to version 4.14.0 and an update of this package was not requested.
    - laminas/laminas-hydrator 4.14.0 requires php ~8.1.0 || ~8.2.0 -> your php version (8.3.6) does not satisfy that requirement.
  Problem 2
    - ergebnis/composer-normalize is locked to version 2.36.0 and an update of this package was not requested.
    - ergebnis/composer-normalize 2.36.0 requires php ~8.1.0 || ~8.2.0 -> your php version (8.3.6) does not satisfy that requirement.
  Problem 3
    - laminas/laminas-hydrator 4.14.0 requires php ~8.1.0 || ~8.2.0 -> your php version (8.3.6) does not satisfy that requirement.
    - wayofdev/laravel-cycle-orm-adapter v4.0.99 requires laminas/laminas-hydrator ^4.14 -> satisfiable by laminas/laminas-hydrator[4.14.0].
    - wayofdev/laravel-cycle-orm-adapter is locked to version v4.0.99 and an update of this package was not requested.


@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.3.2 chore(deps): update dependency phpunit/phpunit to v10.3.3 Sep 5, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.3.3 chore(deps): update dependency phpunit/phpunit to v10.3.4 Sep 12, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.3.4 chore(deps): update dependency phpunit/phpunit to v10.3.5 Sep 20, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.3.5 chore(deps): update dependency phpunit/phpunit to v10.4.0 Oct 6, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.4.0 chore(deps): update dependency phpunit/phpunit to v10.4.1 Oct 8, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.4.1 chore(deps): update dependency phpunit/phpunit to v10.4.2 Oct 26, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.4.2 chore(deps): update dependency phpunit/phpunit to v10.5.0 Dec 1, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.0 chore(deps): update dependency phpunit/phpunit to v10.5.1 Dec 1, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.1 chore(deps): update dependency phpunit/phpunit to v10.5.2 Dec 5, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.2 chore(deps): update dependency phpunit/phpunit to v10.5.3 Dec 13, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.3 chore(deps): update dependency phpunit/phpunit to v10.5.5 Dec 27, 2023
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.5 chore(deps): update dependency phpunit/phpunit to v10.5.6 Jan 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.6 chore(deps): update dependency phpunit/phpunit to v10.5.7 Jan 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.7 chore(deps): update dependency phpunit/phpunit to v10.5.8 Jan 19, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.8 chore(deps): update dependency phpunit/phpunit to v10.5.9 Jan 23, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.9 chore(deps): update dependency phpunit/phpunit to v10.5.10 Feb 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.10 chore(deps): update dependency phpunit/phpunit to v10.5.11 Mar 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.11 chore(deps): update dependency phpunit/phpunit to v10.5.12 Mar 9, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.12 chore(deps): update dependency phpunit/phpunit to v10.5.13 Mar 13, 2024
@renovate renovate bot enabled auto-merge (rebase) March 20, 2024 14:37
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.13 chore(deps): update dependency phpunit/phpunit to v10.5.14 Mar 21, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.14 chore(deps): update dependency phpunit/phpunit to v10.5.15 Mar 22, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.30 chore(deps): update dependency phpunit/phpunit to v10.5.31 Sep 3, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.31 chore(deps): update dependency phpunit/phpunit to v10.5.32 Sep 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.32 chore(deps): update dependency phpunit/phpunit to v10.5.33 Sep 9, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.33 chore(deps): update dependency phpunit/phpunit to v10.5.34 Sep 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.34 chore(deps): update dependency phpunit/phpunit to v10.5.35 Sep 19, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.35 chore(deps): update dependency phpunit/phpunit to v10.5.36 Oct 8, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.36 chore(deps): update dependency phpunit/phpunit to v10.5.37 Oct 19, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.37 chore(deps): update dependency phpunit/phpunit to v10.5.38 Oct 28, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.38 chore(deps): update dependency phpunit/phpunit to v10.5.39 Dec 11, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.39 chore(deps): update dependency phpunit/phpunit to v10.5.40 Dec 21, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.40 chore(deps): update dependency phpunit/phpunit to v10.5.41 Jan 13, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.41 chore(deps): update dependency phpunit/phpunit to v10.5.42 Jan 28, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.42 chore(deps): update dependency phpunit/phpunit to v10.5.43 Jan 29, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.43 chore(deps): update dependency phpunit/phpunit to v10.5.44 Feb 1, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.44 chore(deps): update dependency phpunit/phpunit to v10.5.45 Feb 6, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.45 chore(deps): update dependency phpunit/phpunit to v10.5.46 May 2, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.46 chore(deps): update dependency phpunit/phpunit to v10.5.47 Jun 20, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.47 chore(deps): update dependency phpunit/phpunit to v10.5.48 Jul 11, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.48 chore(deps): update dependency phpunit/phpunit to v10.5.49 Aug 9, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.49 chore(deps): update dependency phpunit/phpunit to v10.5.50 Aug 10, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.50 chore(deps): update dependency phpunit/phpunit to v10.5.51 Aug 12, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.51 chore(deps): update dependency phpunit/phpunit to v10.5.52 Aug 16, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.52 chore(deps): update dependency phpunit/phpunit to v10.5.53 Aug 20, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.53 chore(deps): update dependency phpunit/phpunit to v10.5.54 Sep 11, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.54 chore(deps): update dependency phpunit/phpunit to v10.5.55 Sep 14, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.55 chore(deps): update dependency phpunit/phpunit to v10.5.56 Sep 23, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.56 chore(deps): update dependency phpunit/phpunit to v10.5.57 Sep 24, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.57 chore(deps): update dependency phpunit/phpunit to v10.5.58 Sep 28, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.58 chore(deps): update dependency phpunit/phpunit to v10.5.59 Dec 1, 2025
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.59 chore(deps): update dependency phpunit/phpunit to v10.5.60 Dec 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant