Permalink
base repository: symfony/console
Failed to load repositories. Confirm that selected base ref is valid, then try again.
base: v5.4.15
Choose a base ref
...
head repository: symfony/console
Failed to load repositories. Confirm that selected head ref is valid, then try again.
compare: v5.4.16
Choose a head ref
  • 10 commits
  • 7 files changed
  • 7 contributors

Commits on Nov 5, 2022

  1. Configuration menu
    Copy the full SHA
    33fa45fView 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 committedNov 11, 2022
    Configuration menu
    Copy the full SHA
    afcca7cView 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
    fabpot committedNov 11, 2022
    Configuration menu
    Copy the full SHA
    005ed05View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2022

  1. Configuration menu
    Copy the full SHA
    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
    nicolas-grekas committedNov 14, 2022
    Configuration menu
    Copy the full SHA
    0c6f9acView commit details
    Browse the repository at this point in the history
  2. 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 diser.
    https://.com/symfony/symfony/pull/45333/files#diff-8f1fd83284712ab08cb5d391da70ea0e78719ef08db852596997a4085848a026L1009
    
    Commits
    -------
    
    eebfd6eb0a Fix signal handlers called after event listeners and skip exit
    @nicolas-grekas
    nicolas-grekas committedNov 14, 2022
    Configuration menu
    Copy the full SHA
    3836ffaView commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2022

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

Commits on Nov 19, 2022

  1. Support completion for bash functions

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

Commits on Nov 25, 2022

  1. Configuration menu
    Copy the full SHA
    3042c61View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8e9b9c8View commit details
    Browse the repository at this point in the history
Loading