Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 28, 2023

This PR contains the following updates:

Package Change Age Confidence
infection/infection ^0.13.6 || ^0.15.3 || ^0.26.0 -> ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.31.0 age confidence

Release Notes

infection/infection (infection/infection)

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)

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 mu

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 requested a review from drupol as a code owner May 28, 2023 12:20
@what-the-diff
Copy link

what-the-diff bot commented May 28, 2023

PR Summary

  • Updated composer.json file
    The composer.json file has been modified to allow for a new package version.

  • Added support for infection/infection package v0.27.0
    The application now supports version 0.27.0 of the infection/infection package, improving compatibility.

@renovate renovate bot changed the title Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.27.0 Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.28.0 Mar 23, 2024
@renovate renovate bot force-pushed the renovate/infection-infection-0.x branch from b681457 to 5dbfde2 Compare March 23, 2024 20:22
@renovate renovate bot force-pushed the renovate/infection-infection-0.x branch from 5dbfde2 to 6688834 Compare May 28, 2024 01:56
@renovate renovate bot changed the title Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.28.0 Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.29.0 May 28, 2024
@renovate renovate bot force-pushed the renovate/infection-infection-0.x branch from 6688834 to c66782a Compare July 3, 2025 03:30
@renovate renovate bot changed the title Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.29.0 Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.30.0 Jul 3, 2025
@renovate renovate bot force-pushed the renovate/infection-infection-0.x branch from c66782a to d205816 Compare July 28, 2025 17:27
@renovate renovate bot changed the title Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.30.0 Update dependency infection/infection to ^0.13.6 || ^0.15.3 || ^0.26.0 || ^0.31.0 Jul 28, 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