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 symfony/console from v5.4.13 to v5.4.36 #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

violinist-bot
Copy link

@violinist-bot violinist-bot commented Mar 1, 2023

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
  • 3da10774 bug #53707 [Console] Fix color support for TTY output (theofidry)
  • d7c327c0 [Console] Fix color support
  • 37774e6b [Console] Allow false as a $shortcut in InputOption
  • dbdf6adc Fix implicitly-required parameters
  • de9a8d91 Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
  • 0aff1982 bug #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
  • 4b4d8cd1 detect colors on not windows
  • d9648a13 fix xterm detection
  • bbfa5086 refactor: hyper check
  • c70df1ff Add hint that changing input arguments has no effect
  • 11ac5f15 [Tests] Streamline
  • f4f71842 [Console] Fix linewraps in OutputFormatter
  • b504a3d2 Fix deprecations on PHP 8.3
  • 560fc3ed minor #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
  • 9a16a1cb Remove usage of constant for better consistency across the codebase
  • 90f21e27 trim(): Argument #1 () must be of type string, bool given
  • 930de434 Fix the list of supported shells for completions in a phar
  • 9f16d3e3 bug #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
  • 7ec6e8b4 Fix some Composer keywords
  • bbfc3e4f [Tests] Replace setMethods()byonlyMethods()andaddMethods()``
  • c77433dd [Console] Fix ApplicationTest::testSetSignalsToDispatchEvent() when ran alone
  • a39ab00a CS fix
  • bc04b7a3 use proper methods to assert exception messages contain certain strings
  • 0b4af146 Migrate to staticdata providers usingrector/rector``
  • 4b81c203 minor #49253 [PHPUnit 10] Use TestCasesuffix for abstract tests in/Tests/ (OskarStark)
  • 8ae1b602 [Tests] Migrate data providers to static ones
  • fd78f92d Update license years (last time)
  • dccb8d25 Bump 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)
  • 8e9b9c8d skip tests if the signal to be sent is not available
  • 3042c617 skip a test if the signal to be sent is not available
  • f2dd071d Support completion for bash functions
  • dcda5272 Improve message when shell is not detected
  • 3836ffa8 bug #48210 [Console]  Fix signal handlers called after event listeners and skip exit (GromNaN)
  • 0c6f9ac5 Merge branch '4.4' into 5.4
  • 01c90dba Fix signal handlers called after event listeners and skip exit
  • 005ed052 bug #47998 [Console] Fix console ProgressBar::override()after manualProgressBar::cleanup() (maxbeckers)
  • afcca7c3 [Console] Fix console ProgressBar::override()after manualProgressBar::cleanup()``
  • 33fa45ff Tell about messenger:consume invalid limit options
  • ea59bb0e Merge branch '4.4' into 5.4
  • 8e70c1ca Update Application.php
  • ae0727b4 Merge branch '4.4' into 5.4
  • f83da4d6 [Console] Fix error output on windows cli
  • 984ea2c0 Merge branch '4.4' into 5.4
  • 4f40012d [Console] Fix Helper::removeDecoration hyperlink bug
  • 28b77970 minor #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-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.21 Update symfony/console from v5.4.13 to v5.4.22 Mar 31, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.22 Update symfony/console from v5.4.13 to v5.4.23 Apr 28, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.23 Update symfony/console from v5.4.13 to v5.4.24 May 27, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.24 Update symfony/console from v5.4.13 to v5.4.26 Jul 29, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.26 Update symfony/console from v5.4.13 to v5.4.28 Aug 26, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.28 Update symfony/console from v5.4.13 to v5.4.31 Nov 10, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.31 Update symfony/console from v5.4.13 to v5.4.32 Nov 29, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.32 Update symfony/console from v5.4.13 to v5.4.34 Dec 30, 2023
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.34 Update symfony/console from v5.4.13 to v5.4.35 Jan 30, 2024
@violinist-bot violinist-bot changed the title Update symfony/console from v5.4.13 to v5.4.35 Update symfony/console from v5.4.13 to v5.4.36 Feb 27, 2024
Sign up for free to 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