Update root-composer (major)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| ondram/ci-detector | require | major | ^3.4.0 -> ^4.0.0 |
| react/async | require | major | ^3 -> ^4 |
| symfony/console (source) | require | major | ^5.4.3 -> ^6.0.0 |
| symfony/finder (source) | require | major | ^5.4.3 -> ^6.0.0 |
| symfony/process (source) | require | major | ^5.4.3 -> ^6.0.0 |
| symfony/service-contracts (source) | require | major | ^2.5.0 -> ^3.0.0 |
| symfony/string (source) | require | major | ^5.4.3 -> ^6.0.0 |
| vaimo/composer-patches | require-dev | major | ^4.22 -> ^5.0 |
Release Notes
OndraM/ci-detector
v4.1.0
- Add SourceHut detection support.
v4.0.0
Added
-
getTargetBranch()method to return the name of the branch where current branch is targeted (aka "base branch"). - Azure DevOps Pipelines detection support.
-
CiDetectorInterface(extended byCiDetector) to allow simpler extension.
Fixed
- Fix build URL detection on Travis (it always reported travis-ci.org URL, even if the build was on travis-ci.com).
Changed
-
[BC break] Rename methods to make them VCS-agnostic. Use
getCommit()instead ofgetGitCommit()andgetBranch()instead ofgetGitBranch(). -
[BC break] Declare
CiDetectorconstructor final.
Removed
-
[BC break] Remove
Travis::TRAVIS_BASE_URLconstant.
reactphp/async
v4.0.0
A major new feature release, see release announcement.
-
We'd like to emphasize that this component is production ready and battle-tested. We plan to support all long-term support (LTS) releases for at least 24 months, so you have a rock-solid foundation to build on top of.
-
The v4 release will be the way forward for this package. However, we will still actively support v3 and v2 to provide a smooth upgrade path for those not yet on PHP 8.1+. If you're using an older PHP version, you may use either version which all provide a compatible API but may not take advantage of newer language features. You may target multiple versions at the same time to support a wider range of PHP versions:
-
4.xbranch (PHP 8.1+) -
3.xbranch (PHP 7.1+) -
2.xbranch (PHP 5.3+)
-
This update involves some major new features and a minor BC break over the
v3.0.0 release. We've tried hard to avoid BC breaks where possible and
minimize impact otherwise. We expect that most consumers of this package will be
affected by BC breaks, but updating should take no longer than a few minutes.
See below for more details:
-
Feature / BC break: Require PHP 8.1+ and add
mixedtype declarations. (#14 by @clue) -
Feature: Add Fiber-based
async()andawait()functions. (#15, #18, #19 and #20 by @WyriHaximus and #26, #28, #30, #32, #34, #55 and #57 by @clue) -
Project maintenance, rename
mainbranch to4.xand update installation instructions. (#29 by @clue)
The following changes had to be ported to this release due to our branching
strategy, but also appeared in the v3.0.0 release:
symfony/console
v6.1.6
Changelog (https://github.com/symfony/console/compare/v6.1.5...v6.1.6)
- bug #47779 Fix
Helper::removeDecorationhyperlink bug (greew)
v6.1.5
Changelog (https://github.com/symfony/console/compare/v6.1.4...v6.1.5)
- bug #47463 Make fish completion run in non interactive mode (Seldaek)
- bug #47394 Make bash completion run in non interactive mode (Seldaek)
v6.1.4
Changelog (https://github.com/symfony/console/compare/v6.1.3...v6.1.4)
- bug #47372 Fix OutputFormatterStyleStack::getCurrent return type (alamirault)
- bug #47218 fix dispatch signal event check for compatibility with the contract interface (xabbuh)
- bug #45333 Fix ConsoleEvents::SIGNAL subscriber dispatch (GwendolenLynch)
v6.1.3
Changelog (https://github.com/symfony/console/compare/v6.1.2...v6.1.3)
- bug #47022 get full command path for command in search path (remicollet)
v6.1.2
Changelog (https://github.com/symfony/console/compare/v6.1.1...v6.1.2)
- bug #46747 Fix global state pollution between tests run with ApplicationTester (Seldaek)
v6.1.1
Changelog (https://github.com/symfony/console/compare/v6.1.0...v6.1.1)
- bug #46608 Fix deprecation when description is null (HypeMC)
- bug #46574 Escape % in command name & description from PHP (getDefault* methods) (ogizanagi)
v6.1.0
Changelog (https://github.com/symfony/console/compare/v6.1.0-RC1...v6.1.0)
- bug #46387 Complete negatable options (Fish) (GromNaN)
v6.0.14
Changelog (https://github.com/symfony/console/compare/v6.0.13...v6.0.14)
- bug #47779 Fix
Helper::removeDecorationhyperlink bug (greew)
v6.0.13
Changelog (https://github.com/symfony/console/compare/v6.0.12...v6.0.13)
- bug #47394 Make bash completion run in non interactive mode (Seldaek)
v6.0.12
Changelog (https://github.com/symfony/console/compare/v6.0.11...v6.0.12)
- bug #47372 Fix OutputFormatterStyleStack::getCurrent return type (alamirault)
- bug #47218 fix dispatch signal event check for compatibility with the contract interface (xabbuh)
- bug #45333 Fix ConsoleEvents::SIGNAL subscriber dispatch (GwendolenLynch)
v6.0.11
Changelog (https://github.com/symfony/console/compare/v6.0.10...v6.0.11)
- bug #47022 get full command path for command in search path (remicollet)
v6.0.10
Changelog (https://github.com/symfony/console/compare/v6.0.9...v6.0.10)
- bug #46747 Fix global state pollution between tests run with ApplicationTester (Seldaek)
- bug #46608 Fix deprecation when description is null (HypeMC)
- bug #46595 Escape % in command name & description from getDefaultName() (ogizanagi)
- bug #46574 Escape % in command name & description from PHP (getDefault* methods) (ogizanagi)
v6.0.9
Changelog (https://github.com/symfony/console/compare/v6.0.8...v6.0.9)
- bug #46386 Fix missing negative variation of negatable options in shell completion (GromNaN)
- bug #46114 Fixes "Incorrectly nested style tag found" error when using multi-line header content (Perturbatio)
- bug #46341 Fix aliases handling in command name completion (Seldaek)
- bug #46291 Suppress unhandled error in some specific use-cases. (rw4lll)
- bug #46264 Better required argument check in InputArgument (jnoordsij)
v6.0.8
Changelog (https://github.com/symfony/console/compare/v6.0.7...v6.0.8)
- bug #45565 Fix table header seperator wrapping (alamirault)
v6.0.7
Changelog (https://github.com/symfony/console/compare/v6.0.6...v6.0.7)
- bug #45851 Fix exit status on uncaught exception with negative code (acoulton)
- bug #44915 Fix compact table style to avoid outputting a leading space (Seldaek)
v6.0.5
Changelog (https://github.com/symfony/console/compare/v6.0.4...v6.0.5)
- bug #45546 Fix null handling in formatAndWrap() (derrabus)
- bug #45240 Revert StringInput bc break from #45088 (bobthecow)
v6.0.3
Changelog (https://github.com/symfony/console/compare/v6.0.2...v6.0.3)
- bug #43149 Silence warnings during tty detection (neclimdul)
- bug #45181 Fix PHP 8.1 deprecation in ChoiceQuestion (BrokenSourceCode)
- bug #45109 fix restoring stty mode on CTRL+C (nicolas-grekas)
- bug #45088 fix parsing escaped chars in StringInput (nicolas-grekas)
- bug #45053 use STDOUT/ERR in ConsoleOutput to save opening too many file descriptors (nicolas-grekas)
- bug #44912 Allow OutputFormatter::escape() to be used for escaping URLs used in
(Seldaek)
v6.0.2
Changelog (https://github.com/symfony/console/compare/v6.0.1...v6.0.2)
- bug #44730 Fix autocompletion of argument with default value (GromNaN)
v6.0.1
Changelog (https://github.com/symfony/console/compare/v6.0.0...v6.0.1)
- bug #44523 Fix polyfill-php73 requirement (Seldaek)
- bug #44494 Remove FQCN type hints on properties (fabpot)
- bug #44475 Handle alias in completion script (GromNaN)
- bug #44467 Fix parameter types for
ProcessHelper::mustRun()(derrabus)
v6.0.0
Changelog (https://github.com/symfony/console/compare/v6.0.0-RC1...v6.0.0)
- no significant changes
v5.4.14
Changelog (https://github.com/symfony/console/compare/v5.4.13...v5.4.14)
- bug #47779 Fix
Helper::removeDecorationhyperlink bug (greew)
symfony/Finder
v6.1.3
Changelog (https://github.com/symfony/finder/compare/v6.1.2...v6.1.3)
- no significant changes
v6.1.0
Changelog (https://github.com/symfony/finder/compare/v6.1.0-RC1...v6.1.0)
- no significant changes
v6.0.11
Changelog (https://github.com/symfony/finder/compare/v6.0.10...v6.0.11)
- no significant changes
v6.0.8
Changelog (https://github.com/symfony/finder/compare/v6.0.7...v6.0.8)
- bug #45980 Add support of no-capture regex modifier in MultiplePcreFilterIterator (available from PHP 8.2) (alexandre-daubois)
v6.0.3
Changelog (https://github.com/symfony/finder/compare/v6.0.2...v6.0.3)
- bug #45095 Fix finding VCS re-included files in excluded directory (julienfalque)
v6.0.2
Changelog (https://github.com/symfony/finder/compare/v6.0.1...v6.0.2)
- no significant changes
v6.0.0
Changelog (https://github.com/symfony/finder/compare/v6.0.0-RC1...v6.0.0)
- no significant changes
symfony/process
v6.1.3
Changelog (https://github.com/symfony/process/compare/v6.1.2...v6.1.3)
- no significant changes
v6.1.0
Changelog (https://github.com/symfony/process/compare/v6.1.0-RC1...v6.1.0)
- no significant changes
v6.0.11
Changelog (https://github.com/symfony/process/compare/v6.0.10...v6.0.11)
- no significant changes
v6.0.8
Changelog (https://github.com/symfony/process/compare/v6.0.7...v6.0.8)
- bug #45931 Fix Process::getEnv() when setEnv() hasn't been called before (asika32764)
v6.0.7
Changelog (https://github.com/symfony/process/compare/v6.0.6...v6.0.7)
- bug #45676 Don't return executable directories in PhpExecutableFinder (fancyweb)
v6.0.5
Changelog (https://github.com/symfony/process/compare/v6.0.4...v6.0.5)
- no significant changes
v6.0.3
Changelog (https://github.com/symfony/process/compare/v6.0.2...v6.0.3)
- bug #45103 Avoid calling fclose on an already closed resource (Seldaek)
v6.0.2
Changelog (https://github.com/symfony/process/compare/v6.0.1...v6.0.2)
- bug #44538 fixed uppercase ARGC and ARGV should also be skipped (rbaarsma)
v6.0.0
Changelog (https://github.com/symfony/process/compare/v6.0.0-RC1...v6.0.0)
- bug #44261 intersect with getenv() in case-insensitive manner to get default envs (stable-staple)
symfony/string
v6.1.6
Changelog (https://github.com/symfony/string/compare/v6.1.5...v6.1.6)
- no significant changes
v6.1.5
Changelog (https://github.com/symfony/string/compare/v6.1.4...v6.1.5)
- bug #47423 CamelCase/SnakeCase on uppercase word (mpiot)
v6.1.4
Changelog (https://github.com/symfony/string/compare/v6.1.3...v6.1.4)
- bug #47185 Fix snake conversion (simPod)
v6.1.3
Changelog (https://github.com/symfony/string/compare/v6.1.2...v6.1.3)
- bug #47010 Fix
widthmethod inAbstractUnicodeString(TBoileau)
v6.1.2
Changelog (https://github.com/symfony/string/compare/v6.1.1...v6.1.2)
- bug #46779 Add an invariable word in french (lemonlab)
v6.1.0
Changelog (https://github.com/symfony/string/compare/v6.1.0-RC1...v6.1.0)
- no significant changes
v6.0.14
Changelog (https://github.com/symfony/string/compare/v6.0.13...v6.0.14)
- no significant changes
v6.0.13
Changelog (https://github.com/symfony/string/compare/v6.0.12...v6.0.13)
- bug #47423 CamelCase/SnakeCase on uppercase word (mpiot)
v6.0.12
Changelog (https://github.com/symfony/string/compare/v6.0.11...v6.0.12)
- bug #47185 Fix snake conversion (simPod)
v6.0.11
Changelog (https://github.com/symfony/string/compare/v6.0.10...v6.0.11)
- bug #47010 Fix
widthmethod inAbstractUnicodeString(TBoileau)
v6.0.10
Changelog (https://github.com/symfony/string/compare/v6.0.9...v6.0.10)
- bug #46779 Add an invariable word in french (lemonlab)
v6.0.9
Changelog (https://github.com/symfony/string/compare/v6.0.8...v6.0.9)
- no significant changes
v6.0.8
Changelog (https://github.com/symfony/string/compare/v6.0.7...v6.0.8)
- bug #46106 Fix ansi escape sequences regex (fancyweb)
v6.0.3
Changelog (https://github.com/symfony/string/compare/v6.0.2...v6.0.3)
- no significant changes
v6.0.2
Changelog (https://github.com/symfony/string/compare/v6.0.1...v6.0.2)
- bug #44469 Fix requiring wcswitch table several times (fancyweb)
v6.0.1
Changelog (https://github.com/symfony/string/compare/v6.0.0...v6.0.1)
- bug #44494 Remove FQCN type hints on properties (fabpot)
v6.0.0
Changelog (https://github.com/symfony/string/compare/v6.0.0-RC1...v6.0.0)
- no significant changes
v5.4.14
Changelog (https://github.com/symfony/string/compare/v5.4.13...v5.4.14)
- no significant changes
vaimo/composer-patches
v5.1.0
- Use the proper way to retrieve the Composer version #92
- Fix PHP 8.1 deprecation notices
v5.0.0
- Fix PHP 8.1 deprecation notices: https://github.com/vaimo/composer-patches/pull/96
- Add conflict with cweagans/composer-patches: https://github.com/vaimo/composer-patches/pull/94
- Uninstall package during ReInstallOperation for Composer v2 https://github.com/vaimo/composer-patches/pull/99
Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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, click this checkbox.
This PR has been generated by Mend Renovate. View repository job log here.