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

Open
wants to merge 1 commit into
base: 1.16.x
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
composer/composer (source) ^2.7.2 -> ^2.8.5 age adoption passing confidence require-dev minor
infection/infection ^0.27.11 -> ^0.29.10 age adoption passing confidence require-dev minor
laminas/automatic-releases 1.24.0 -> 1.25.0 age adoption passing confidence action minor
ocramius/package-versions ^2.8.0 -> ^2.9.0 age adoption passing confidence require 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
phpunit/phpunit (source) ^10.5.15 -> ^10.5.44 age adoption passing confidence require-dev patch
psalm/plugin-phpunit ^0.19.0 -> ^0.19.2 age adoption passing confidence require patch
shivammathur/setup-php 2.30.0 -> 2.32.0 age adoption passing confidence action minor
vimeo/psalm ^5.23.1 -> ^5.26.1 age adoption passing confidence require minor

Warning

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


Release Notes

composer/composer (composer/composer)

v2.8.5

Compare Source

  • Added build provenance attestation so you can also now download and verify phar files from GitHub releases:

      gh release --repo composer/composer download --pattern composer.phar
      gh attestation verify --repo composer/composer composer.phar
    
    • Fixed unsupported funding values causing parse errors in packages (#​12247)
    • Fixed support for a few newer funding formats (#​12257)
    • Fixed InstalledVersions regression from 2.8.4 when reload() is used (#​12269)
    • Fixed psr-0/psr-4 rules having unstable order in vendor/composer/autoload*.php (#​12263)
    • Fixed a few warnings happening incorrectly in edge cases (#​12284, #​12268, #​12283)

v2.8.4

Compare Source

  • Fixed exit code of the audit command not being meaningful (now 1 for vulnerabilities and 2 for abandoned, 3 for both) (#​12203)
    • Fixed issue on plugin upgrade when it defines multiple classes (#​12226)
    • Fixed duplicate errors appearing in the output depending on php settings (#​12214)
    • Fixed InstalledVersions returning duplicate data in some instances (#​12225)
    • Fixed installed.php sorting to be deterministic (#​12197)
    • Fixed bump-after-update failing when using inline constraints (#​12223)
    • Fixed create-project command to now disable symlinking when used with a path repo as argument (#​12222)
    • Fixed validate --no-check-publish to hide publish errors entirely as they are irrelevant (#​12196)
    • Fixed audit command returning a failing code when composer audit fails as this should not trigger build failures, but running audit as standard part of your build is probably a terrible idea anyway (#​12196)
    • Fixed curl usage to disable multiplexing on broken versions when proxies are in use (#​12207)

v2.8.3

Compare Source

  • Fixed windows handling of process discovery (#​12180)
    • Fixed react/promise requirement to allow 2.x installs again (#​12188)
    • Fixed some issues when lock:false is set in require and bump commands

v2.8.2

Compare Source

  • Fixed crash while suggesting providers if they have no description (#​12152)
    • Fixed issues creating lock files violating the schema in some circumstances (#​12149)
    • Fixed create-project regression in 2.8.1 when using path repos with relative paths (#​12150)
    • Fixed ctrl-C aborts not working inside text prompts (#​12106)
    • Fixed git failing silently when git cannot read a repo due to ownership violations (#​12178)
    • Fixed handling of signals in non-PHP binaries run via proxies (#​12176)

v2.8.1

Compare Source

  • Fixed init command regression when no license is provided (#​12145)
    • Fixed --strict-ambiguous flag handling whereas it sometimes did not report all issues (#​12148)
    • Fixed create-project to inherit the target folder's permissions for installed project files (#​12146)
    • Fixed a few cases where the prompt for using a parent dir's composer.json fails to work correctly (#​8023)

v2.8.0

Compare Source

  • BC Warning: Fixed https_proxy env var falling back to http_proxy's value. The fallback and warning have now been removed per the 2.7.3 release notes (#​11938, #​11915)
    • Added --patch-only flag to the update command to restrict updates to patch versions and make an update of all deps safer (#​12122)
    • Added --abandoned flag to the audit command to configure how abandoned packages should be treated, overriding the audit.abandoned config setting (#​12091)
    • Added --ignore-severity flag to the audit command to ignore one or more advisory severities (#​12132)
    • Added --bump-after-update flag to the update command to run bump after the update is done (#​11942)
    • Added a way to control which scripts receive additional CLI arguments and where they appear in the command, see the docs (#​12086)
    • Added allow-missing-requirements config setting to skip the error when the lock file is not fulfilling the composer.json's dependencies (#​11966)
    • Added a JSON schema for the composer.lock file (#​12123)
    • Added better support for Bitbucket app passwords when cloning repos / installing from source (#​12103)
    • Added --type flag to filter packages by type(s) in the reinstall command (#​12114)
    • Added --strict-ambiguous flag to the dump-autoload command to make it return with an error code if duplicate classes are found (#​12119)
    • Added warning in dump-autoload when vendor files have been deleted (#​12139)
    • Added warnings for each missing platform package when running create-project to avoid having to run it again and again (#​12120)
    • Added sorting of packages in allow-plugins when sort-packages is enabled (#​11348)
    • Added suggestion of provider packages / polyfills when an ext or lib package is missing (#​12113)
    • Improved interactive package update selection by first outputting all packages and their possible updates (#​11990)
    • Improved dependency resolution failure output by sorting the output in a deterministic and (often) more logical way (#​12111)
    • Fixed PHP 8.4 deprecation warnings about E_STRICT (#​12116)
    • Fixed init command to validate the given license identifier (#​12115)
    • Fixed version guessing to be more deterministic on feature branches if it appears that it could come from either of two mainline branches (#​12129)
    • Fixed COMPOSER_ROOT_VERSION env var handling to treat 1.2 the same as 1.2.x-dev and not 1.2.0 (#​12109)
    • Fixed require command skipping new stability flags from the lock file, causing invalid lock file diffs (#​12112)
    • Fixed php://stdin potentially being open several times when running Composer programmatically (#​12107)
    • Fixed handling of platform packages in why-not command and partial updates (#​12110)
    • Reverted "Fixed transport-options.ssl for local cert authorization being stored in lock file making them less portable (#​12019)" from 2.7.8 as it was broken

v2.7.9

Compare Source

  • Fixed Docker detection breaking on constrained environments (#​12095)
    • Fixed upstream issue in bash completion script, it is recommended to update it using the completion command (#​12015)

v2.7.8

Compare Source

  • Added release-age, release-date and latest-release-date in the JSON output of outdated (#​12053)
    • Fixed PHP 8.4 deprecation warnings
    • Fixed addressability of branches containing # signs (#​12042)
    • Fixed bump command not handling some ~ constraints correctly (#​12038)
    • Fixed COMPOSER_AUTH not taking precedence over ./auth.json (#​12084)
    • Fixed relative: true sometimes not being respected in path repo symlinks (#​12092)
    • Fixed copy from cache sometimes failing on VirtualBox shared folders (#​12057)
    • Fixed PSR-4 autoloading order regression in some edge case (#​12063)
    • Fixed duplicate lib-* packages causing issues when having pecl + core versions of the same PHP extension (#​12093)
    • Fixed transport-options.ssl for local cert authorization being stored in lock file making them less portable (#​12019)
    • Fixed memory issues when installing large binaries (#​12032)
    • Fixed archive command crashing when a path cannot be realpath'd on windows (#​11544)
    • API: Deprecated BasePackage::$stabilities in favor of BasePackage::STABILITIES (685add7)
    • Improved Docker detection (#​12062)
infection/infection (infection/infection)

v0.29.10: Require PHP 8.2. Switch to `shish/safeto fix issue withthecodingmachine/safe`

Compare Source

Fixed:

Changed:

Full Changelog: infection/infection@0.29.9...0.29.10

v0.29.9: New PHP 8.4 mutators, remove PHP 8.4 deprecations

Compare Source

Added:

Changed:

Full Changelog: infection/infection@0.29.8...0.29.9

v0.29.8: PHPUnit 11 compatibility, performance improvement thanks to stopOnDefect

Compare Source

Added:

Changed:

New Contributors

Full Changelog: infection/infection@0.29.7...0.29.8

v0.29.7: Diff colorizer fix for multiline cases, PHP 8.4 support in pipelines

Compare Source

What's Changed

Fixed:

Added:

Changed:

Full Changelog: infection/infection@0.29.6...0.29.7

v0.29.6: Ignore switch(bool) statements in TrueValue and FalseValue mutators

Compare Source

Changed:

New Contributors

Full Changelog: infection/infection@0.29.5...0.29.6

v0.29.5

Compare Source

Full Changelog

Added:

v0.29.4

Compare Source

Full Changelog

Added:

v0.29.3: Add support for `colinodell/json5` v3

Compare Source

Changed:

Full Changelog: infection/infection@0.29.2...0.29.3

v0.29.2: Highlight inline differences in CLI

Compare Source

Added:

Full Changelog: infection/infection@0.29.1...0.29.2

v0.29.1: Fix usage of custom mutator with bootstrap file

Compare Source

Fixed:

Full Changelog: infection/infection@0.29.0...0.29.1

v0.29.0

Compare Source

Full Changelog

Added:

Read about how to create custom mutators: https://infection.github.io/guide/custom-mutators.html

Changed:

v0.28.1: Use CI (GitHub, GitLab) variable to detect project path

Compare Source

Changed:

New Contributors

Full Changelog: infection/infection@0.28.0...0.28.1

v0.28.0

Compare Source

Full Changelog

Added:

laminas/automatic-releases (laminas/automatic-releases)

v1.25.0

Compare Source

Release Notes for 1.25.0

Feature release (minor)

1.25.0
  • Total issues resolved: 0
  • Total pull requests resolved: 11
  • Total contributors: 2
Enhancement,dependencies,renovate
renovate
Enhancement,dependencies
Ocramius/PackageVersions (ocramius/package-versions)

v2.9.0

Compare Source


Release Notes for 2.9.0

Feature release (minor)

2.9.0
  • Total issues resolved: 0
  • Total pull requests resolved: 2
  • Total contributors: 2
dependencies,enhancement
security
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
sebastianbergmann/phpunit (phpunit/phpunit)

v10.5.44: PHPUnit 10.5.44

Compare Source

Fixed
  • #​6115: Backed enumerations with values not of type string cannot be used in customized TestDox output

How to install or update PHPUnit

v10.5.43: PHPUnit 10.5.43

Compare Source

Changed
  • Do not skip execution of test that depends on a test that is larger than itself

How to install or update PHPUnit

v10.5.42: PHPUnit 10.5.42

Compare Source

Fixed
  • #​6103: Output from test run in separate process is printed twice
  • #​6109: Skipping a test in a before-class method crashes JUnit XML logger
  • #​6111: Deprecations cause SourceMapper to scan all <source/> files

How to install or update PHPUnit

v10.5.41: PHPUnit 10.5.41

Compare Source

Added
  • Test\AfterLastTestMethodErrored, Test\AfterTestMethodErrored, Test\BeforeTestMethodErrored, Test\PostConditionErrored, and Test\PreConditionErrored events
Fixed
  • #​6094: Errors in after-last-test methods are not reported
  • #​6095: Expectation is not counted correctly when a doubled method is called more often than is expected
  • #​6098: No system-out element in JUnit XML logfile

How to install or update 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

v10.5.38: PHPUnit 10.5.38

Compare Source

Changed
  • #​6012: Remove empty lines between TeamCity events

How to install or update PHPUnit

v10.5.37: PHPUnit 10.5.37

Compare Source

Fixed

How to install or update PHPUnit

v10.5.36: PHPUnit 10.5.36

Compare Source

Changed
  • #​5957: Skip data provider build when requirements are not satisfied
  • #​5969: Check for requirements before creating a separate process
  • Updated regular expressions used by StringMatchesFormatDescription constraint to be consistent with PHP's run-tests.php
Fixed
  • #​5965: PHPUnit\Framework\Exception does not handle string error codes (PDOException with error code 'HY000', for example)

How to install or update PHPUnit

v10.5.35

Compare Source

v10.5.34: PHPUnit 10.5.34

Compare Source

Fixed
  • #​5931: Reverted addition of name property on <testsuites> element in JUnit XML logfile
  • #​5946: Callback throws a TypeError when checking a callable has variadic parameters

How to install or update PHPUnit

v10.5.33: PHPUnit 10.5.33

Compare Source

Fixed
  • #​4584: assertJsonStringEqualsJsonString() considers objects with sequential numeric keys equal to be arrays
  • #​4625: Generator yielding keys that are neither integer or string leads to hard-to-understand error message when used as data provider
  • #​4674: JSON assertions should treat objects as unordered
  • #​5891: Callback constraint does not handle variadic arguments correctly when used for mock object expectations
  • #​5929: TestDox output containing $ at the beginning gets truncated when used with a data provider

How to install or update PHPUnit

v10.5.32: PHPUnit 10.5.32

Compare Source

Added
  • #​5937: failOnPhpunitDeprecation attribute on the <phpunit> element of the XML configuration file and --fail-on-phpunit-deprecation CLI option for controlling whether PHPUnit deprecations should be considered when determining the test runner's shell exit code (default: do not consider)
  • displayDetailsOnPhpunitDeprecations attribute on the <phpunit> element of the XML configuration file and --display-phpunit-deprecations CLI option for controlling whether details on PHPUnit deprecations should be displayed (default: do not display)
Changed
  • #​5937: PHPUnit deprecations will, by default, no longer affect the test runner's shell exit code. This can optionally be turned back on using the --fail-on-phpunit-deprecation CLI option or the failOnPhpunitDeprecation="true" attribute on the <phpunit> element of the XML configuration file.
  • Details for PHPUnit deprecations will, by default, no longer be displayed. This can optionally be turned back on using the --display-phpunit-deprecations CLI option or the displayDetailsOnPhpunitDeprecations attribute on the <phpunit> element of the XML configuration file.

How to install or update PHPUnit

v10.5.31: PHPUnit 10.5.31

Compare Source

Changed
  • #​5931: name property on <testsuites> element in JUnit XML logfile
  • Removed .phpstorm.meta.php file as methods such as TestCase::createStub() use generics / template types for their return types and PhpStorm, for example, uses that information
Fixed
  • #​5884: TestDox printer does not consider that issues can be suppressed by attribute, baseline, source location, or @ operator

How to install or update PHPUnit

v10.5.30: PHPUnit 10.5.30

Compare Source

Changed
  • Improved error message when stubbed method is called more often than return values were configured for it

How to install or update PHPUnit

v10.5.29: PHPUnit 10.5.29

Compare Source

Fixed
  • #​5887: Issue baseline generator does not correctly handle ignoring suppressed issues
  • #​5908: --list-tests and --list-tests-xml CLI options do not report error when data provider method throws exception

How to install or update PHPUnit

v10.5.28

Compare Source

v10.5.27: PHPUnit 10.5.27

Compare Source

Changed
  • Updated dependencies (so that users that install using Composer's --prefer-lowest CLI option also get recent versions)
Fixed
  • #​5892: Errors during write of phpunit.xml are not handled correctly when --generate-configuration is used

How to install or update PHPUnit

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

v0.19.1

Compare Source

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

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 Mar 24, 2024
Copy link
Contributor Author

renovate bot commented Mar 24, 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 composer/composer:2.7.6 infection/infection:0.28.1 phpunit/phpunit:10.5.20 symfony/process:7.0.7 vimeo/psalm:5.24.0 --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
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Root composer.json requires vimeo/psalm ^5.24.0 -> satisfiable by vimeo/psalm[5.24.0].
    - vimeo/psalm 5.24.0 requires nikic/php-parser ^4.16 -> satisfiable by nikic/php-parser[v4.16.0, ..., v4.19.1].
    - You can only install one version of a package, so only one of these can be installed: nikic/php-parser[v4.10.0, ..., v4.19.1, v5.0.0, v5.0.1, v5.0.2].
    - infection/infection 0.28.1 requires nikic/php-parser ^5.0 -> satisfiable by nikic/php-parser[v5.0.0, v5.0.1, v5.0.2].
    - vimeo/psalm 5.24.0 conflicts with nikic/php-parser v4.17.0.
    - Root composer.json requires infection/infection ^0.28.1 -> satisfiable by infection/infection[0.28.1].

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 2 times, most recently from 2c7f1ae to b7e37c4 Compare March 25, 2024 13:50
@renovate renovate bot changed the title Update dependency infection/infection to ^0.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 e7a739a to a10623d Compare April 1, 2024 03:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7d97dcc to 76d0acb Compare April 6, 2024 05:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1f7910d to 12e9d75 Compare April 18, 2024 03:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 9f648af to 358cf79 Compare April 26, 2024 04:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d20e07e to 77fc249 Compare April 30, 2024 04:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 01eb751 to 242173a Compare September 13, 2024 07:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3a6e806 to 5c79699 Compare September 21, 2024 07:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 8043bd7 to 4660342 Compare October 8, 2024 15:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4660342 to 31376f0 Compare October 19, 2024 15:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d88834a to af48dfe Compare October 30, 2024 02:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af48dfe to d3ab7c1 Compare November 6, 2024 11:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 84c68e4 to df2edc1 Compare November 23, 2024 03:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2d63197 to ae8bbdb Compare December 11, 2024 15:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6821de7 to c3fe659 Compare December 21, 2024 07:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c3fe659 to dcf5177 Compare December 30, 2024 16:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dcf5177 to 0f1b11a Compare January 14, 2025 16:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6e161d2 to 13ba490 Compare January 26, 2025 13:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a458243 to 1b55bf5 Compare January 29, 2025 18:18
| datasource  | package                    | from    | to      |
| ----------- | -------------------------- | ------- | ------- |
| packagist   | composer/composer          | 2.7.7   | 2.8.5   |
| packagist   | infection/infection        | 0.27.11 | 0.29.10 |
| github-tags | laminas/automatic-releases | 1.24.0  | 1.25.0  |
| packagist   | ocramius/package-versions  | 2.8.0   | 2.9.0   |
| github-tags | containerbase/php-prebuild | 8.3.16  | 8.4.3   |
| packagist   | phpunit/phpunit            | 10.5.26 | 10.5.44 |
| packagist   | psalm/plugin-phpunit       | 0.19.0  | 0.19.2  |
| github-tags | shivammathur/setup-php     | 2.30.0  | 2.32.0  |
| packagist   | vimeo/psalm                | 5.25.0  | 5.26.1  |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1b55bf5 to 53e2c15 Compare January 31, 2025 09:30
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