Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 15, 2023

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
infection/infection ^0.26.19 -> ^0.31.2 age adoption passing confidence require-dev minor
laminas/laminas-ci-matrix-action 1.22.1 -> 1.29.0 age adoption passing confidence action minor
laminas/laminas-continuous-integration-action 1.32.0 -> 1.43.0 age adoption passing confidence action minor
php ~8.0.0 || ~8.1.0 || ~8.2.0 -> ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.4.0 age adoption passing confidence require minor
phpunit/phpunit (source) ^9.6.7 -> ^9.6.29 age adoption passing confidence require-dev patch

Release Notes

infection/infection (infection/infection)

v0.31.2: --static-analysis-tool-options and no MSI shown by default for non-covered code

Compare Source

Added:

  • Remove Mutation Score Indicator (MSI) from default output, show only with --with-uncovered by @​Copilot in #​2378

Changed:

  • Add --static-analysis-tool-options CLI option with proper multiple options support by @​Copilot in #​2374

Internal:

New Contributors

Full Changelog: infection/infection@0.31.1...0.31.2

v0.31.1: Cleanup old PHPUnit cache files in Infection tmp directory

Compare Source

Added:

Internal:

Full Changelog: infection/infection@0.31.0...0.31.1

v0.31.0

Compare Source

Changed:

Fixed:

  • Fix CLI output rendering for diffs which contain symfony-style like text by @​staabm in #​2338

Internal:

Backward Compatibility Break

This version introduces BC Break. Do the following:

  1. If you used Infection for all the code, including uncovered, like bin/infection, now you need to add --with-uncovered, because by default, Infection doesn't mutate uncovered code anymore
- bin/infection
+ bin/infection --with-uncovered
  1. If you used Infection for the only code covered by tests, like bin/infection --only-covered, you need to remove this option because now this is a default behavior and this options has been removed
- bin/infection --only-covered
+ bin/infection
  1. If you used Infection for all the code, including uncovered, but now you want to mutated only covered code, do nothing (default behavior has been changed)

v0.30.3

Compare Source

Added:

Changed:

Fixed:

Internal:

Full Changelog: infection/infection@0.30.2...0.30.3

v0.30.2

Compare Source

Added:

Changed:

Fixed:

Internal:

Full Changelog: infection/infection@0.30.2...0.30.3

v0.30.1

Compare Source

Changed:

Internal:

Full Changelog: infection/infection@0.30.1...0.30.2

v0.30.0

Compare Source

Changed:

Fixed:

Internal:

Full Changelog

v0.29.14

Compare Source

Full Changelog

Added:

Changed:

  • [performance] Support narrowing a union type containing false with a non-falsy value by @​staabm in #​2121
  • [performance] Don't mutate method in final class ProtectedVisibility: by @​staabm in #​2112
  • [performance] Don't mutate true/false in conditions by @​staabm in #​2143
  • [performance] Don't mutate cast in return of typed function by @​staabm in #​2145
  • [performance] Don't mutate int-cast in return of int-typed function by @​staabm in #​2148
  • [performance] Don't mutate string-cast in return of string-typed function by @​staabm in #​2149
  • [performance] Don't mutate float-cast in return of float-typed function by @​staabm in #​2150
  • [performance] Don't mutate array-cast in return of array-typed function by @​staabm in #​2151
  • [performance] Don't mutate object-cast in return of object-typed function by @​staabm in #​2152
  • [performance] Don't mutate cast in arguments when strict_types=1 by @​staabm in #​2154
  • [performance] Don't mutate instanceof into pre-existing case by @​staabm in #​2176
  • [performance] Don't produce mutations for identical type comparisons in EqualIdentical by @​staabm in #​2119
  • [performance] Don't produce mutations for equal type comparisons in IdenticalEqual by @​staabm in #​2117
  • [performance] Don't produce mutations for empty-array type comparisons by @​staabm in #​2130
  • [performance] Don't produce mutations for same type comparisons of static method calls by @​staabm in #​2132
  • [performance] Don't produce mutations for same type comparisons of class constants by @​staabm in #​2134
  • [performance] Don't produce mutations for same type comparisons of known global constants by @​staabm in #​2135
  • [performance] Don't mutate equal/not-equal in ternary by @​staabm in #​2139
  • [performance] Don't mutate false/true in ternary by @​staabm in #​2138
  • [performance] Don't mutate identical/not-identical in ternary by @​staabm in #​2140
  • [performance] Don't mutate greater/smaller-than in ternary by @​staabm in #​2141
  • [performance] Update MutationTestingRunner to stream-filter mutations in buffered mode by @​sanmai in #​2207
  • [performance] Smarter DecrementInteger mutator by @​staabm in #​2204
  • [performance] Smarter IncrementInteger mutator by @​staabm in #​2208
  • [performance] Smarter DecrementInteger mutator by @​staabm in #​2238
  • [performance] Smarter LogicalAndAllSubExprNegation with instanceof by @​staabm in #​2241
  • [performance] Smarter LogicalOr Mutator by @​staabm in #​2243
  • [performance] Prevent overlap of ArrayItemRemoval with IfNegation by @​staabm in #​2199
  • [performance] Prevent endless loop in Decrement/Increment-mutator by @​staabm in #​2231
  • [performance] ArrayItemRemoval: Do not remove item from array assignment as it produces PHP warning by @​staabm in #​2236
  • DotFormatter: break legend into 2 lines by @​staabm in #​2200
  • Support null-safe method calls in MethodCallRemoval mutator by @​staabm in #​2106
  • Fix missing mutation for bool returning functions by @​staabm in #​2120

Fixed:

  • Set ignore config when --mutants is used and config has global-ignoreSourceCodeByRegex by @​maks-rafalko in #​2172

Internal:

v0.29.13

Compare Source

Added:

Changed:

Internal:

Full Changelog: infection/infection@0.29.12...0.29.13

v0.29.12: Support thecodingmachine/safe v3, drop Symfony 5.4 support

Compare Source

Changed:

Full Changelog: infection/infection@0.29.11...0.29.12

v0.29.11: Add support for `sebastian/diff` v7

Compare Source

Added:

Full Changelog: infection/infection@0.29.10...0.29.11

v0.29.10: Require PHP 8.2. Switch to `shish/safeto fix issue withthecodingmachine/safe`

Compare Source

Fixed:

  • Attempt to switch to shish/safe to fix issue with thecodingmachine/safe by @​sanmai in #​2017

Changed:

Full Changelog: infection/infection@0.29.9...0.29.10

v0.29.9: New PHP 8.4 mutators, remove PHP 8.4 deprecations

Compare Source

Added:

Changed:

Full Changelog: infection/infection@0.29.8...0.29.9

v0.29.8: PHPUnit 11 compatibility, performance improvement thanks to stopOnDefect

Compare Source

Added:

Changed:

New Contributors

Full Changelog: infection/infection@0.29.7...0.29.8

v0.29.7: Diff colorizer fix for multiline cases, PHP 8.4 support in pipelines

Compare Source

What's Changed

Fixed:

Added:

Changed:

Full Changelog: infection/infection@0.29.6...0.29.7

v0.29.6: Ignore switch(bool) statements in TrueValue and FalseValue mutators

Compare Source

Changed:

  • Ignore switch(bool) statements in TrueValue and FalseValue mutators. by @​shanept in #​1986

New Contributors

Full Changelog: infection/infection@0.29.5...0.29.6

v0.29.5

Compare Source

Full Changelog

Added:

v0.29.4

Compare Source

Full Changelog

Added:

v0.29.3: Add support for `colinodell/json5` v3

Compare Source

Changed:

Full Changelog: infection/infection@0.29.2...0.29.3

v0.29.2: Highlight inline differences in CLI

Compare Source

Added:

Full Changelog: infection/infection@0.29.1...0.29.2

v0.29.1

Compare Source

Full Changelog

Added:

Changed:

  • [performance] Support narrowing a union type containing false with a non-falsy value by @​staabm in #​2121
  • [performance] Don't mutate method in final class ProtectedVisibility: by @​staabm in #​2112
  • [performance] Don't mutate true/false in conditions by @​staabm in #​2143
  • [performance] Don't mutate cast in return of typed function by @​staabm in #​2145
  • [performance] Don't mutate int-cast in return of int-typed function by @​staabm in #​2148
  • [performance] Don't mutate string-cast in return of string-typed function by @​staabm in #​2149
  • [performance] Don't mutate float-cast in return of float-typed function by @​staabm in #​2150
  • [performance] Don't mutate array-cast in return of array-typed function by @​staabm in #​2151
  • [performance] Don't mutate object-cast in return of object-typed function by @​staabm in #​2152
  • [performance] Don't mutate cast in arguments when strict_types=1 by @​staabm in #​2154
  • [performance] Don't mutate instanceof into pre-existing case by @​staabm in #​2176
  • [performance] Don't produce mutations for identical type comparisons in EqualIdentical by @​staabm in #​2119
  • [performance] Don't produce mutations for equal type comparisons in IdenticalEqual by @​staabm in #​2117
  • [performance] Don't produce mutations for empty-array type comparisons by @​staabm in #​2130
  • [performance] Don't produce mutations for same type comparisons of static method calls by [@​staabm](http

@renovate renovate bot added the renovate label Apr 15, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Apr 15, 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 infection/infection:0.28.1 phpunit/phpunit:9.6.19 --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
    - Root composer.json requires infection/infection ^0.28.1 -> satisfiable by infection/infection[0.28.1].
    - infection/infection 0.28.1 requires php ^8.1 -> your php version (8.0.99; overridden via config.platform, actual: 8.0.30) 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/all-minor-patch branch 2 times, most recently from b6f30e4 to 3f72c57 Compare April 27, 2023 01:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f72c57 to 6ceb720 Compare April 27, 2023 20:12
@renovate renovate bot changed the title Update dependency infection/infection to ^0.26.20 Update dependency infection/infection to ^0.26.21 Apr 27, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a1d3e6f to 1341b73 Compare May 10, 2023 00:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1341b73 to ea410ba Compare May 11, 2023 06:31
@renovate renovate bot changed the title Update dependency infection/infection to ^0.26.21 Update all non-major dependencies May 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ed4f969 to 1bd1fc9 Compare May 21, 2023 00:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 197ee07 to b6ada04 Compare June 16, 2023 03:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b6ada04 to 5e4b085 Compare June 27, 2023 01:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 8cbdf46 to d4c5681 Compare July 12, 2023 00:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9f17ab1 to c0f71b7 Compare July 17, 2023 17:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c0f71b7 to 2b25153 Compare August 19, 2023 09:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b25153 to 512029a Compare September 3, 2023 13:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 270fcf7 to 989b940 Compare September 19, 2023 08:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 989b940 to a966771 Compare September 28, 2023 08:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 02c78e8 to c8f902b Compare November 25, 2024 17:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4d6fd87 to 2d56f5d Compare December 9, 2024 22:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2d56f5d to dcdcb46 Compare December 18, 2024 07:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dcdcb46 to 95224fe Compare January 19, 2025 09:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c1f2ec9 to 1668632 Compare February 11, 2025 10:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1668632 to 899d0e4 Compare February 17, 2025 22:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from aa1b738 to 0300759 Compare March 2, 2025 22:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f341ff4 to e862871 Compare May 2, 2025 06:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9d33589 to 1d1789f Compare July 3, 2025 23:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from fe58a1c to 39d3516 Compare July 11, 2025 23:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4365bb0 to 5c1d874 Compare August 4, 2025 14:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5c1d874 to 0d9467d Compare August 10, 2025 09:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 542b07d to 9155b2c Compare August 21, 2025 17:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2d9067e to 812ccbb Compare September 14, 2025 09:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c34d01b to 1f80829 Compare September 24, 2025 10:47
| datasource  | package                                       | from    | to     |
| ----------- | --------------------------------------------- | ------- | ------ |
| packagist   | infection/infection                           | 0.26.19 | 0.31.2 |
| github-tags | laminas/laminas-ci-matrix-action              | 1.22.1  | 1.29.0 |
| github-tags | laminas/laminas-continuous-integration-action | 1.32.0  | 1.43.0 |
| github-tags | containerbase/php-prebuild                    | 8.2.29  | 8.4.13 |
| packagist   | phpunit/phpunit                               | 9.6.10  | 9.6.29 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1f80829 to 73cda2b Compare October 5, 2025 12:59
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