Skip to content

Update symfony/console from v5.4.13 to v5.4.36 - #3

Open
violinist-bot wants to merge 1 commit into
SignWo:mainfrom
violinist-dev:violinistsymfonyconsole
Open

Update symfony/console from v5.4.13 to v5.4.36#3
violinist-bot wants to merge 1 commit into
SignWo:mainfrom
violinist-dev:violinistsymfonyconsole

Conversation

@violinist-bot

@violinist-botviolinist-bot commented Mar 1, 2023

Copy link
Copy Markdown

If you have a high test coverage index, and your tests for this pull request are passing, it should be both safe and recommended to merge this update.

Updated packages

Some times an update also needs new or updated dependencies to be installed. Even if this branch is for updating one dependency, it might contain other installs or updates. All of the updates in this branch can be found here:

  • symfony/console: v5.4.36 (updated from v5.4.13)
  • symfony/polyfill-ctype: v1.29.0 (updated from v1.26.0)
  • symfony/polyfill-intl-grapheme: v1.29.0 (updated from v1.26.0)
  • symfony/polyfill-intl-normalizer: v1.29.0 (updated from v1.26.0)
  • symfony/polyfill-mbstring: v1.29.0 (updated from v1.26.0)
  • symfony/polyfill-php73: v1.29.0 (updated from v1.26.0)
  • symfony/polyfill-php80: v1.29.0 (updated from v1.26.0)
  • symfony/string: v5.4.36 (updated from v5.4.13)

Release notes

Here are the release notes for all versions released between your current running version, and the version this PR updates the package to.

List of release notes

Changed files

Here is a list of changed files between the version you use, and the version this pull request updates to:

List of changed files
 Application.php
CI/GithubActionReporter.php
Command/Command.php
Command/CompleteCommand.php
Command/DumpCompletionCommand.php
Command/LazyCommand.php
Command/LockableTrait.php
Descriptor/ApplicationDescription.php
Descriptor/XmlDescriptor.php
Event/ConsoleCommandEvent.php
Event/ConsoleErrorEvent.php
EventListener/ErrorListener.php
Exception/CommandNotFoundException.php
Exception/InvalidOptionException.php
Formatter/NullOutputFormatterStyle.php
Formatter/OutputFormatter.php
Formatter/OutputFormatterStyle.php
Formatter/OutputFormatterStyleInterface.php
Formatter/OutputFormatterStyleStack.php
Helper/Dumper.php
Helper/Helper.php
Helper/HelperInterface.php
Helper/HelperSet.php
Helper/ProcessHelper.php
Helper/ProgressBar.php
Helper/ProgressIndicator.php
Helper/QuestionHelper.php
Helper/Table.php
Helper/TableStyle.php
Input/ArgvInput.php
Input/ArrayInput.php
Input/Input.php
Input/InputArgument.php
Input/InputOption.php
LICENSE
Output/ConsoleOutput.php
Output/ConsoleSectionOutput.php
Output/Output.php
Output/StreamOutput.php
Output/TrimmedBufferOutput.php
Question/Question.php
Resources/completion.bash
SingleCommandApplication.php
Style/StyleInterface.php
Style/SymfonyStyle.php
Terminal.php
Tester/TesterTrait.php
Tests/ApplicationTest.php
Tests/CI/GithubActionReporterTest.php
Tests/Command/CommandTest.php
Tests/Command/CompleteCommandTest.php
Tests/Command/DumpCompletionCommandTest.php
Tests/Command/HelpCommandTest.php
Tests/Command/ListCommandTest.php
Tests/Completion/CompletionInputTest.php
Tests/DependencyInjection/AddConsoleCommandPassTest.php
Tests/Descriptor/AbstractDescriptorTestCase.php
Tests/Descriptor/ApplicationDescriptionTest.php
Tests/Descriptor/JsonDescriptorTest.php
Tests/Descriptor/MarkdownDescriptorTest.php
Tests/Descriptor/TextDescriptorTest.php
Tests/Descriptor/XmlDescriptorTest.php
Tests/Fixtures/application.dont_run_alternative_namespace_name.txt
Tests/Formatter/OutputFormatterTest.php
Tests/Helper/AbstractQuestionHelperTestCase.php
Tests/Helper/DumperNativeFallbackTest.php
Tests/Helper/DumperTest.php
Tests/Helper/HelperSetTest.php
Tests/Helper/HelperTest.php
Tests/Helper/ProcessHelperTest.php
Tests/Helper/ProgressBarTest.php
Tests/Helper/ProgressIndicatorTest.php
Tests/Helper/QuestionHelperTest.php
Tests/Helper/SymfonyQuestionHelperTest.php
Tests/Helper/TableTest.php
Tests/Input/ArgvInputTest.php
Tests/Input/ArrayInputTest.php
Tests/Input/InputDefinitionTest.php
Tests/Input/InputOptionTest.php
Tests/Input/StringInputTest.php
Tests/Logger/ConsoleLoggerTest.php
Tests/Output/OutputTest.php
Tests/Question/ChoiceQuestionTest.php
Tests/Question/ConfirmationQuestionTest.php
Tests/Question/QuestionTest.php
Tests/Style/SymfonyStyleTest.php
Tests/TerminalTest.php
Tests/Tester/Constraint/CommandIsSuccessfulTest.php
composer.json

Changelog

Here is a list of changes between the version you use, and the version this pull request updates to:

  • 39f75d9d[Console] Fix display of Table on Windows OS
  • 8ec305a8[PhpUnitBridge][VarDumper] fix color detection
  • f5436ad1[VarDumper][PhpUnitBridge] Fix color detection
  • 3da10774bug #53707 [Console] Fix color support for TTY output (theofidry)
  • d7c327c0[Console] Fix color support
  • 37774e6b[Console] Allow false as a $shortcut in InputOption
  • dbdf6adcFix implicitly-required parameters
  • de9a8d91Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
  • 0aff1982bug #53516 [Console] Allow '0' as a $shortcut in InputOption.php (lawsonjl-ornl)
  • 923817d0[Console] Allow '0' as a $shortcut in InputOption.php
  • 8c181cf6[Console] Only execute additional checks for color support if the output is a TTY
  • a75c7a61[Console] CS fix
  • 4b4d8cd1detect colors on not windows
  • d9648a13fix xterm detection
  • bbfa5086refactor: hyper check
  • c70df1ffAdd hint that changing input arguments has no effect
  • 11ac5f15[Tests] Streamline
  • f4f71842[Console] Fix linewraps in OutputFormatter
  • b504a3d2Fix deprecations on PHP 8.3
  • 560fc3edminor #50418 [Console] Fix PHP Doc of InputArgument (lyrixx)
  • 47ec02ae[Console] block input stream if needed When the input stream used in the question helper is not blocking, the default value is always used as the stream return false. In order to fix that, we force the stream to be in blocking state and go back to the old state after so other logic is not impacted by this change
  • 875ffc84[Console] Fix PHP Doc of InputArgument
  • a349882c[Console] Remove exec and replace it by shell_exec
  • 9a16a1cbRemove usage of constant for better consistency across the codebase
  • 90f21e27trim(): Argument #1 () must be of type string, bool given
  • 930de434Fix the list of supported shells for completions in a phar
  • 9f16d3e3bug #48886 [Console] Fix computing column width containing multibyte chars (cay89)
  • 79e7e16e[Console] Fix computing column width containing multibyte chars
  • 3105944c[Console] Restoring the ability to output unicode text to the Win10 console
  • 3cd51fd2[VarDumper] Disable links for IntelliJ platform
  • 7ec6e8b4Fix some Composer keywords
  • bbfc3e4f[Tests] Replace setMethods()byonlyMethods()andaddMethods()``
  • c77433dd[Console] Fix ApplicationTest::testSetSignalsToDispatchEvent() when ran alone
  • a39ab00aCS fix
  • bc04b7a3use proper methods to assert exception messages contain certain strings
  • 0b4af146Migrate to staticdata providers usingrector/rector``
  • 4b81c203minor #49253 [PHPUnit 10] Use TestCasesuffix for abstract tests in/Tests/ (OskarStark)
  • 8ae1b602[Tests] Migrate data providers to static ones
  • fd78f92dUpdate license years (last time)
  • dccb8d25Bump license year to 2023
  • 58422fdc[Console] Correctly overwrite progressbars with different line count per step
  • 9bd719e5[Console] Fix a test when pcntl is not available (following #48329)
  • 8e9b9c8dskip tests if the signal to be sent is not available
  • 3042c617skip a test if the signal to be sent is not available
  • f2dd071dSupport completion for bash functions
  • dcda5272Improve message when shell is not detected
  • 3836ffa8bug #48210 [Console] Fix signal handlers called after event listeners and skip exit (GromNaN)
  • 0c6f9ac5Merge branch '4.4' into 5.4
  • 01c90dbaFix signal handlers called after event listeners and skip exit
  • 005ed052bug #47998 [Console] Fix console ProgressBar::override()after manualProgressBar::cleanup() (maxbeckers)
  • afcca7c3[Console] Fix console ProgressBar::override()after manualProgressBar::cleanup()``
  • 33fa45ffTell about messenger:consume invalid limit options
  • ea59bb0eMerge branch '4.4' into 5.4
  • 8e70c1caUpdate Application.php
  • ae0727b4Merge branch '4.4' into 5.4
  • f83da4d6[Console] Fix error output on windows cli
  • 984ea2c0Merge branch '4.4' into 5.4
  • 4f40012d[Console] Fix Helper::removeDecoration hyperlink bug
  • 28b77970minor #47299 [Console] fix expected command name order with mixed integer and string namespaces (xabbuh)

This is an automated pull request from Violinist: Continuously and automatically monitor and update your composer dependencies. Have ideas on how to improve this message? All violinist messages are open-source, and can be improved here.

@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.21Update symfony/console from v5.4.13 to v5.4.22Mar 31, 2023
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.22Update symfony/console from v5.4.13 to v5.4.23Apr 28, 2023
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.23Update symfony/console from v5.4.13 to v5.4.24May 27, 2023
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.24Update symfony/console from v5.4.13 to v5.4.26Jul 29, 2023
@violinist-bot
violinist-botforce-pushed the violinistsymfonyconsole branch from cbb7af2 to 4f90984CompareJuly 29, 2023 23:09
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.26Update symfony/console from v5.4.13 to v5.4.28Aug 26, 2023
@violinist-bot
violinist-botforce-pushed the violinistsymfonyconsole branch from 4f90984 to 0e244deCompareAugust 26, 2023 22:39
@violinist-bot
violinist-botforce-pushed the violinistsymfonyconsole branch from 0e244de to 2645ef1CompareAugust 27, 2023 21:34
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.28Update symfony/console from v5.4.13 to v5.4.31Nov 10, 2023
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.31Update symfony/console from v5.4.13 to v5.4.32Nov 29, 2023
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.32Update symfony/console from v5.4.13 to v5.4.34Dec 30, 2023
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.34Update symfony/console from v5.4.13 to v5.4.35Jan 30, 2024
@violinist-botviolinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.35Update symfony/console from v5.4.13 to v5.4.36Feb 27, 2024
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@violinist-bot