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

chore(deps): update all non-major dependencies #1257

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
ergebnis/composer-normalize 2.44.0 -> 2.45.0 age adoption passing confidence require-dev minor
php ~8.1.0 || ~8.2.0 || ~8.3.0 -> ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 age adoption passing confidence require minor
phpstan/phpstan 1.12.11 -> 1.12.15 age adoption passing confidence require-dev patch
phpstan/phpstan-phpunit 1.4.1 -> 1.4.2 age adoption passing confidence require-dev patch
phpunit/phpunit (source) 10.5.38 -> 10.5.40 age adoption passing confidence require-dev patch
ridedott/merge-me-action v2.10.111 -> v2.10.113 age adoption passing confidence action patch
shivammathur/setup-php 2.31.1 -> 2.32.0 age adoption passing confidence action minor

Release Notes

ergebnis/composer-normalize (ergebnis/composer-normalize)

v2.45.0

Compare Source

For a full diff see [2.44.0...2.45.0][2.44.0...2.45.0].

Added
Changed
containerbase/php-prebuild (php)

v8.4.2

Compare Source

Bug Fixes
  • deps: update dependency php to v8.4.2

v8.4.1

Compare Source

Bug Fixes
  • deps: update dependency php to v8.4.1
phpstan/phpstan (phpstan/phpstan)

v1.12.15

Compare Source

Bugfixes 🐛

Internals 🔍

v1.12.14

Compare Source

Fix preg_match() group containing start/end meta characters (#​3740), #​12297, thanks @​staabm!

v1.12.13

Compare Source

Improvements 🔧

Bugfixes 🐛

Function signature fixes 🤖

Internals 🔍

v1.12.12

Compare Source

Improvements 🔧

Bugfixes 🐛

Function signature fixes 🤖

phpstan/phpstan-phpunit (phpstan/phpstan-phpunit)

v1.4.2

Compare Source

  • 72a6721 - Use more specific node-type
  • 4b6ad7f - Fix
  • bec49ea - Merge branch '1.4.x' into 2.0.x
  • 3cc8554 - Fixes after PHPStan update
  • 09e2d3b - Uncover everything behind the bleedingEdge flag
  • 4d861e0 - Fix after TypeSpecifier BC break
  • 3faa605 - Update build-cs
  • 953195d - Stop testing PHP 7.2 and 7.3
  • 7f1457f - Open 2.0.x
sebastianbergmann/phpunit (phpunit/phpunit)

v10.5.40: PHPUnit 10.5.40

Compare Source

Fixed
  • #​6082: assertArrayHasKey(), assertArrayNotHasKey(), arrayHasKey(), and ArrayHasKey::__construct() do not support all possible key types
  • #​6087: --migrate-configuration does not remove beStrictAboutTodoAnnotatedTests attribute from XML configuration file

How to install or update PHPUnit

v10.5.39: PHPUnit 10.5.39

Compare Source

Added
  • #​6081: DefaultResultCache::mergeWith() for merging result cache instances
Fixed
  • #​6066: TeamCity logger does not handle error/skipped events in before-class methods correctly

How to install or update PHPUnit

ridedott/merge-me-action (ridedott/merge-me-action)

v2.10.113

Compare Source

Chores
  • deps-dev: bump cspell from 8.17.0 to 8.17.1 (42aa650)
  • deps-dev: bump lint-staged from 15.2.11 to 15.3.0 (d56b48d)
  • deps: bump ridedott/release-me-action from 3.10.56 to 3.10.57 (78a0fcd)

v2.10.112

Compare Source

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

v2.32.0

Compare Source

Changelog

  • Added support for PHP 8.4 as the default stable PHP version.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  • Added support for PHP 8.5 as the nightly version. (#​867)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: pre-installed
  • Added support for .tool-versions file format in php-version-file input. (#​883)
    If you have an asdf .tool-versions file in your project.
    For example, you can specify .tool-versions now in the php-version-file input and the action would setup the correct PHP version.
ruby 3.4
php 8.4
nodejs 23.5
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version-file: .tool-versions
  • Added support for to specify the path for composer file in the project to read the PHP version using COMPOSER_PROJECT_DIR env value. (#​894)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  env:
    COMPOSER_PROJECT_DIR: php  
  • Added support for macos-15 GitHub hosted environment.

  • Added support for windows-2025 GitHub hosted environment.

  • Added support for composer-dependency-analyser tool (#​859, #​897)

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: composer-dependency-analyser
  • Added support for relay extension for PHP 8.4 and 8.5. (#​892)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: relay
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    debug: true  
  • Fixed support for zts buids on self-hosted runners.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    phpts: ts
  • Fixed support for oci extensions for PHP 8.4 and PHP 8.5.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: pdo_oci, oci8
  • Fixed support for zephir_parser extension.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: zephir_parser
  • Fixed support for couchbase extension on old PHP versions.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '7.1'
    extensions: couchbase
  • Fixed support for pdo_firebird extension on macos-15.
### runs-on: macos-15
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: pdo_firebird
  • Improved support to install tools in a multi-user self-hosted environment.
  • Dropped support for macos-12 GitHub hosted environments.
  • Dropped support for Debian 10 based self-hosted environments.
  • Update Node.js dependencies.

Thanks @​janedbal, @​alexmerlin and @​tillkruss for the contributions 🎉

Thanks @​desrosj, @​bloodynumen and @​eliashaeussler for the sponsorship ❤️

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

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependency label Nov 23, 2024
@renovate renovate bot requested a review from lctrs-bot as a code owner November 23, 2024 05:25
Copy link
Contributor Author

renovate bot commented Nov 23, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: composer.lock
Command failed: composer update ergebnis/composer-normalize:2.45.0 php:8.4.2 phpstan/phpstan:1.12.15 phpstan/phpstan-phpunit:1.4.2 phpunit/phpunit:10.5.40 --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins
Loading composer repositories with package information
Pattern "php" listed for update matches platform packages, but these cannot be updated by Composer.
Dependency nikic/php-parser is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Updating dependencies

In RuleSetGenerator.php line 260:
                                                         
  [LogicException]                                       
  Fixed package php 8.1.0 was not added to solver pool.  
                                                         

Exception trace:
  at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/DependencyResolver/RuleSetGenerator.php:260
 Composer\DependencyResolver\RuleSetGenerator->addRulesForRequest() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/DependencyResolver/RuleSetGenerator.php:312
 Composer\DependencyResolver\RuleSetGenerator->getRulesFor() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/DependencyResolver/Solver.php:183
 Composer\DependencyResolver\Solver->solve() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/Installer.php:508
 Composer\Installer->doUpdate() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/Installer.php:298
 Composer\Installer->run() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/Command/UpdateCommand.php:281
 Composer\Command\UpdateCommand->execute() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/vendor/symfony/console/Command/Command.php:298
 Symfony\Component\Console\Command\Command->run() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/vendor/symfony/console/Application.php:1040
 Symfony\Component\Console\Application->doRunCommand() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/vendor/symfony/console/Application.php:301
 Symfony\Component\Console\Application->doRun() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/Console/Application.php:396
 Composer\Console\Application->doRun() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/vendor/symfony/console/Application.php:171
 Symfony\Component\Console\Application->run() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/src/Composer/Console/Application.php:136
 Composer\Console\Application->run() at phar:///opt/containerbase/tools/composer/2.8.4/bin/composer/bin/composer:98
 require() at /opt/containerbase/tools/composer/2.8.4/bin/composer:29

update [--with WITH] [--prefer-source] [--prefer-dist] [--prefer-install PREFER-INSTALL] [--dry-run] [--dev] [--no-dev] [--lock] [--no-install] [--no-audit] [--audit-format AUDIT-FORMAT] [--no-autoloader] [--no-suggest] [--no-progress] [-w|--with-dependencies] [-W|--with-all-dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--apcu-autoloader-prefix APCU-AUTOLOADER-PREFIX] [--ignore-platform-req IGNORE-PLATFORM-REQ] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [-m|--minimal-changes] [--patch-only] [-i|--interactive] [--root-reqs] [--bump-after-update [BUMP-AFTER-UPDATE]] [--] [<packages>...]


@renovate renovate bot requested a review from Lctrs as a code owner November 23, 2024 05:25
@renovate renovate bot changed the title chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 - autoclosed Nov 23, 2024
@renovate renovate bot closed this Nov 23, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch November 23, 2024 07:58
@renovate renovate bot changed the title chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 - autoclosed chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 Nov 24, 2024
@renovate renovate bot reopened this Nov 24, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ef109c to 5920161 Compare November 24, 2024 03:21
@renovate renovate bot changed the title chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 - autoclosed Nov 24, 2024
@renovate renovate bot closed this Nov 24, 2024
@renovate renovate bot changed the title chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 - autoclosed chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 Nov 25, 2024
@renovate renovate bot reopened this Nov 25, 2024
@renovate renovate bot changed the title chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 - autoclosed Nov 25, 2024
@renovate renovate bot closed this Nov 25, 2024
@renovate renovate bot changed the title chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 - autoclosed chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 Nov 26, 2024
@renovate renovate bot reopened this Nov 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a7ab4dd to ce2bbe5 Compare November 28, 2024 22:45
@renovate renovate bot changed the title chore(deps): update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 chore(deps): update all non-major dependencies Nov 28, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 976ccda to c8c89e0 Compare December 5, 2024 02:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 313fbd9 to 7eb0b20 Compare December 10, 2024 00:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 1600097 to 7d472e7 Compare December 12, 2024 00:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a26762f to 18bac0b Compare December 21, 2024 06:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b787de6 to 2407fc7 Compare January 3, 2025 16:02
| datasource  | package                     | from      | to        |
| ----------- | --------------------------- | --------- | --------- |
| packagist   | ergebnis/composer-normalize | 2.44.0    | 2.45.0    |
| github-tags | containerbase/php-prebuild  | 8.3.15    | 8.4.2     |
| packagist   | phpstan/phpstan             | 1.12.11   | 1.12.15   |
| packagist   | phpstan/phpstan-phpunit     | 1.4.1     | 1.4.2     |
| packagist   | phpunit/phpunit             | 10.5.38   | 10.5.40   |
| github-tags | ridedott/merge-me-action    | v2.10.111 | v2.10.113 |
| github-tags | shivammathur/setup-php      | 2.31.1    | 2.32.0    |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2407fc7 to 5da450c Compare January 5, 2025 18:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants