Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency phpunit/phpunit to v11.5.3 #7

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
phpunit/phpunit (source) 11.3.1 -> 11.5.3 age adoption passing confidence

Release Notes

sebastianbergmann/phpunit (phpunit/phpunit)

v11.5.3

Compare Source

v11.5.2: PHPUnit 11.5.2

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

v11.5.1: PHPUnit 11.5.1

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

v11.5.0: PHPUnit 11.5.0

Compare Source

Added
  • #​5948: Support for Property Hooks in Test Doubles
  • #​5954: Provide a way to stop execution at a particular deprecation
  • Method assertContainsNotOnlyInstancesOf() in the PHPUnit\Framework\Assert class as the inverse of the assertContainsOnlyInstancesOf() method
  • Methods assertContainsOnlyArray(), assertContainsOnlyBool(), assertContainsOnlyCallable(), assertContainsOnlyFloat(), assertContainsOnlyInt(), assertContainsOnlyIterable(), assertContainsOnlyNull(), assertContainsOnlyNumeric(), assertContainsOnlyObject(), assertContainsOnlyResource(), assertContainsOnlyClosedResource(), assertContainsOnlyScalar(), and assertContainsOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic assertContainsOnly() method
  • Methods assertContainsNotOnlyArray(), assertContainsNotOnlyBool(), assertContainsNotOnlyCallable(), assertContainsNotOnlyFloat(), assertContainsNotOnlyInt(), assertContainsNotOnlyIterable(), assertContainsNotOnlyNull(), assertContainsNotOnlyNumeric(), assertContainsNotOnlyObject(), assertContainsNotOnlyResource(), assertContainsNotOnlyClosedResource(), assertContainsNotOnlyScalar(), and assertContainsNotOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic assertNotContainsOnly() method
  • Methods containsOnlyArray(), containsOnlyBool(), containsOnlyCallable(), containsOnlyFloat(), containsOnlyInt(), containsOnlyIterable(), containsOnlyNull(), containsOnlyNumeric(), containsOnlyObject(), containsOnlyResource(), containsOnlyClosedResource(), containsOnlyScalar(), and containsOnlyString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic containsOnly() method
  • Methods isArray(), isBool(), isCallable(), isFloat(), isInt(), isIterable(), isNumeric(), isObject(), isResource(), isClosedResource(), isScalar(), isString() in the PHPUnit\Framework\Assert class as specialized alternatives for the generic isType() method
  • TestRunner\ChildProcessStarted and TestRunner\ChildProcessFinished events
Changed
  • #​5998: Do not run SKIPIF section of PHPT test in separate process when it is free of side effects
  • #​5999: Do not run CLEAN section of PHPT test in separate process when it is free of side effects that modify the parent process
Deprecated
  • #​6052: isType() (use isArray(), isBool(), isCallable(), isFloat(), isInt(), isIterable(), isNull(), isNumeric(), isObject(), isResource(), isClosedResource(), isScalar(), or isString() instead)
  • #​6055: assertContainsOnly() (use assertContainsOnlyArray(), assertContainsOnlyBool(), assertContainsOnlyCallable(), assertContainsOnlyFloat(), assertContainsOnlyInt(), assertContainsOnlyIterable(), assertContainsOnlyNumeric(), assertContainsOnlyObject(), assertContainsOnlyResource(), assertContainsOnlyClosedResource(), assertContainsOnlyScalar(), or assertContainsOnlyString() instead)
  • #​6055: assertNotContainsOnly() (use assertContainsNotOnlyArray(), assertContainsNotOnlyBool(), assertContainsNotOnlyCallable(), assertContainsNotOnlyFloat(), assertContainsNotOnlyInt(), assertContainsNotOnlyIterable(), assertContainsNotOnlyNumeric(), assertContainsNotOnlyObject(), assertContainsNotOnlyResource(), assertContainsNotOnlyClosedResource(), assertContainsNotOnlyScalar(), or assertContainsNotOnlyString() instead)
  • #​6059: containsOnly() (use containsOnlyArray(), containsOnlyBool(), containsOnlyCallable(), containsOnlyFloat(), containsOnlyInt(), containsOnlyIterable(), containsOnlyNumeric(), containsOnlyObject(), containsOnlyResource(), containsOnlyClosedResource(), containsOnlyScalar(), or containsOnlyString() instead)

How to install or update PHPUnit

v11.4.4: PHPUnit 11.4.4

Compare Source

Fixed
  • #​6028: ignoreIndirectDeprecations=true suppresses deprecations triggered in test code

How to install or update PHPUnit

v11.4.3: PHPUnit 11.4.3

Compare Source

Changed
  • #​6010: Improve parameter name for assertGreaterThan(), assertGreaterThanOrEqual(), assertLessThan(), and assertLessThanOrEqual()
  • #​6012: Remove empty lines between TeamCity events
Fixed
  • #​6017: Deprecation Triggers are not registered when Process Isolation is used

How to install or update PHPUnit

v11.4.2: PHPUnit 11.4.2

Compare Source

Changed
  • #​5989: Disable Xdebug in subprocesses when it is not used
Fixed
  • #​5844: Error handlers that are not callable outside the scope they were registered in are not handled correctly
  • #​5982: Typo in exception message

How to install or update PHPUnit

v11.4.1: PHPUnit 11.4.1

Compare Source

Changed
  • Updated regular expressions used by StringMatchesFormatDescription constraint to be consistent with PHP's run-tests.php
Fixed
  • #​5977: TestDox result collector does not correctly handle baseline-ignored E_DEPRECATED issues

How to install or update PHPUnit

v11.4.0: PHPUnit 11.4.0

Compare Source

Changed
  • #​5915: Bootstrap extensions before building test suite
  • #​5917: Seal event facade before loading the test suite
  • #​5923: Filter configured deprecation triggers when displaying deprecation details
  • #​5927: #[RequiresPhpunitExtension] attribute
  • #​5928: Filter tests based on the PHP extensions they require
  • #​5964: Better error message when data provider is invalid
  • The XML configuration file generator now references vendor/phpunit/phpunit/phpunit.xsd (instead of https://schema.phpunit.de/X.Y/phpunit.xsd) when PHPUnit was installed using Composer and phpunit --generate-configuration was invoked in the directory where vendor is located
  • The --migrate-configuration command no longer replaces vendor/phpunit/phpunit/phpunit.xsd with https://schema.phpunit.de/X.Y/phpunit.xsd
  • The output of --list-groups now shows how many tests a group contains
  • The output of --list-suites now shows how many tests a test suite contains
Deprecated
  • #​5951: includeUncoveredFiles configuration option
  • #​5958: Support for #[CoversTrait] and #[UsesTrait] attributes
  • #​5960: Support for targeting trait methods with the #[CoversMethod] and #[UsesMethod] attributes (and respective annotations)

How to install or update PHPUnit

v11.3.6: PHPUnit 11.3.6

Compare Source

Changed
  • #​5956: Deprecation of the E_STRICT constant in PHP 8.4
Fixed
  • #​5950: TestDox text should not be trim()med when it contains $ character
  • The attribute parser will no longer try to instantiate attribute classes that do not exist

How to install or update PHPUnit

v11.3.5: PHPUnit 11.3.5

Compare Source

Fixed
  • #​5874: Test Stub generated by return value generator for doubled method with static return type declaration is not properly initialized
  • #​5931: Reverted addition of name property on <testsuites> element in JUnit XML logfile
  • #​5946: Callback throws a TypeError when checking a callable has variadic parameters

How to install or update PHPUnit

v11.3.4: PHPUnit 11.3.4

Compare Source

Fixed
  • #​4584: assertJsonStringEqualsJsonString() considers objects with sequential numeric keys equal to be arrays
  • #​4625: Generator yielding keys that are neither integer or string leads to hard-to-understand error message when used as data provider
  • #​4674: JSON assertions should treat objects as unordered
  • #​5891: Callback constraint does not handle variadic arguments correctly when used for mock object expectations
  • #​5929: TestDox output containing $ at the beginning gets truncated when used with a data provider
  • #​5943: Tests configured to be in group(s) using the XML configuration file are also added to the default group

How to install or update PHPUnit

v11.3.3: PHPUnit 11.3.3

Compare Source

Added
  • #​5937: failOnPhpunitDeprecation attribute on the <phpunit> element of the XML configuration file and --fail-on-phpunit-deprecation CLI option for controlling whether PHPUnit deprecations should be considered when determining the test runner's shell exit code (default: do not consider)
  • displayDetailsOnPhpunitDeprecations attribute on the <phpunit> element of the XML configuration file and --display-phpunit-deprecations CLI option for controlling whether details on PHPUnit deprecations should be displayed (default: do not display)
Changed
  • #​5937: PHPUnit deprecations will, by default, no longer affect the test runner's shell exit code. This can optionally be turned back on using the --fail-on-phpunit-deprecation CLI option or the failOnPhpunitDeprecation="true" attribute on the <phpunit> element of the XML configuration file.
  • Details for PHPUnit deprecations will, by default, no longer be displayed. This can optionally be turned back on using the --display-phpunit-deprecations CLI option or the displayDetailsOnPhpunitDeprecations attribute on the <phpunit> element of the XML configuration file.

How to install or update PHPUnit

v11.3.2: PHPUnit 11.3.2

Compare Source

Changed
  • #​5931: name property on <testsuites> element in JUnit XML logfile
  • Removed .phpstorm.meta.php file as methods such as TestCase::createStub() use generics / template types for their return types and PhpStorm, for example, uses that information
Fixed
  • #​5884: TestDox printer does not consider that issues can be suppressed by attribute, baseline, source location, or @ operator

How to install or update PHPUnit


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 changed the title chore(deps): update dependency phpunit/phpunit to v11.3.2 chore(deps): update dependency phpunit/phpunit to v11.3.3 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-11.x-lockfile branch from 24b5690 to dcc66ba Compare September 4, 2024 13:51
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.3.3 chore(deps): update dependency phpunit/phpunit to v11.3.4 Sep 9, 2024
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-11.x-lockfile branch 2 times, most recently from abd90f3 to 5a65865 Compare September 13, 2024 06:34
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.3.4 chore(deps): update dependency phpunit/phpunit to v11.3.5 Sep 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.3.5 chore(deps): update dependency phpunit/phpunit to v11.3.6 Sep 19, 2024
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-11.x-lockfile branch from 5a65865 to 02c6bf1 Compare September 19, 2024 11:11
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.3.6 chore(deps): update dependency phpunit/phpunit to v11.4.0 Oct 5, 2024
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-11.x-lockfile branch from 02c6bf1 to ef91731 Compare October 5, 2024 09:25
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.4.0 chore(deps): update dependency phpunit/phpunit to v11.4.1 Oct 8, 2024
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-11.x-lockfile branch from ef91731 to b395224 Compare October 8, 2024 16:03
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-11.x-lockfile branch from b395224 to d230bfc Compare October 19, 2024 13:41
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.4.1 chore(deps): update dependency phpunit/phpunit to v11.4.2 Oct 19, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.4.2 chore(deps): update dependency phpunit/phpunit to v11.4.3 Oct 28, 2024
@renovate renovate bot force-pushed the renovate/phpunit-phpunit-11.x-lockfile branch from d230bfc to b75952d Compare October 28, 2024 15:25
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.4.3 chore(deps): update dependency phpunit/phpunit to v11.4.4 Nov 27, 2024
Copy link
Contributor Author

renovate bot commented Nov 27, 2024

⚠️ 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: src/be/composer.lock
Command failed: composer update phpunit/phpunit:11.5.3 --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
    - laravel/framework is locked to version v11.21.0 and an update of this package was not requested.
    - laravel/framework v11.21.0 requires league/commonmark ^2.2.1 -> satisfiable by league/commonmark[2.5.3].
    - league/commonmark 2.5.3 requires league/config ^1.1.1 -> satisfiable by league/config[v1.2.0].
    - league/config v1.2.0 requires nette/schema ^1.2 -> satisfiable by nette/schema[v1.3.0].
    - nette/schema v1.3.0 requires php 8.1 - 8.3 -> your php version (8.4.2) does not satisfy that requirement.


@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.4.4 chore(deps): update dependency phpunit/phpunit to v11.5.0 Dec 6, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.5.0 chore(deps): update dependency phpunit/phpunit to v11.5.1 Dec 11, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.5.1 chore(deps): update dependency phpunit/phpunit to v11.5.2 Dec 21, 2024
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v11.5.2 chore(deps): update dependency phpunit/phpunit to v11.5.3 Jan 13, 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.

0 participants