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

Merged
merged 1 commit into from
Jan 27, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 23, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
laminas/laminas-ci-matrix-action action minor 1.24.0 -> 1.29.0 age adoption passing confidence
laminas/laminas-continuous-integration-action action minor 1.39.0 -> 1.40.1 age adoption passing confidence
phpunit/phpunit (source) require-dev patch ^10.5.15 -> ^10.5.41 age adoption passing confidence
shivammathur/setup-php action minor 2.30.0 -> 2.32.0 age adoption passing confidence

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

v1.28.0

Compare Source

Release Notes for 1.28.0
1.28.0
  • Total issues resolved: 0
  • Total pull requests resolved: 5
  • Total contributors: 4

QA

Enhancement
Bug
renovate

v1.27.2

Compare Source

Release Notes for 1.27.2

1.27.x bugfix release (patch)

1.27.2
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Bug

v1.27.1

Compare Source

Release Notes for 1.27.1
1.27.1
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Bug

v1.27.0

Compare Source

Release Notes for 1.27.0
1.27.0
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement

v1.26.0

Compare Source

Release Notes for 1.26.0
1.26.0
  • Total issues resolved: 1
  • Total pull requests resolved: 1
  • Total contributors: 1
Enhancement

v1.25.0

Compare Source

Release Notes for 1.25.0
1.25.0
  • Total issues resolved: 0
  • Total pull requests resolved: 12
  • Total contributors: 2
Enhancement
renovate
laminas/laminas-continuous-integration-action (laminas/laminas-continuous-integration-action)

v1.40.1

Compare Source

Release Notes for 1.40.1
1.40.1
  • Total issues resolved: 1
  • Total pull requests resolved: 0
  • Total contributors: 1
Enhancement

v1.40.0

Compare Source

Release Notes for 1.40.0
1.40.0
  • Total issues resolved: 0
  • Total pull requests resolved: 3
  • Total contributors: 2
Enhancement
renovate
Bug
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'
  • Added support for pre-installed in php-version input. (#​872)
    It will setup the pre-installed PHP version on the runner as per the docs here
    https://github.com/shivammathur/setup-php?tab=readme-ov-file#github-hosted-runners. If the runner does not have a pre-installed PHP version, it will fail.
    Please note: It is not recommended to use this unless you are doing something trivial, the pre-installed PHP versions on GitHub hosted runners are old patch versions.
- 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

v2.31.1

Compare Source

Changelog
  • Fix installing PECL extensions on Windows with a build version #​855

  • Fix cache support for ioncube extension #​856

  • 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.31.0

Compare Source

Changelog
  • Added support for a fallback mirror for ondrej/php PPA when launchpad is down (#​834).

  • Fixed installing packages on self-hosted environments with existing conf files (#​852).

  • Fixed support for oci8 and pdo_oci extensions on ubuntu-24.04.

  • Fixed support for couchbase extension on ubuntu-24.04.

  • Fixed support for ubuntu-24.04 after apt-fast was dropped from the GA images.

  • Fixed support for firebird extension on macos-14

  • Fixed support for blackfire extension on macos-14.

  • Fixed support for relay extension.

  • Fixed support for phalcon extension for PHP 7.4 on Ubuntu.

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


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.

Copy link
Contributor Author

renovate bot commented Mar 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 infection/infection:0.28.1 phpunit/phpunit:10.5.20 --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
Dependency sanmai/later 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 infection/infection 0.28.1 -> satisfiable by infection/infection[0.28.1].
    - infection/infection 0.28.1 requires nikic/php-parser ^5.0 -> found nikic/php-parser[v5.0.0, v5.0.1, v5.0.2] but these were not loaded, likely because it conflicts with another require.

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

@renovate renovate bot added the renovate label Mar 23, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9d9ff23 to ab9fab6 Compare March 25, 2024 11:14
@renovate renovate bot changed the title Update dependency infection/infection to v0.28.0 Update all non-major dependencies Mar 25, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from f395cb5 to 5916e4d Compare April 1, 2024 03:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1fa9d6f to c23d14e Compare April 6, 2024 05:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 4ded5b4 to 098e55c Compare April 18, 2024 05:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 4f6cca6 to 757474d Compare April 26, 2024 00:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c112c28 to fd67461 Compare May 5, 2024 18:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d71631f to d89b88d Compare June 1, 2024 10:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 30a9d92 to b66a360 Compare August 13, 2024 07:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4e56823 to ba0d17b Compare September 9, 2024 07:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6b92442 to ece1e22 Compare September 13, 2024 07:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ece1e22 to 5fc0bd0 Compare September 19, 2024 13:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ad9650d to 8751344 Compare October 9, 2024 00:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8751344 to b813fca Compare October 19, 2024 13:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ec15381 to 80f3b9d Compare October 30, 2024 01:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 80f3b9d to e711228 Compare November 21, 2024 19:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6417e2c to f674319 Compare December 11, 2024 11:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 42a5d56 to b837435 Compare December 21, 2024 08:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b837435 to e8770eb Compare December 30, 2024 17:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from aaffee9 to be9b29d Compare January 17, 2025 13:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from be9b29d to 462685f Compare January 27, 2025 02:10
| datasource  | package                                       | from    | to      |
| ----------- | --------------------------------------------- | ------- | ------- |
| github-tags | laminas/laminas-ci-matrix-action              | 1.24.0  | 1.29.0  |
| github-tags | laminas/laminas-continuous-integration-action | 1.39.0  | 1.40.1  |
| packagist   | phpunit/phpunit                               | 10.5.41 | 10.5.41 |
| github-tags | shivammathur/setup-php                        | 2.30.0  | 2.32.0  |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 462685f to f37d351 Compare January 27, 2025 02:13
@Ocramius Ocramius self-assigned this Jan 27, 2025
@Ocramius Ocramius added this to the 1.36.0 milestone Jan 27, 2025
@Ocramius Ocramius merged commit 523683e into 1.36.x Jan 27, 2025
27 checks passed
@Ocramius Ocramius deleted the renovate/all-minor-patch branch January 27, 2025 02:15
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