Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #325

Open
wants to merge 1 commit into
base: 0.1.x
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 7, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action patch v3.3.2 -> v3.3.3 age adoption passing confidence
codecov/codecov-action action patch v3.1.4 -> v3.1.6 age adoption passing confidence
infection/infection require-dev minor ^0.27 -> ^0.29 age adoption passing confidence
monolog/monolog require-dev minor 3.5.0 -> 3.6.0 age adoption passing confidence
react/socket require minor 1.14.0 -> 1.15.0 age adoption passing confidence
shivammathur/setup-php action minor 2.28.0 -> 2.30.5 age adoption passing confidence

Release Notes

actions/cache (actions/cache)

v3.3.3

Compare Source

What's Changed

New Contributors

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

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

New Contributors

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

infection/infection (infection/infection)

v0.29.2: Highlight inline differences in CLI

Compare Source

Added:

Full Changelog: infection/infection@0.29.1...0.29.2

v0.29.1: Fix usage of custom mutator with bootstrap file

Compare Source

Fixed:

Full Changelog: infection/infection@0.29.0...0.29.1

v0.29.0

Compare Source

Full Changelog

Added:

Read about how to create custom mutators: https://infection.github.io/guide/custom-mutators.html

Changed:

v0.28.1: Use CI (GitHub, GitLab) variable to detect project path

Compare Source

Changed:

New Contributors

Full Changelog: infection/infection@0.28.0...0.28.1

v0.28.0

Compare Source

Full Changelog

Added:

v0.27.11: Add --map-source-class-to-test option to speed up Mutation Testing

Compare Source

Added:

Changed:

Full Changelog: infection/infection@0.27.10...0.27.11

v0.27.10: Add support for `sebastian/diff` v6

Compare Source

Changed:

Full Changelog: infection/infection@0.27.9...0.27.10

v0.27.9: Fix an issue with numeric data provider keys in PHPUnit >= 10

Compare Source

Fixed:

Full Changelog: infection/infection@0.27.8...0.27.9

Seldaek/monolog (monolog/monolog)

v3.6.0

Compare Source

  • Added LineFormatter->setBasePath(...) that allows removing the project's path from the stack trace output (#​1873)
    • Added $includeExtra option in PsrHandler to also use extra data to replace placeholder values in the message (#​1852)
    • Added ability to customize what is a duplicated message by extending the DeduplicationHandler (#​1879)
    • Added handling for using GelfMessageFormatter together with the AmqpHandler (#​1869)
    • Added ability to extend GoogleCloudLoggingFormatter (#​1859)
    • Fixed __toString failures in context data crashing the normalization process (#​1868)
    • Fixed PHP 8.4 deprecation warnings (#​1874)
reactphp/socket (react/socket)

v1.15.0

Compare Source

  • Feature: Full PHP 8.3 compatibility.
    (#​310 by @​clue)

  • Fix: Fix cancelling during the 50ms resolution delay when DNS is still pending.
    (#​311 by @​clue)

shivammathur/setup-php (shivammathur/setup-php)

v2.30.5

Compare Source

Changelog

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.30.4

Compare Source

Changelog

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.30.3

Compare Source

Changelog
  • Fixed reading extension directory for PHP 8.4 on macOS.

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.30.2

Compare Source

Changelog

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.30.1

Compare Source

Changelog
  • Improved updating Homebrew core tap on macOS using a retry logic.

  • Fixed support for phalcon on Windows.

  • Fixed support for OCI extensions for PHP 8.4 on Linux and macOS.

  • Fixed support for sqlsrv and pdo_sqlsrv on PHP 8.0.

  • Fixed type error on Windows in Get-File function.

  • Minified the release file dist/index.js file generated by vercel/ncc.

  • Updated pre-installed PHP versions for GitHub runners in the README.

  • Updated Node.js dependencies.

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.30.0

Compare Source

Changelog

  • Added support to set custom composer timeout (#​811)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    COMPOSER_PROCESS_TIMEOUT: 300

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.29.0

Compare Source

Changelog
  • Added support for 'lowest' and 'highest' aliases to specify PHP versions. #​794
    • The lowest alias installs the lowest actively supported version in the PHP project.
    • The 'highest' alias is equivalent to the 'latest' alias, so it installs the latest supported stable PHP version.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: lowest # or highest
  • Added support for thread-safe builds on macOS. This completes the support for thread-safe builds on all supported platforms.
- name: Setup ZTS PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    phpts: zts
  • Updated documentation for support to read the PHP version from composer.lock and composer.json files.
    • If php-version and php-version-file inputs are not specified, then it can read the php version from platform-overrides.php value in composer.lock or config.platform.php value from composer.json. #​800
- name: Checkout
  uses: actions/checkout@v4
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  • Switched to the new PHPCSStandards/PHP_CodeSniffer repository for builds of phpcs and phpcbf tools. #​809
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    tools: phpcs, phpcbf
  • Marked v1 version of the action as completely unsupported, it will receive no updates, please upgrade to v2, if not done already.

  • Fixed installing extensions on Windows for PHP 8.1 by reverting the version bump for minimum stability. #​807

  • Fixed building extensions on PHP 8.4 that used backward compatibility headers from ext/standard to use ext/random/php_random.h header.

  • Improved support for phalcon to install the extension when specified without the version number. #​796

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: phalcon
  • Updated codeql workflow to use v3 versions of codeql actions. #​803

  • Updated docs workflow to use actions/download-artifact@v4 and actions/upload-artifact@v4. #​804, #​805

  • Updated Node.js dependencies.

Merged Pull Requests

For the complete list of changes, please refer to the Full Changelog

Thanks @​dr5hn, @​tighten, @​ZeekInteractive, @​acelaya, and @​fulopattila122 for the sponsorship ❤️

Follow for updates

setup-php reddit setup-php twitter setup-php status


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate label Dec 7, 2023
Copy link
Contributor Author

renovate bot commented Dec 7, 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 5 times, most recently from eca00ff to d4829b5 Compare December 15, 2023 13:26
@renovate renovate bot changed the title Update dependency infection/infection to v0.27.9 Update all non-major dependencies Dec 15, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6c81933 to 9484851 Compare January 11, 2024 19:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d83ae10 to 774ff2e Compare January 20, 2024 15:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b228832 to 9a631ec Compare January 30, 2024 22:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b28f243 to 951233a Compare February 20, 2024 00:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 619048f to dfd0f05 Compare February 25, 2024 10:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 45b3e37 to feb547f Compare March 7, 2024 18:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 44ac6f5 to 79b34f8 Compare March 20, 2024 11:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 513c93e to b87efd5 Compare March 25, 2024 11:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from eaeb492 to 80344da Compare March 31, 2024 01:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 7025dc8 to 247eefb Compare April 6, 2024 13:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bb222a9 to 1bc483c Compare April 14, 2024 09:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d5f6f9b to cee551c Compare April 24, 2024 01:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cee551c to 1301212 Compare May 28, 2024 01:03
| datasource  | package                | from   | to     |
| ----------- | ---------------------- | ------ | ------ |
| github-tags | actions/cache          | v3.3.2 | v3.3.3 |
| github-tags | codecov/codecov-action | v3.1.4 | v3.1.6 |
| packagist   | infection/infection    | 0.27.8 | 0.29.2 |
| packagist   | monolog/monolog        | 3.5.0  | 3.6.0  |
| packagist   | react/socket           | 1.14.0 | 1.15.0 |
| github-tags | shivammathur/setup-php | 2.28.0 | 2.30.5 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1301212 to cf8d20a Compare June 3, 2024 23:49
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.

None yet

0 participants