Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 10, 2025

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

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action minor v4.2.1 -> v4.3.0 age adoption passing confidence
codecov/codecov-action action minor v5.4.0 -> v5.5.1 age adoption passing confidence
infection/infection require-dev minor ^0.29 -> ^0.31 age adoption passing confidence
jms/serializer (source) require-dev patch 3.32.3 -> 3.32.6 age adoption passing confidence
laminas/laminas-diactoros (source) require-dev minor 3.5.0 -> 3.8.0 age adoption passing confidence
lcobucci/coding-standard require-dev minor 11.1.0 -> 11.2.0 age adoption passing confidence
middlewares/negotiation require-dev minor 2.1.1 -> 2.2.0 age adoption passing confidence
php require minor ~8.3.0 || ~8.4.0 -> ~8.3.0 || ~8.4.0 || ~8.5.0 age adoption passing confidence
twig/twig (source) require-dev minor 3.20.0 -> 3.22.1 age adoption passing confidence

Release Notes

actions/cache (actions/cache)

v4.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v4...v4.3.0

v4.2.4

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v4...v4.2.4

v4.2.3

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4.2.2...v4.2.3

v4.2.2

Compare Source

What's Changed

[!IMPORTANT]
As a reminder, there were important backend changes to release v4.2.0, see those release notes and the announcement for more details.

Full Changelog: actions/cache@v4.2.1...v4.2.2

codecov/codecov-action (codecov/codecov-action)

v5.5.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1

v5.5.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0

v5.4.3

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3

v5.4.2

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.1..v5.4.2

v5.4.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.0..v5.4.1

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:

@renovate renovate bot added the renovate label Aug 10, 2025
@renovate
Copy link
Contributor Author

renovate bot commented Aug 10, 2025

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b54e11b to 33cc69a Compare August 16, 2025 08:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5b62698 to d3312b0 Compare August 21, 2025 15:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d3312b0 to 77a0d9b Compare August 31, 2025 11:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from cdc2134 to 805574d Compare September 14, 2025 10:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a732de6 to e8d64fc Compare September 23, 2025 12:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c743a00 to 306c33b Compare September 28, 2025 18:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1e2d27b to 9b567b9 Compare October 9, 2025 09:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e1f4b58 to 157b25e Compare October 10, 2025 22:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 22745da to c9b25bb Compare October 12, 2025 17:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1c52ed6 to 47ba54b Compare October 27, 2025 18:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 47ba54b to ba72500 Compare October 30, 2025 18:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b8f1a22 to 0ada5b6 Compare November 11, 2025 22:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ada5b6 to 3eb6faa Compare November 21, 2025 02:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 19ea981 to 2fd66cc Compare December 3, 2025 13:55
| datasource  | package                    | from    | to     |
| ----------- | -------------------------- | ------- | ------ |
| github-tags | actions/cache              | v4.2.1  | v4.3.0 |
| github-tags | codecov/codecov-action     | v5.4.0  | v5.5.1 |
| packagist   | infection/infection        | 0.29.12 | 0.31.9 |
| packagist   | jms/serializer             | 3.32.3  | 3.32.6 |
| packagist   | laminas/laminas-diactoros  | 3.5.0   | 3.8.0  |
| packagist   | lcobucci/coding-standard   | 11.1.0  | 11.2.0 |
| packagist   | middlewares/negotiation    | 2.1.1   | 2.2.0  |
| github-tags | containerbase/php-prebuild | 8.4.15  | 8.5.0  |
| packagist   | twig/twig                  | 3.20.0  | 3.22.1 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2fd66cc to 368eab4 Compare December 5, 2025 17:00
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