Chris@0: CHANGELOG Chris@0: ========= Chris@0: Chris@14: 3.4.0 Chris@14: ----- Chris@14: Chris@14: * added `SHELL_VERBOSITY` env var to control verbosity Chris@14: * added `CommandLoaderInterface`, `FactoryCommandLoader` and PSR-11 Chris@14: `ContainerCommandLoader` for commands lazy-loading Chris@14: * added a case-insensitive command name matching fallback Chris@14: * added static `Command::$defaultName/getDefaultName()`, allowing for Chris@14: commands to be registered at compile time in the application command loader. Chris@14: Setting the `$defaultName` property avoids the need for filling the `command` Chris@14: attribute on the `console.command` tag when using `AddConsoleCommandPass`. Chris@14: Chris@14: 3.3.0 Chris@14: ----- Chris@14: Chris@14: * added `ExceptionListener` Chris@14: * added `AddConsoleCommandPass` (originally in FrameworkBundle) Chris@14: * [BC BREAK] `Input::getOption()` no longer returns the default value for options Chris@14: with value optional explicitly passed empty Chris@14: * added console.error event to catch exceptions thrown by other listeners Chris@14: * deprecated console.exception event in favor of console.error Chris@14: * added ability to handle `CommandNotFoundException` through the Chris@14: `console.error` event Chris@14: * deprecated default validation in `SymfonyQuestionHelper::ask` Chris@14: Chris@0: 3.2.0 Chris@0: ------ Chris@0: Chris@0: * added `setInputs()` method to CommandTester for ease testing of commands expecting inputs Chris@0: * added `setStream()` and `getStream()` methods to Input (implement StreamableInputInterface) Chris@0: * added StreamableInputInterface Chris@0: * added LockableTrait Chris@0: Chris@0: 3.1.0 Chris@0: ----- Chris@0: Chris@0: * added truncate method to FormatterHelper Chris@0: * added setColumnWidth(s) method to Table Chris@0: Chris@0: 2.8.3 Chris@0: ----- Chris@0: Chris@0: * remove readline support from the question helper as it caused issues Chris@0: Chris@0: 2.8.0 Chris@0: ----- Chris@0: Chris@0: * use readline for user input in the question helper when available to allow Chris@0: the use of arrow keys Chris@0: Chris@0: 2.6.0 Chris@0: ----- Chris@0: Chris@0: * added a Process helper Chris@0: * added a DebugFormatter helper Chris@0: Chris@0: 2.5.0 Chris@0: ----- Chris@0: Chris@0: * deprecated the dialog helper (use the question helper instead) Chris@0: * deprecated TableHelper in favor of Table Chris@0: * deprecated ProgressHelper in favor of ProgressBar Chris@0: * added ConsoleLogger Chris@0: * added a question helper Chris@0: * added a way to set the process name of a command Chris@0: * added a way to set a default command instead of `ListCommand` Chris@0: Chris@0: 2.4.0 Chris@0: ----- Chris@0: Chris@0: * added a way to force terminal dimensions Chris@0: * added a convenient method to detect verbosity level Chris@0: * [BC BREAK] made descriptors use output instead of returning a string Chris@0: Chris@0: 2.3.0 Chris@0: ----- Chris@0: Chris@0: * added multiselect support to the select dialog helper Chris@0: * added Table Helper for tabular data rendering Chris@0: * added support for events in `Application` Chris@0: * added a way to normalize EOLs in `ApplicationTester::getDisplay()` and `CommandTester::getDisplay()` Chris@0: * added a way to set the progress bar progress via the `setCurrent` method Chris@0: * added support for multiple InputOption shortcuts, written as `'-a|-b|-c'` Chris@0: * added two additional verbosity levels, VERBOSITY_VERY_VERBOSE and VERBOSITY_DEBUG Chris@0: Chris@0: 2.2.0 Chris@0: ----- Chris@0: Chris@0: * added support for colorization on Windows via ConEmu Chris@0: * add a method to Dialog Helper to ask for a question and hide the response Chris@0: * added support for interactive selections in console (DialogHelper::select()) Chris@0: * added support for autocompletion as you type in Dialog Helper Chris@0: Chris@0: 2.1.0 Chris@0: ----- Chris@0: Chris@0: * added ConsoleOutputInterface Chris@0: * added the possibility to disable a command (Command::isEnabled()) Chris@0: * added suggestions when a command does not exist Chris@0: * added a --raw option to the list command Chris@0: * added support for STDERR in the console output class (errors are now sent Chris@0: to STDERR) Chris@0: * made the defaults (helper set, commands, input definition) in Application Chris@0: more easily customizable Chris@0: * added support for the shell even if readline is not available Chris@0: * added support for process isolation in Symfony shell via Chris@0: `--process-isolation` switch Chris@0: * added support for `--`, which disables options parsing after that point Chris@0: (tokens will be parsed as arguments)