composer package updates
[openemr.git] / vendor / symfony / debug / CHANGELOG.md
blob31c67eb60cce94e985828c572a9ac0bb80179971
1 CHANGELOG
2 =========
4 3.4.0
5 -----
7 * deprecated `ErrorHandler::stackErrors()` and `ErrorHandler::unstackErrors()`
9 3.3.0
10 -----
12 * deprecated the `ContextErrorException` class: use \ErrorException directly now
14 3.2.0
15 -----
17 * `FlattenException::getTrace()` now returns additional type descriptions
18   `integer` and `float`.
21 3.0.0
22 -----
24 * removed classes, methods and interfaces deprecated in 2.x
26 2.8.0
27 -----
29 * added BufferingLogger for errors that happen before a proper logger is configured
30 * allow throwing from `__toString()` with `return trigger_error($e, E_USER_ERROR);`
31 * deprecate ExceptionHandler::createResponse
33 2.7.0
34 -----
36 * added deprecations checking for parent interfaces/classes to DebugClassLoader
37 * added ZTS support to symfony_debug extension
38 * added symfony_debug_backtrace() to symfony_debug extension
39   to track the backtrace of fatal errors
41 2.6.0
42 -----
44 * generalized ErrorHandler and ExceptionHandler,
45   with some new methods and others deprecated
46 * enhanced error messages for uncaught exceptions
48 2.5.0
49 -----
51 * added ExceptionHandler::setHandler()
52 * added UndefinedMethodFatalErrorHandler
53 * deprecated DummyException
55 2.4.0
56 -----
58  * added a DebugClassLoader able to wrap any autoloader providing a findFile method
59  * improved error messages for not found classes and functions
61 2.3.0
62 -----
64  * added the component