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
laminas/laminas-continuous-integration-action 1.40.1 -> 1.41.0 age adoption passing confidence action minor
ocramius/package-versions ^2.9.0 -> ^2.10.0 age adoption passing confidence require patch
php ~8.3.1 -> ~8.4.4 age adoption passing confidence require minor
phpunit/phpunit (source) ^11.5.6 -> ^11.5.9 age adoption passing confidence require-dev patch
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
vimeo/psalm ^6.3.0 -> ^6.8.6 age adoption passing confidence require-dev minor

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
laminas/laminas-continuous-integration-action (laminas/laminas-continuous-integration-action)

v1.41.0

Compare Source

Release Notes for 1.41.0
1.41.0
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement
containerbase/php-prebuild (php)

v8.4.4

Compare Source

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

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

Compare Source

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

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
sebastianbergmann/phpunit (phpunit/phpunit)

v11.5.9: PHPUnit 11.5.9

Compare Source

Fixed
  • #​6134: Missing event when child process ends unexpectedly

How to install or update PHPUnit

v11.5.8: PHPUnit 11.5.8

Compare Source

Fixed
  • A Test\PreparationFailed event is now emitted in addition to a Test\Errored event when an unexpected exception is triggered in a before-test method
  • A Test\Passed event is no longer emitted in addition to a Test\Failed or Test\Errored event when an assertion failure or an unexpected exception is triggered in an after-test method
  • A TestSuite\Finished event is now emitted when a before-first-test method errors

How to install or update PHPUnit

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

vimeo/psalm (vimeo/psalm)

v6.8.6

Compare Source

What's Changed

Fixes

Full Changelog: vimeo/psalm@6.8.5...6.8.6

v6.8.5

Compare Source

What's Changed

Fixes

Full Changelog: vimeo/psalm@6.8.4...6.8.5

v6.8.4

Compare Source

This release introduces fully reproducible builds (the composer.lock file is now added to phars).

Full Changelog: vimeo/psalm@6.8.3...6.8.4

v6.8.3

Compare Source

What's Changed

Fixes
Internal changes

Full Changelog: vimeo/psalm@6.8.2...6.8.3

v6.8.2

Compare Source

What's Changed

Fixes

Full Changelog: vimeo/psalm@6.8.1...6.8.2

v6.8.1

Compare Source

What's Changed
Internal changes

Full Changelog: vimeo/psalm@6.8.0...6.8.1

v6.8.0

Compare Source

What's Changed
Features
Fixes
New Contributors

Full Changelog: vimeo/psalm@6.7.1...6.8.0

v6.7.1

Compare Source

What's Changed
Internal changes

Full Changelog: vimeo/psalm@6.7.0...6.7.1

v6.7.0

Compare Source

What's Changed
Features
Fixes
Internal changes
New Contributors

Full Changelog: vimeo/psalm@6.6.2...6.7.0

v6.6.2

Compare Source

What's Changed
Fixes

Full Changelog: vimeo/psalm@6.6.1...6.6.2


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
@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 5 times, most recently from 680727f to d4a4cca Compare January 30, 2025 05:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 703a003 to cc1f963 Compare February 10, 2025 13:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b78bef7 to 42a032e Compare February 14, 2025 06:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from cb3054f to f3248b4 Compare February 20, 2025 10:39
| 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 | laminas/laminas-continuous-integration-action | 1.40.1 | 1.41.0 |
| packagist   | ocramius/package-versions                     | 2.10.0 | 2.10.0 |
| github-tags | containerbase/php-prebuild                    | 8.3.1  | 8.4.4  |
| packagist   | phpunit/phpunit                               | 11.5.7 | 11.5.9 |
| 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  |
| packagist   | vimeo/psalm                                   | 6.6.1  | 6.8.6  |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f3248b4 to 91d3f68 Compare February 21, 2025 11:29
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