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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
azjezz/psl ^3.1.0 -> ^3.2.0 age adoption passing confidence require patch
composer/composer (source) ^2.8.4 -> ^2.8.5 age adoption passing confidence require patch
laminas/laminas-ci-matrix-action 1.28.0 -> 1.29.0 age adoption passing confidence action minor
php ~8.3.1 -> ~8.4.3 age adoption passing confidence require minor
psalm/plugin-phpunit ^0.19.0 -> ^0.19.2 age adoption passing confidence require-dev patch
roave/infection-static-analysis-plugin ^1.35.0 -> ^1.36.0 age adoption passing confidence require-dev minor
shivammathur/setup-php 2.31.1 -> 2.32.0 age adoption passing confidence action minor
squizlabs/php_codesniffer ^3.11.2 -> ^3.11.3 age adoption passing confidence require-dev patch
symfony/yaml (source) ^7.2.0 -> ^7.2.3 age adoption passing confidence require patch

Release Notes

laminas/laminas-ci-matrix-action (laminas/laminas-ci-matrix-action)

v1.29.0

Compare Source

Release Notes for 1.29.0
1.29.0
  • Total issues resolved: 0
  • Total pull requests resolved: 3
  • Total contributors: 2
Enhancement
renovate
containerbase/php-prebuild (php)

v8.4.3

Compare Source

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

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

v8.3.16

Compare Source

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

v8.3.15

Compare Source

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

v8.3.14

Compare Source

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

v8.3.13

Compare Source

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

v8.3.12

Compare Source

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

v8.3.11

Compare Source

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

v8.3.10

Compare Source

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

v8.3.9

Compare Source

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

v8.3.8

Compare Source

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

v8.3.7

Compare Source

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

v8.3.6

Compare Source

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

v8.3.4

Compare Source

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

v8.3.3

Compare Source

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

v8.3.2

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.2
psalm/psalm-plugin-phpunit (psalm/plugin-phpunit)

v0.19.2: Psalm v6 support

Compare Source

Bumps composer requirements for psalm v6 support.

Full Changelog: psalm/psalm-plugin-phpunit@0.19.0...0.19.2

Roave/infection-static-analysis-plugin (roave/infection-static-analysis-plugin)

v1.36.0

Compare Source

Release Notes for 1.36.0

Feature release (minor)

1.36.0
  • Total issues resolved: 0
  • Total pull requests resolved: 3
  • Total contributors: 2
dependencies,enhancement
renovate
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

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

@renovate renovate bot added the renovate label Dec 17, 2024
Copy link
Contributor Author

renovate bot commented Dec 17, 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 azjezz/psl:3.2.0 composer/composer:2.8.5 php:8.4.3 psalm/plugin-phpunit:0.19.2 roave/infection-static-analysis-plugin:1.36.0 squizlabs/php_codesniffer:3.11.3 symfony/yaml:7.2.3 --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 composer/semver 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.
Dependency psr/log 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.
Dependency ocramius/package-versions 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.
Dependency vimeo/psalm 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
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Root composer.json requires psalm/plugin-phpunit ^0.19.2 -> satisfiable by psalm/plugin-phpunit[0.19.2].
    - psalm/plugin-phpunit 0.19.2 requires vimeo/psalm dev-master || ^6 -> found vimeo/psalm[6.0.0] but it conflicts with your root composer.json require (^5.26.1).
  Problem 2
    - Root composer.json requires roave/infection-static-analysis-plugin ^1.36.0 -> satisfiable by roave/infection-static-analysis-plugin[1.36.0].
    - roave/infection-static-analysis-plugin 1.36.0 requires vimeo/psalm ^6.0 -> found vimeo/psalm[6.0.0] but it conflicts with your root composer.json require (^5.26.1).
  Problem 3
    - vimeo/psalm is locked to version 5.26.1 and an update of this package was not requested.
    - vimeo/psalm 5.26.1 requires php ^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 -> your php version (8.4.3) does not satisfy that requirement.
  Problem 4
    - php-standard-library/psalm-plugin is locked to version 2.3.0 and an update of this package was not requested.
    - php-standard-library/psalm-plugin 2.3.0 requires vimeo/psalm >=5.16 -> satisfiable by vimeo/psalm[5.26.1].
    - vimeo/psalm 5.26.1 requires php ^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 -> your php version (8.4.3) does not satisfy that requirement.

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1edc5eb to ea2a981 Compare December 21, 2024 03:27
@renovate renovate bot changed the title Update dependency php to ~8.4.1 Update dependency php to ~8.4.2 Dec 21, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ea2a981 to 905f8f5 Compare December 21, 2024 03:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 741c284 to 3160e05 Compare December 30, 2024 19:56
@renovate renovate bot changed the title Update dependency php to ~8.4.2 Update all non-major dependencies Dec 30, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3160e05 to 08c6fb9 Compare January 1, 2025 03:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 08c6fb9 to 4266767 Compare January 9, 2025 06:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ceddecd to ce9f6d7 Compare January 24, 2025 05:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from bc3432c to 680727f Compare January 29, 2025 10:22
| datasource  | package                                | from   | to     |
| ----------- | -------------------------------------- | ------ | ------ |
| packagist   | azjezz/psl                             | 3.2.0  | 3.2.0  |
| packagist   | composer/composer                      | 2.8.5  | 2.8.5  |
| github-tags | laminas/laminas-ci-matrix-action       | 1.28.0 | 1.29.0 |
| github-tags | containerbase/php-prebuild             | 8.3.1  | 8.4.3  |
| packagist   | psalm/plugin-phpunit                   | 0.19.1 | 0.19.2 |
| packagist   | roave/infection-static-analysis-plugin | 1.35.0 | 1.36.0 |
| github-tags | shivammathur/setup-php                 | 2.31.1 | 2.32.0 |
| packagist   | squizlabs/php_codesniffer              | 3.11.3 | 3.11.3 |
| packagist   | symfony/yaml                           | 7.2.3  | 7.2.3  |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 680727f to d4a4cca Compare January 30, 2025 05:39
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