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.0.9 -> v3.5.0 age adoption passing confidence
codecov/codecov-action action patch v3.1.1 -> v3.1.6 age adoption passing confidence
infection/infection require-dev minor ^0.26.19 -> ^0.31.0 age adoption passing confidence
laminas/automatic-releases action minor 1.19.0 -> 1.25.0 age adoption passing confidence
lcobucci/coding-standard require-dev minor 11.0.0 -> 11.1.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
ramsey/uuid require minor 4.5.1 -> 4.9.1 age adoption passing confidence
shivammathur/setup-php action minor 2.21.2 -> 2.35.5 age adoption passing confidence

Release Notes

actions/cache (actions/cache)

v3.5.0

Compare Source

  • Bump actions/cache to v4.1.0

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

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

v3.3.1

Compare Source

What's Changed

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

v3.3.0

Compare Source

What's Changed

New Contributors

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

v3.2.6

Compare Source

What's Changed

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

v3.2.5

Compare Source

What's Changed
New Contributors

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

v3.2.4

Compare Source

What's Changed
New Contributors

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

v3.2.3

Compare Source

What's Changed
New Contributors

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

v3.2.2

Compare Source

What's Changed
New Contributors

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

v3.2.1

Compare Source

What's Changed

Full Changelog: actions/cache@v3.2.0...v3.2.1

v3.2.0

Compare Source

What's Changed
New Contributors

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

v3.0.11

Compare Source

What's Changed
New Contributors

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

v3.0.10

Compare Source

  • Fix a bug with sorting inputs.
  • Update definition for restore-keys in README.md
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

infection/infection (infection/infection)

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:

@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 9 times, most recently from 1eccc14 to b98c688 Compare April 18, 2023 16:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 26c39d0 to 61b6601 Compare April 22, 2023 08:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 61b6601 to bd00eae Compare April 28, 2023 01:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 14edb8b to c4cc267 Compare May 16, 2023 08:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from c7613b2 to 1ef5da6 Compare June 2, 2023 07:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7bc0c62 to d6d53ee Compare June 7, 2023 22:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 835c703 to 8fb9f8f Compare June 20, 2023 13:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8fb9f8f to 19cdd7e Compare June 21, 2023 20:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 318c037 to 405255c Compare March 3, 2025 15:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from cc8cbcd to 0e94530 Compare March 17, 2025 18:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e94530 to e61cd6f Compare April 1, 2025 11:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a5d578b to 5ed12fc Compare April 15, 2025 11:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3e812fa to 80f030a Compare May 13, 2025 13:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 80f030a to 74032b8 Compare May 19, 2025 16:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ff87897 to 4533d8d Compare June 7, 2025 00:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c9a2f59 to 5daa9e9 Compare June 12, 2025 22:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2a418f1 to 447b619 Compare July 4, 2025 01:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 81a84db to 82d7e86 Compare July 11, 2025 22:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1eefde9 to 2909fed Compare July 29, 2025 17:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2909fed to e893873 Compare August 10, 2025 09:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e893873 to d2f72b9 Compare August 25, 2025 13:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d2f72b9 to 0955738 Compare September 18, 2025 18:15
| datasource  | package                    | from    | to     |
| ----------- | -------------------------- | ------- | ------ |
| github-tags | actions/cache              | v3.0.9  | v3.5.0 |
| github-tags | codecov/codecov-action     | v3.1.1  | v3.1.6 |
| packagist   | infection/infection        | 0.26.19 | 0.31.2 |
| github-tags | laminas/automatic-releases | 1.19.0  | 1.25.0 |
| packagist   | lcobucci/coding-standard   | 11.0.0  | 11.1.0 |
| github-tags | containerbase/php-prebuild | 8.2.29  | 8.4.12 |
| packagist   | ramsey/uuid                | 4.5.1   | 4.9.1  |
| github-tags | shivammathur/setup-php     | 2.21.2  | 2.35.5 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0955738 to f126d82 Compare September 24, 2025 15:36
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