[Console] added CHANGELOG

This commit is contained in:
Fabien Potencier 2012-04-26 22:16:40 +02:00
parent 244bf55b61
commit 2f536e92ad
2 changed files with 19 additions and 9 deletions

View File

@ -172,15 +172,6 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
* implemented `Serializable` on resources
* LoaderResolverInterface is now used instead of LoaderResolver for type hinting
### Console
* added a --raw option to the list command
* added support for STDERR in the console output class (errors are now sent to STDERR)
* made the defaults (helper set, commands, input definition) in Application more easily customizable
* added support for the shell even if readline is not available
* added support for process isolation in Symfony shell via `--process-isolation` switch
* added support for `--`, which disables options parsing after that point (tokens will be parsed as arguments)
### ClassLoader
* added a DebugClassLoader able to wrap any autoloader providing a findFile method

View File

@ -0,0 +1,19 @@
CHANGELOG
=========
2.1.0
-----
* added ConsoleOutputInterface
* added the possibility to disable a command (Command::isEnabled())
* added suggestions when a command does not exist
* added a --raw option to the list command
* added support for STDERR in the console output class (errors are now sent
to STDERR)
* made the defaults (helper set, commands, input definition) in Application
more easily customizable
* added support for the shell even if readline is not available
* added support for process isolation in Symfony shell via
`--process-isolation` switch
* added support for `--`, which disables options parsing after that point
(tokens will be parsed as arguments)