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 #148

Merged
merged 1 commit into from
Jan 17, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
infection/infection ^0.27.0 -> ^0.27.9 age adoption passing confidence require-dev patch
ocramius/package-versions ^2.7.0 -> ^2.8.0 age adoption passing confidence require minor
phpunit/phpunit (source) ^10.2.7 -> ^10.5.7 age adoption passing confidence require-dev minor
shivammathur/setup-php 2.25.5 -> 2.29.0 age adoption passing confidence action minor
symfony/process (source) ^6.3.2 -> ^6.4.2 age adoption passing confidence require-dev minor
vimeo/psalm ^5.14.1 -> ^5.19.1 age adoption passing confidence require minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

infection/infection (infection/infection)

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

v0.27.8: Do not remove attributes from class methods

Compare Source

Fixed:

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

v0.27.7: PHP 8.3, Symfony 7 support

Compare Source

Changed:

Full Changelog: infection/infection@0.27.6...0.27.7

v0.27.6: Fix equivalent mutants

Compare Source

Added:

Fixed:

New Contributors

Full Changelog: infection/infection@0.27.5...0.27.6

v0.27.5: Fix bug with collecting escaped mutants for GitLab logger

Compare Source

Fixed:

Full Changelog: infection/infection@0.27.4...0.27.5

v0.27.4: Allow missing elements when destructuring arrays in foreach loops

Compare Source

Fixed:

Full Changelog: infection/infection@0.27.3...0.27.4

v0.27.3

Compare Source

Full Changelog

Added:

v0.27.2: Tech release: auto-upload PHAR, fixing issue

Compare Source

v0.27.1: Minor fixes and auto-upload PHAR to releases

Compare Source

0.27.1 (2023-09-16)

Full Changelog

Added:

Changed:

New Contributors

Ocramius/PackageVersions (ocramius/package-versions)

v2.8.0

Compare Source


Release Notes for 2.8.0

Feature release (minor)

2.8.0
  • Total issues resolved: 0
  • Total pull requests resolved: 4
  • Total contributors: 2
enhancement
renovate
sebastianbergmann/phpunit (phpunit/phpunit)

v10.5.7

Compare Source

v10.5.6

Compare Source

v10.5.5

Compare Source

v10.5.4

Compare Source

v10.5.3

Compare Source

v10.5.2

Compare Source

v10.5.1

Compare Source

v10.5.0

Compare Source

v10.4.2

Compare Source

v10.4.1

Compare Source

v10.4.0

Compare Source

v10.3.5

Compare Source

v10.3.4

Compare Source

v10.3.3

Compare Source

v10.3.2

Compare Source

v10.3.1

Compare Source

v10.3.0

Compare Source

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

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

v2.28.0

Compare Source

Changelog
  • Specifying 8.3 in php-version now installs a stable build of PHP 8.3.
- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  • Specifying latest in php-version now installs PHP 8.3 as well.
- name: Setup Latest PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: 'latest'
  • Specifying nightly in php-version now installs PHP 8.4.
- name: Setup Nightly PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: 'nightly'
- name: Setup PHP with intl
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: intl-74.1
  • Added support to specify zts in phpts environment variable instead of ts to set up thread-safe PHP on Linux and Windows.
- name: Setup PHP 8.3 (ZTS)
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    phpts: zts
  • Fixed support for debug builds. (#​784)
- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    debug: true
  • Added support for cached builds for PHP 8.3, PHP 8.4, and zts builds of all versions of PHP 5.6 and newer on Ubuntu GitHub Hosted environments. This should reduce the time it takes to set up these PHP versions.

  • Added swoole to the builds cache for GitHub-hosted environments for PHP 7.2 and newer.

- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: swoole
  • Added PHP 8.3 and PHP 8.4 to the extension lists in the wiki. (#​787).

  • PHP 8.0 is now marked as End of life and PHP 8.1 is now marked as Security fixes only in README.
    See PHP Support in README.

  • Fixed support for Blackfire extension. The action now disabled Xdebug and pcov extensions by default when blackfire is specified in extensions input.

- name: Setup PHP with blackfire extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: blackfire
  • Fixed support for grpc_php_plugin when installed along with protoc on macOS.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    tools: protoc, grpc_php_plugin
  • Fixed support for geos extension on PHP 8.3.
- name: Setup PHP with geos extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: geos
  • Fixed support for event extension on macOS to use openssl@3 formula.
- name: Setup PHP with geos extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: event
  • Update Node.js dependencies.
Merged Pull Requests

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.27.1

Compare Source

Changelog
  • Fixed updating PHP dependencies after formulae in homebrew/core tap have been sharded into directories with prefixes. (#​780)

  • Update actions/setup-node from v3 to v4 in the node workflow.

  • Update 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.27.0

Compare Source

Changelog
  • Tools box and php-scoper can now be installed easily using the tools input. (#​776)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
    tools: box, php-scoper
  • Added support for macOS 14.x Sonoma and dropped support for macOS 11.x Big Sur following a three-year support cycle that Apple follows for macOS.

  • We now set keepAlive in https agent to false in fetch.ts. After Node 19 it is set to true by default. This prevented the node process from exiting until timeout after the action run was completed. (#​773, #​777) - Ref

  • Fixed support for couchbase extension for PHP 7.4.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '7.4'
    extensions: couchbase
  • Fixed a warning when find was run without checking if the path exists on macOS.

  • Fixed checking for existing PHP installations on macOS on self-hosted environments.

  • Fixed adding tools in case /usr/local/bin directory was missing on self-hosted environments.

  • Bumped Node.js dependencies.

Merged Pull Requests
New Contributors
Full Changelog

For the complete list of changes, please refer to the Full Changelog: 2.26.0...2.27.0.

Thanks @​tillkruss for the sponsorship ❤️

Follow for updates

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

v2.26.0

Compare Source

Changelog
Microsoft SQL Server extensions. (#​758, #​766)

The latest supported version of sqlsrv and pdo_sqlsrv for the PHP version will be installed.
Also, on Windows, these extensions will be installed from microsoft/msphpsql GitHub releases and will fallback to pecl.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
    extensions: sqlsrv, pdo_sqlsrv
PHP 8.4 Support (#​762)

Added support for PHP 8.4.0-dev from the master branch of php/php-src for all supported OS.
Note: PHP 8.3.0-dev is now built from the new PHP-8.3 branch.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
Fixes
Blackfire Player

Resolved issues affecting the blackfire-player on Linux and macOS. It now installs the uuid extension that is required for the tool.
Dropped support for it on Windows as uuid extension is not available for the OS.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    tools: blackfire-player
Updates
Update actions/checkout

Updated the use of actions/checkout to v4 in the documentation and workflows.

- name: Checkout
  uses: actions/checkout@v4
Update Node.js Version

Note: Node.js 16 reached End-of-Life on 2023-09-11 (Ref).

Updated action.yml to use the node20 binary. If you use setup-php on a self-hosted runner, please make sure it is v2.308.0 or newer to use this release or the major version tag v2.

Node.js Dependencies

Bumped Node.js dependencies.

Merged Pull Requests
New Contributors
Full Changelog

For the complete list of changes, please refer to the Full Changelog: 2.25.5...2.26.0.

Follow for updates

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

symfony/process (symfony/process)

v6.4.2

Compare Source

Changelog (symfony/process@v6.4.1...v6.4.2)

v6.4.0

Compare Source

Changelog (symfony/process@v6.4.0-RC2...v6.4.0)

  • no significant changes

v6.3.11

Compare Source

Changelog (symfony/process@v6.3.10...v6.3.11)

v6.3.4

Compare Source

Changelog (symfony/process@v6.3.3...v6.3.4)

  • bug symfony/symfony#51296 [Process] Fix silencing wait when using a sigchild-enabled binary (@​nicolas-grekas)
vimeo/psalm (vimeo/psalm)

v5.19.1

Compare Source

What's Changed

Fixes

New Contributors

Full Changelog: vimeo/psalm@5.19.0...5.20.0

v5.19.0

Compare Source

What's Changed

Features
Fixes

New Contributors

Full Changelog: vimeo/psalm@5.18.0...5.19.0

v5.18.0

Compare Source

What's Changed
Features
Fixes
Internal changes
New Contributors

Full Changelog: vimeo/psalm@5.17.0...5.18.0

v5.17.0

Compare Source

What's Changed

Features
Fixes
Internal changes

New Contributors

Full Changelog: vimeo/psalm@5.16.0...5.17.0

v5.16.0

Compare Source

What's Changed

Features
Fixes

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

Read more about the use of Renovate Bot within ocramius/* projects.

@renovate renovate bot added the renovate label Aug 4, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Aug 4, 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 changed the title Update dependency phpunit/phpunit to ^10.3.1 Update dependency phpunit/phpunit to ^10.3.2 Aug 15, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eae0665 to ad618a1 Compare August 15, 2023 07:16
@renovate renovate bot changed the title Update dependency phpunit/phpunit to ^10.3.2 Update all non-major dependencies Aug 21, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b6c755d to 5982ee2 Compare August 26, 2023 14:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from befad04 to 63f6057 Compare September 5, 2023 05:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 2562924 to 1ac5127 Compare September 19, 2023 08:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 198ad16 to ac090ed Compare September 29, 2023 14:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ba124f8 to 031d998 Compare October 9, 2023 16:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 47f604a to 4209dab Compare October 16, 2023 14:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c53efe3 to e201782 Compare November 2, 2023 02:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 73fc834 to a077be8 Compare November 8, 2023 15:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a077be8 to 8e02d20 Compare November 22, 2023 22:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7d5cef5 to fa22b75 Compare December 1, 2023 18:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f256f46 to 999468e Compare December 7, 2023 18:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a78e291 to b28b27e Compare December 16, 2023 12:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3d8284e to 5bdd7b2 Compare December 30, 2023 16:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 333cf9d to ef4b7d3 Compare January 15, 2024 11:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ef4b7d3 to 3387c01 Compare January 17, 2024 14:15
| datasource  | package                   | from   | to     |
| ----------- | ------------------------- | ------ | ------ |
| packagist   | infection/infection       | 0.27.0 | 0.27.9 |
| packagist   | ocramius/package-versions | 2.7.0  | 2.8.0  |
| packagist   | phpunit/phpunit           | 10.2.7 | 10.5.7 |
| github-tags | shivammathur/setup-php    | 2.25.5 | 2.29.0 |
| packagist   | symfony/process           | 6.3.2  | 6.4.2  |
| packagist   | vimeo/psalm               | 5.14.1 | 5.19.1 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3387c01 to 725c369 Compare January 17, 2024 17:54
@Ocramius Ocramius self-assigned this Jan 17, 2024
@Ocramius Ocramius added this to the 1.15.0 milestone Jan 17, 2024
@Ocramius Ocramius merged commit eee9ec2 into 1.15.x Jan 17, 2024
30 checks passed
@Ocramius Ocramius deleted the renovate/all-minor-patch branch January 17, 2024 17:57
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