Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 15, 2023

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
infection/infection ^0.26.19 -> ^0.31.9 age adoption passing confidence require-dev minor
laminas/laminas-ci-matrix-action 1.22.1 -> 1.32.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.3.0 -> ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.5.0 age adoption passing confidence require minor
phpunit/phpunit (source) ^9.6.7 -> ^9.6.31 age adoption passing confidence require-dev patch

Release Notes

infection/infection (infection/infection)

v0.31.9: Support PHPStan-dev version in PHPStanAdapter

Compare Source

Changed:

Full Changelog: infection/infection@0.31.8...0.31.9

v0.31.8

Compare Source

Changed:

Full Changelog: infection/infection@0.31.7...0.31.8

v0.31.7: Show uncovered mutants to output when --with-uncovered is used

Compare Source

Fixed:

Full Changelog: infection/infection@0.31.6...0.31.7

v0.31.6: Introduce --logger-text option

Compare Source

Added:

  • Introduce --logger-text option to enforce text logger file path by @​romm in #​2438

Full Changelog: infection/infection@0.31.5...0.31.6

v0.31.5

Compare Source

Fixed:

  • Fix --dry-run option using DryRunProcess wrapper (alternative approach) by @​sanmai in #​2435

Changed:

Full Changelog: infection/infection@0.31.4...0.31.5

v0.31.4

Compare Source

Changed:

Internal:

Full Changelog: infection/infection@0.31.3...0.31.4

v0.31.3: PHPStan running out of memory when attempting --static-analysis-tool=phpstan

Compare Source

Fixed:

Changed:

Internal:

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

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)

# continue using
bin/infection

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

v0.30.3

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)

# continue using
bin/infection

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

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:

@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 from 8a6bad2 to 7ac1edd Compare April 17, 2023 00:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 001c3dc to fa5169b Compare April 27, 2023 21:28
@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 from fa5169b to f41d4db Compare April 30, 2023 01:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6529c3b to d0df51c Compare May 11, 2023 09:57
@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 2 times, most recently from 6b7fe27 to 6643bc9 Compare May 16, 2023 05:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6643bc9 to 35931be Compare May 21, 2023 01:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 906f614 to ca80085 Compare June 17, 2023 00:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ca80085 to 5e13e8e Compare June 27, 2023 00:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 698a98e to 8a8fa6f Compare July 11, 2023 21:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dd72429 to 98792e8 Compare July 17, 2023 14:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 98792e8 to dc6a980 Compare August 19, 2023 07:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dc6a980 to b1223c8 Compare September 3, 2023 13:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from c3d3d71 to 7804eca Compare September 19, 2023 07:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e3c927 to bdedede Compare March 2, 2025 21:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 26592ff to 03fdd70 Compare April 28, 2025 19:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 03fdd70 to a6c0952 Compare May 2, 2025 11:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 412364c to 5466424 Compare July 10, 2025 00:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5466424 to 3cfa8f9 Compare July 11, 2025 22:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3cfa8f9 to 32f4a46 Compare July 28, 2025 18:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0fa1351 to a009369 Compare August 10, 2025 08:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c6d9ad9 to 56a5462 Compare August 21, 2025 18:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 69fd253 to 23271d4 Compare September 14, 2025 09:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d7b5c28 to da17304 Compare September 24, 2025 09:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 280e0aa to 6095255 Compare October 12, 2025 09:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6095255 to 4ea2ee2 Compare October 16, 2025 22:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4ea2ee2 to 91fd1aa Compare October 27, 2025 15:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4c3f6ec to 659ea10 Compare November 27, 2025 16:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 659ea10 to 7033001 Compare December 1, 2025 08:56
| datasource  | package                                       | from    | to     |
| ----------- | --------------------------------------------- | ------- | ------ |
| packagist   | infection/infection                           | 0.26.19 | 0.31.9 |
| github-tags | laminas/laminas-ci-matrix-action              | 1.22.1  | 1.32.0 |
| github-tags | laminas/laminas-continuous-integration-action | 1.32.0  | 1.43.0 |
| github-tags | containerbase/php-prebuild                    | 8.3.28  | 8.5.0  |
| packagist   | phpunit/phpunit                               | 9.6.17  | 9.6.31 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7033001 to f75215a Compare December 6, 2025 08:28
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.

1 participant