Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: symfony/console
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.0.15
Choose a base ref
...
head repository: symfony/console
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.0.16
Choose a head ref
  • 14 commits
  • 7 files changed
  • 8 contributors

Commits on Nov 5, 2022

  1. Configuration menu
    Copy the full SHA
    33fa45f View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2022

  1. [Console] Fix console ProgressBar::override() after manual `Progres…

    …sBar::cleanup()`
    maxbeckers authored and fabpot committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    afcca7c View commit details
    Browse the repository at this point in the history
  2. bug #47998 [Console] Fix console ProgressBar::override() after manu…

    …al `ProgressBar::cleanup()` (maxbeckers)
    
    This PR was squashed before being merged into the 5.4 branch.
    
    Discussion
    ----------
    
    [Console] Fix console `ProgressBar::override()` after manual `ProgressBar::cleanup()`
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 5.4
    | Bug fix?      | yes
    | New feature?  | no
    | Deprecations? | no
    | Tickets       | Fix #47987
    | License       | MIT
    | Doc PR        |
    
    In the issue #47987 is described, that there is a problem with overriding lines with `ProgressBar::override()` on a multiline console output with manual call of `ProgressBar::cleanup()`.
    
    Testcode:
    ```
    ProgressBar::setFormatDefinition('normal_nomax', "[%bar%]\n%message%");
    $progressBar = new ProgressBar($output);
    $progressBar->setMessage('Processing "foobar"...');
    $progressBar->start();
    $progressBar->clear();
    $output->writeln('Foo!');
    $progressBar->display();
    $progressBar->finish();
    ```
    
    Output before the fix:
    ```
    Progress bar having only one line:
    Foo!
    [----->----------------------]
    =-=-=-=
    Progress bar having two lines:
    [----->----------------------]
    Processing "foobar"...
    ```
    
    Expected output / output after the fix:
    ```
    Progress bar having only one line:
    Foo!
    [----->----------------------]
    =-=-=-=
    Progress bar having two lines:
    Foo!
    [----->----------------------]
    Processing "foobar"...
    ```
    
    Commits
    -------
    
    aa661aa9ce [Console] Fix console `ProgressBar::override()` after manual `ProgressBar::cleanup()`
    fabpot committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    005ed05 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2022

  1. Configuration menu
    Copy the full SHA
    01c90db View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2022

  1. Merge branch '4.4' into 5.4

    * 4.4:
      [Messenger] Fix time-limit check exception
      [PhpUnitBridge] Fix language deprecations incorrectly marked as direct
      Tell about messenger:consume invalid limit options
      [Messenger] Do not throw 'no handlers' exception when skipping due to duplicate handling
    nicolas-grekas committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    0c6f9ac View commit details
    Browse the repository at this point in the history
  2. Merge branch '5.4' into 6.0

    * 5.4:
      [Messenger] cs fix
      [Messenger] Fix time-limit check exception
      [Console] Fix console `ProgressBar::override()` after manual `ProgressBar::cleanup()`
      [FrameworkBundle] typo default_lifetime example
      [HttpClient] Handle Amp HTTP client v5 incompatibility gracefully
      [HttpKernel] Don’t try to wire Response argument with controller.service_arguments
      [PhpUnitBridge] Fix language deprecations incorrectly marked as direct
      Tell about messenger:consume invalid limit options
      [Messenger] Do not throw 'no handlers' exception when skipping due to duplicate handling
    nicolas-grekas committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    65427ec View commit details
    Browse the repository at this point in the history
  3. bug #48210 [Console]  Fix signal handlers called after event listener…

    …s and skip exit (GromNaN)
    
    This PR was merged into the 5.4 branch.
    
    Discussion
    ----------
    
    [Console]  Fix signal handlers called after event listeners and skip exit
    
    | Q             | A
    | ------------- | ---
    | Branch?       | 5.4
    | Bug fix?      | yes
    | New feature?  | no
    | Deprecations? | no
    | Tickets       | Fix #48205
    | License       | MIT
    | Doc PR        | -
    
    Restore registration of signal handlers after the event dispatcher.
    https://github.com/symfony/symfony/pull/45333/files#diff-8f1fd83284712ab08cb5d391da70ea0e78719ef08db852596997a4085848a026L1009
    
    Commits
    -------
    
    eebfd6eb0a Fix signal handlers called after event listeners and skip exit
    nicolas-grekas committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    3836ffa View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2022

  1. Configuration menu
    Copy the full SHA
    dcda527 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2022

  1. Merge branch '5.4' into 6.0

    * 5.4:
      [Translation][Lokalize] Configure `replace_breaks` to prevent issues with multilines translations
      Improve message when shell is not detected
      ensure docblock compatibility with PhpStan's docblock parser
      Fix signal handlers called after event listeners and skip exit
    fabpot committed Nov 19, 2022
    Configuration menu
    Copy the full SHA
    ed30487 View commit details
    Browse the repository at this point in the history
  2. Support completion for bash functions

    Chi-teck authored and fabpot committed Nov 19, 2022
    Configuration menu
    Copy the full SHA
    f2dd071 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2022

  1. Merge branch '5.4' into 6.0

    * 5.4:
      Support completion for bash functions
    derrabus committed Nov 20, 2022
    Configuration menu
    Copy the full SHA
    340671c View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2022

  1. Configuration menu
    Copy the full SHA
    3042c61 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8e9b9c8 View commit details
    Browse the repository at this point in the history
  3. Merge branch '5.4' into 6.0

    * 5.4:
      parse unquoted digits in tag values as integers
      do not wire the MercureTransportFactory if the MercureBundle is not enabled
      skip tests if the signal to be sent is not available
      skip a test if the signal to be sent is not available
    derrabus committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    be29442 View commit details
    Browse the repository at this point in the history
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy