31c67eb60cce94e985828c572a9ac0bb80179971
[yaffs-website] / vendor / symfony / debug / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 3.4.0
5 -----
6
7 * deprecated `ErrorHandler::stackErrors()` and `ErrorHandler::unstackErrors()`
8
9 3.3.0
10 -----
11
12 * deprecated the `ContextErrorException` class: use \ErrorException directly now
13
14 3.2.0
15 -----
16
17 * `FlattenException::getTrace()` now returns additional type descriptions
18   `integer` and `float`.
19
20
21 3.0.0
22 -----
23
24 * removed classes, methods and interfaces deprecated in 2.x
25
26 2.8.0
27 -----
28
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
32
33 2.7.0
34 -----
35
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
40
41 2.6.0
42 -----
43
44 * generalized ErrorHandler and ExceptionHandler,
45   with some new methods and others deprecated
46 * enhanced error messages for uncaught exceptions
47
48 2.5.0
49 -----
50
51 * added ExceptionHandler::setHandler()
52 * added UndefinedMethodFatalErrorHandler
53 * deprecated DummyException
54
55 2.4.0
56 -----
57
58  * added a DebugClassLoader able to wrap any autoloader providing a findFile method
59  * improved error messages for not found classes and functions
60
61 2.3.0
62 -----
63
64  * added the component