Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2023

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action minor v3.3.1 -> v3.4.3 age adoption passing confidence
codecov/codecov-action action patch v3.1.1 -> v3.1.6 age adoption passing confidence
doctrine/annotations (source) require patch 2.0.1 -> 2.0.2 age adoption passing confidence
infection/infection require-dev minor ^0.26 -> ^0.31 age adoption passing confidence
laminas/automatic-releases action minor 1.24.0 -> 1.25.0 age adoption passing confidence
php require minor ~8.1.0 || ~8.2.0 -> ~8.1.0 || ~8.2.0 || ~8.4.0 age adoption passing confidence
shivammathur/setup-php action minor 2.24.0 -> 2.35.4 age adoption passing confidence

Release Notes

actions/cache (actions/cache)

v3.4.3

Compare Source

What's Changed

Full Changelog: actions/cache@v3.4.2...v3.4.3

v3.4.2

Compare Source

What's Changed

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

Full Changelog: actions/cache@v3.4.0...v3.4.2

v3.4.1

Compare Source

[!WARNING]
This version was incorrectly released using a SHA pointing to a newer version for immutable actions only. Please use v3.4.2 (or v3) instead.

v3.4.0

Compare Source

⚠️ Important Changes

The cache backend service has been rewritten from the ground up for improved performance and reliability. actions/cache now integrates with the new cache service (v2) APIs.

The new service will gradually roll out as of February 1st, 2025. The legacy service will also be sunset on the same date. Changes in these release are fully backward compatible.

We are deprecating some versions of this action. We recommend upgrading to version v4 or v3 as soon as possible before February 1st, 2025. (Upgrade instructions below).

If you are using pinned SHAs, please use the SHAs of versions v4.2.0 or v3.4.0

If you do not upgrade, all workflow runs using any of the deprecated actions/cache will fail.

Upgrading to the recommended versions will not break your workflows.

Read more about the change & access the migration guide: reference to the announcement.

Minor changes

Minor and patch version updates for these dependencies:

Full Changelog: actions/cache@v3.3.3...v3.4.0

v3.3.3

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.3

v3.3.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.2

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

v3.1.6

Compare Source

#Full Changelog: codecov/codecov-action@v3.1.5...v3.1.6

v3.1.5

Compare Source

What's Changed

v3.1.4: 3.1.4

Compare Source

What's Changed
New Contributors

Full Changelog: codecov/codecov-action@v3.1.3...v3.1.4

v3.1.3: 3.1.3

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v3.1.2...v3.1.3

v3.1.2: 3.1.2

Compare Source

What's Changed
New Contributors

Full Changelog: codecov/codecov-action@v3.1.1...v3.1.2

doctrine/annotations (doctrine/annotations)

v2.0.2

Compare Source

Release Notes for 2.0.2

2.0.x bugfix release (patch)

2.0.2
  • Total issues resolved: 0
  • Total pull requests resolved: 2
  • Total contributors: 2
Improvement
Documentation
Changes from Lower Branches
  • This release includes all changes of the 1.14.4 release
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:

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

renovate bot commented Apr 5, 2023

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 from 85ed9b1 to 88d6c62 Compare April 11, 2023 21:33
@renovate renovate bot changed the title Update dependency phpstan/phpstan to ^1.10.11 Update all non-major dependencies Apr 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 32aa388 to 318467f Compare April 19, 2023 06:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2ce06f0 to 036db3e Compare April 22, 2023 10:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 760d562 to ea1b512 Compare May 16, 2023 06:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a969e59 to 8b0fc5c Compare May 28, 2023 23:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 31dfb77 to 7d782a5 Compare June 9, 2023 02:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b76fb9c to d0b1f80 Compare June 16, 2023 06:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d0b1f80 to 3992e79 Compare June 21, 2023 20:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6c7b1c0 to 4a318de Compare July 7, 2023 05:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b5d2161 to 4d5eb52 Compare February 18, 2025 23:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d5cff06 to dca0dfb Compare March 3, 2025 17:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from e98e508 to 2b9cbf2 Compare March 17, 2025 13:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 57886f0 to 4c8c3dc Compare April 8, 2025 11:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5a54158 to cbf3e88 Compare April 15, 2025 12:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c323834 to e29e5f3 Compare May 13, 2025 13:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e29e5f3 to d053131 Compare May 19, 2025 17:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6daa965 to de2e5b2 Compare June 12, 2025 21:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c8fd5eb to ebe417e Compare July 4, 2025 01:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8230e1c to 6932c97 Compare July 11, 2025 22:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 56b5cbe to 4c507c6 Compare July 29, 2025 17:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c507c6 to c8a0608 Compare August 10, 2025 08:57
| datasource  | package                    | from    | to     |
| ----------- | -------------------------- | ------- | ------ |
| github-tags | actions/cache              | v3.3.1  | v3.4.3 |
| github-tags | codecov/codecov-action     | v3.1.1  | v3.1.6 |
| packagist   | doctrine/annotations       | 2.0.1   | 2.0.2  |
| packagist   | infection/infection        | 0.26.19 | 0.31.2 |
| github-tags | laminas/automatic-releases | 1.24.0  | 1.25.0 |
| github-tags | containerbase/php-prebuild | 8.2.29  | 8.4.11 |
| github-tags | shivammathur/setup-php     | 2.24.0  | 2.35.4 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c8a0608 to eb6e25a Compare August 25, 2025 10:23
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