annotate vendor/symfony/console/CHANGELOG.md @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 1fec387a4317
children
rev   line source
Chris@0 1 CHANGELOG
Chris@0 2 =========
Chris@0 3
Chris@14 4 3.4.0
Chris@14 5 -----
Chris@14 6
Chris@14 7 * added `SHELL_VERBOSITY` env var to control verbosity
Chris@14 8 * added `CommandLoaderInterface`, `FactoryCommandLoader` and PSR-11
Chris@14 9 `ContainerCommandLoader` for commands lazy-loading
Chris@14 10 * added a case-insensitive command name matching fallback
Chris@14 11 * added static `Command::$defaultName/getDefaultName()`, allowing for
Chris@14 12 commands to be registered at compile time in the application command loader.
Chris@14 13 Setting the `$defaultName` property avoids the need for filling the `command`
Chris@14 14 attribute on the `console.command` tag when using `AddConsoleCommandPass`.
Chris@14 15
Chris@14 16 3.3.0
Chris@14 17 -----
Chris@14 18
Chris@14 19 * added `ExceptionListener`
Chris@14 20 * added `AddConsoleCommandPass` (originally in FrameworkBundle)
Chris@14 21 * [BC BREAK] `Input::getOption()` no longer returns the default value for options
Chris@14 22 with value optional explicitly passed empty
Chris@14 23 * added console.error event to catch exceptions thrown by other listeners
Chris@14 24 * deprecated console.exception event in favor of console.error
Chris@14 25 * added ability to handle `CommandNotFoundException` through the
Chris@14 26 `console.error` event
Chris@14 27 * deprecated default validation in `SymfonyQuestionHelper::ask`
Chris@14 28
Chris@0 29 3.2.0
Chris@0 30 ------
Chris@0 31
Chris@0 32 * added `setInputs()` method to CommandTester for ease testing of commands expecting inputs
Chris@0 33 * added `setStream()` and `getStream()` methods to Input (implement StreamableInputInterface)
Chris@0 34 * added StreamableInputInterface
Chris@0 35 * added LockableTrait
Chris@0 36
Chris@0 37 3.1.0
Chris@0 38 -----
Chris@0 39
Chris@0 40 * added truncate method to FormatterHelper
Chris@0 41 * added setColumnWidth(s) method to Table
Chris@0 42
Chris@0 43 2.8.3
Chris@0 44 -----
Chris@0 45
Chris@0 46 * remove readline support from the question helper as it caused issues
Chris@0 47
Chris@0 48 2.8.0
Chris@0 49 -----
Chris@0 50
Chris@0 51 * use readline for user input in the question helper when available to allow
Chris@0 52 the use of arrow keys
Chris@0 53
Chris@0 54 2.6.0
Chris@0 55 -----
Chris@0 56
Chris@0 57 * added a Process helper
Chris@0 58 * added a DebugFormatter helper
Chris@0 59
Chris@0 60 2.5.0
Chris@0 61 -----
Chris@0 62
Chris@0 63 * deprecated the dialog helper (use the question helper instead)
Chris@0 64 * deprecated TableHelper in favor of Table
Chris@0 65 * deprecated ProgressHelper in favor of ProgressBar
Chris@0 66 * added ConsoleLogger
Chris@0 67 * added a question helper
Chris@0 68 * added a way to set the process name of a command
Chris@0 69 * added a way to set a default command instead of `ListCommand`
Chris@0 70
Chris@0 71 2.4.0
Chris@0 72 -----
Chris@0 73
Chris@0 74 * added a way to force terminal dimensions
Chris@0 75 * added a convenient method to detect verbosity level
Chris@0 76 * [BC BREAK] made descriptors use output instead of returning a string
Chris@0 77
Chris@0 78 2.3.0
Chris@0 79 -----
Chris@0 80
Chris@0 81 * added multiselect support to the select dialog helper
Chris@0 82 * added Table Helper for tabular data rendering
Chris@0 83 * added support for events in `Application`
Chris@0 84 * added a way to normalize EOLs in `ApplicationTester::getDisplay()` and `CommandTester::getDisplay()`
Chris@0 85 * added a way to set the progress bar progress via the `setCurrent` method
Chris@0 86 * added support for multiple InputOption shortcuts, written as `'-a|-b|-c'`
Chris@0 87 * added two additional verbosity levels, VERBOSITY_VERY_VERBOSE and VERBOSITY_DEBUG
Chris@0 88
Chris@0 89 2.2.0
Chris@0 90 -----
Chris@0 91
Chris@0 92 * added support for colorization on Windows via ConEmu
Chris@0 93 * add a method to Dialog Helper to ask for a question and hide the response
Chris@0 94 * added support for interactive selections in console (DialogHelper::select())
Chris@0 95 * added support for autocompletion as you type in Dialog Helper
Chris@0 96
Chris@0 97 2.1.0
Chris@0 98 -----
Chris@0 99
Chris@0 100 * added ConsoleOutputInterface
Chris@0 101 * added the possibility to disable a command (Command::isEnabled())
Chris@0 102 * added suggestions when a command does not exist
Chris@0 103 * added a --raw option to the list command
Chris@0 104 * added support for STDERR in the console output class (errors are now sent
Chris@0 105 to STDERR)
Chris@0 106 * made the defaults (helper set, commands, input definition) in Application
Chris@0 107 more easily customizable
Chris@0 108 * added support for the shell even if readline is not available
Chris@0 109 * added support for process isolation in Symfony shell via
Chris@0 110 `--process-isolation` switch
Chris@0 111 * added support for `--`, which disables options parsing after that point
Chris@0 112 (tokens will be parsed as arguments)