[PR #384] [MERGED] chore(deps-dev): bump phpunit/phpunit from 10.3.5 to 10.4.2 #1051

Closed
opened 2026-03-15 15:50:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/flyimg/flyimg/pull/384
Author: @dependabot[bot]
Created: 11/19/2023
Status: Merged
Merged: 11/19/2023
Merged by: @sadok-f

Base: mainHead: dependabot/composer/phpunit/phpunit-10.4.2


📝 Commits (1)

  • de66079 chore(deps-dev): bump phpunit/phpunit from 10.3.5 to 10.4.2

📊 Changes

1 file changed (+22 additions, -22 deletions)

View changed files

📝 composer.lock (+22 -22)

📄 Description

Bumps phpunit/phpunit from 10.3.5 to 10.4.2.

Changelog

Sourced from phpunit/phpunit's changelog.

10.4.2 - 2023-10-26

Fixed

  • #5048: Methods that return never cannot be doubled

10.4.1 - 2023-10-08

Fixed

  • #5534: Cache for generated Test Double code was not updated for Test Stub and Mock Object distinction

10.4.0 - 2023-10-06

Added

  • #5441: Baseline for E_(USER_)DEPRECATED, E_(USER_)NOTICE, E_STRICT, and E_(USER_)WARNING
  • #5462: Support for multiple arguments
  • #5471: assertFileMatchesFormat() and assertFileMatchesFormatFile()
  • #5515: PHPUnit\Runner\Extension\Facade::requireExportOfObjects() so that test runner extensions can indicate that they require the export of objects for events such as Test\AssertionSucceeded and Test\AssertionFailed
  • Test\PreparationFailed event
  • Attribute id attribute for testCaseMethod elements in the XML document generated by --list-tests-xml

Changed

  • #5505: Improve the failure description of StringContains-based assertions when the strings are encoded differently
  • #5515: The Test\AssertionSucceeded and Test\AssertionFailed events are always emitted again
  • #5515: --log-events-verbose-text enables the export of non-scalar values for the Test\AssertionSucceeded and Test\AssertionFailed events
  • #5524: Do not export data passed to test for PHPUnit\Event\Code\TestMethod value object by default
  • #5526: Do not limit number of columns to 80 on non-interactive TTY
  • Exceptions thrown by third-party event subscribers are now reported as test runner warnings
  • The name of the top-level test suite that is created when a directory or file path is passed as an argument to the test runner is now CLI Arguments
  • Simplified the failure description for assertInstanceOf() and assertNotInstanceOf()
  • Simplified the failure description for assertJson()
  • The --enforce-time-limit CLI option and the enforceTimeLimit XML configuration file attribute no longer affect the running of PHPT tests
  • The @codeCoverageIgnore, @codeCoverageIgnoreStart, and @codeCoverageIgnoreEnd annotations are no longer deprecated

Deprecated

  • #5472: TestCase::assertStringNotMatchesFormat() and TestCase::assertStringNotMatchesFormatFile() (these methods only have a @deprecated annotation for now; using these methods will trigger a deprecation warning in PHPUnit 11; these methods will be removed in PHPUnit 12)
  • #5481: dataSet attribute for testCaseMethod elements in the XML document generated by --list-tests-xml (the attribute will not be generated anymore starting with PHPUnit 11)
  • #5513: IgnoreClassForCodeCoverage, IgnoreMethodForCodeCoverage, and IgnoreFunctionForCodeCoverage attributes (these attributes will be removed in PHPUnit 11)
  • PHPUnit\TextUI\Configuration\Configuration::cliArgument() and PHPUnit\TextUI\Configuration\Configuration::hasCliArgument()
  • PHPUnit\Framework\Constraint\Constraint::exporter()
Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/flyimg/flyimg/pull/384 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/19/2023 **Status:** ✅ Merged **Merged:** 11/19/2023 **Merged by:** [@sadok-f](https://github.com/sadok-f) **Base:** `main` ← **Head:** `dependabot/composer/phpunit/phpunit-10.4.2` --- ### 📝 Commits (1) - [`de66079`](https://github.com/flyimg/flyimg/commit/de66079c4f94687fb9b9464cd4dee403a659591d) chore(deps-dev): bump phpunit/phpunit from 10.3.5 to 10.4.2 ### 📊 Changes **1 file changed** (+22 additions, -22 deletions) <details> <summary>View changed files</summary> 📝 `composer.lock` (+22 -22) </details> ### 📄 Description Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 10.3.5 to 10.4.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sebastianbergmann/phpunit/blob/10.4.2/ChangeLog-10.4.md">phpunit/phpunit's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/sebastianbergmann/phpunit/compare/10.4.1...10.4.2">10.4.2</a> - 2023-10-26</h2> <h3>Fixed</h3> <ul> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5048">#5048</a>: Methods that return <code>never</code> cannot be doubled</li> </ul> <h2><a href="https://github.com/sebastianbergmann/phpunit/compare/10.4.0...10.4.1">10.4.1</a> - 2023-10-08</h2> <h3>Fixed</h3> <ul> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5534">#5534</a>: Cache for generated Test Double code was not updated for Test Stub and Mock Object distinction</li> </ul> <h2><a href="https://github.com/sebastianbergmann/phpunit/compare/10.3.5...10.4.0">10.4.0</a> - 2023-10-06</h2> <h3>Added</h3> <ul> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5441">#5441</a>: Baseline for <code>E_(USER_)DEPRECATED</code>, <code>E_(USER_)NOTICE</code>, <code>E_STRICT</code>, and <code>E_(USER_)WARNING</code></li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/pull/5462">#5462</a>: Support for multiple arguments</li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5471">#5471</a>: <code>assertFileMatchesFormat()</code> and <code>assertFileMatchesFormatFile()</code></li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5515">#5515</a>: <code>PHPUnit\Runner\Extension\Facade::requireExportOfObjects()</code> so that test runner extensions can indicate that they require the export of objects for events such as <code>Test\AssertionSucceeded</code> and <code>Test\AssertionFailed</code></li> <li><code>Test\PreparationFailed</code> event</li> <li>Attribute <code>id</code> attribute for <code>testCaseMethod</code> elements in the XML document generated by <code>--list-tests-xml</code></li> </ul> <h3>Changed</h3> <ul> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/pull/5505">#5505</a>: Improve the failure description of <code>StringContains</code>-based assertions when the strings are encoded differently</li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5515">#5515</a>: The <code>Test\AssertionSucceeded</code> and <code>Test\AssertionFailed</code> events are always emitted again</li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5515">#5515</a>: <code>--log-events-verbose-text</code> enables the export of non-scalar values for the <code>Test\AssertionSucceeded</code> and <code>Test\AssertionFailed</code> events</li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5524">#5524</a>: Do not export data passed to test for PHPUnit\Event\Code\TestMethod value object by default</li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5526">#5526</a>: Do not limit number of columns to 80 on non-interactive TTY</li> <li>Exceptions thrown by third-party event subscribers are now reported as test runner warnings</li> <li>The name of the top-level test suite that is created when a directory or file path is passed as an argument to the test runner is now <code>CLI Arguments</code></li> <li>Simplified the failure description for <code>assertInstanceOf()</code> and <code>assertNotInstanceOf()</code></li> <li>Simplified the failure description for <code>assertJson()</code></li> <li>The <code>--enforce-time-limit</code> CLI option and the <code>enforceTimeLimit</code> XML configuration file attribute no longer affect the running of PHPT tests</li> <li>The <code>@codeCoverageIgnore</code>, <code>@codeCoverageIgnoreStart</code>, and <code>@codeCoverageIgnoreEnd</code> annotations are no longer deprecated</li> </ul> <h3>Deprecated</h3> <ul> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5472">#5472</a>: <code>TestCase::assertStringNotMatchesFormat()</code> and <code>TestCase::assertStringNotMatchesFormatFile()</code> (these methods only have a <code>@deprecated</code> annotation for now; using these methods will trigger a deprecation warning in PHPUnit 11; these methods will be removed in PHPUnit 12)</li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5481">#5481</a>: <code>dataSet</code> attribute for <code>testCaseMethod</code> elements in the XML document generated by <code>--list-tests-xml</code> (the attribute will not be generated anymore starting with PHPUnit 11)</li> <li><a href="https://redirect.github.com/sebastianbergmann/phpunit/issues/5513">#5513</a>: <code>IgnoreClassForCodeCoverage</code>, <code>IgnoreMethodForCodeCoverage</code>, and <code>IgnoreFunctionForCodeCoverage</code> attributes (these attributes will be removed in PHPUnit 11)</li> <li><code>PHPUnit\TextUI\Configuration\Configuration::cliArgument()</code> and <code>PHPUnit\TextUI\Configuration\Configuration::hasCliArgument()</code></li> <li><code>PHPUnit\Framework\Constraint\Constraint::exporter()</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/cacd8b9dd224efa8eb28beb69004126c7ca1a1a1"><code>cacd8b9</code></a> Prepare release</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/31dd76d47b53c2887313a005754c6d435988c4bf"><code>31dd76d</code></a> Fix: Keep fixers and options sorted by name</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/4aacfe5af0c6a2f15721aede9963c21b1e32f0f9"><code>4aacfe5</code></a> Merge branch '9.6' into 10.4</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/c2efd5d0e8a2958235f6919c3e2b301760d12f88"><code>c2efd5d</code></a> Merge branch '8.5' into 9.6</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/cc8c08990a82b655e40d218100d2fba3e91c0f72"><code>cc8c089</code></a> Fix: Keep fixers and options sorted by name</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/c0063dc29da2cc6b9157d595ab7d6c1f94c05cc9"><code>c0063dc</code></a> Fix: Do not configure deprecated fixers</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/c6e79cf25471ab9de9af79fe30dd75d22ebc53c6"><code>c6e79cf</code></a> Tweak TestDox output</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/a610540ae20988ddffdda49ce726bc221c669faa"><code>a610540</code></a> Improve test name</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/77521117ae51dd711c4c0841286a40a4121c9359"><code>7752111</code></a> Finalize test methods</li> <li><a href="https://github.com/sebastianbergmann/phpunit/commit/73798a8913a50a4bbb8370ef0dd8c2d3248ad0c2"><code>73798a8</code></a> Rename test</li> <li>Additional commits viewable in <a href="https://github.com/sebastianbergmann/phpunit/compare/10.3.5...10.4.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=phpunit/phpunit&package-manager=composer&previous-version=10.3.5&new-version=10.4.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 15:50:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/flyimg#1051
No description provided.