base repository: symfony/console
base: v5.4.15
head repository: symfony/console
Uh oh!
There was an error while loading. Please reload this page.
compare: v5.4.16
- 10 commits
- 7 files changed
- 7 contributors
Commits on Nov 5, 2022
Tell about messenger:consume invalid limit options
MatTheCat committedNov 5, 2022
Commits on Nov 11, 2022
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 committedNov 11, 2022
Commits on Nov 13, 2022
Fix signal handlers called after event listeners and skip exit
GromNaN committedNov 13, 2022 Configuration menu Copy the full SHA View commit details Browse the repository at this point in the history
Commits on Nov 14, 2022
* 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 committedNov 14, 2022 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 committedNov 14, 2022
Commits on Nov 15, 2022
Improve message when shell is not detected
GromNaN committedNov 15, 2022
Commits on Nov 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
skip a test if the signal to be sent is not available
xabbuh committedNov 25, 2022 skip tests if the signal to be sent is not available
xabbuh committedNov 25, 2022
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff v5.4.15...v5.4.16
Uh oh!
There was an error while loading. Please reload this page.