Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,78 +0,0 @@
1
-CHANGELOG
2
-=========
3
-
4
-4.3.0
5
-
6
-* made the `ErrorHandler` and `ExceptionHandler` classes final
7
-* added `Exception\FlattenException::getAsString` and
8
-`Exception\FlattenException::getTraceAsString` to increase compatibility to php
9
-exception objects
10
-
11
-4.0.0
12
-
13
-* removed the symfony_debug extension
14
-* removed `ContextErrorException`
15
-
16
-3.4.0
17
-
18
-* deprecated `ErrorHandler::stackErrors()` and `ErrorHandler::unstackErrors()`
19
-
20
-3.3.0
21
-
22
-* deprecated the `ContextErrorException` class: use \ErrorException directly now
23
-
24
-3.2.0
25
-
26
-* `FlattenException::getTrace()` now returns additional type descriptions
27
-  `integer` and `float`.
28
-
29
-
30
-3.0.0
31
-
32
-* removed classes, methods and interfaces deprecated in 2.x
33
-
34
-2.8.0
35
-
36
-* added BufferingLogger for errors that happen before a proper logger is configured
37
-* allow throwing from `__toString()` with `return trigger_error($e, E_USER_ERROR);`
38
-* deprecate ExceptionHandler::createResponse
39
-
40
-2.7.0
41
-
42
-* added deprecations checking for parent interfaces/classes to DebugClassLoader
43
-* added ZTS support to symfony_debug extension
44
-* added symfony_debug_backtrace() to symfony_debug extension
45
-  to track the backtrace of fatal errors
46
-
47
-2.6.0
48
-
49
-* generalized ErrorHandler and ExceptionHandler,
50
-  with some new methods and others deprecated
51
-* enhanced error messages for uncaught exceptions
52
-
53
-2.5.0
54
-
55
-* added ExceptionHandler::setHandler()
56
-* added UndefinedMethodFatalErrorHandler
57
-* deprecated DummyException
58
-
59
-2.4.0
60
-
61
- * added a DebugClassLoader able to wrap any autoloader providing a findFile method
62
- * improved error messages for not found classes and functions
63
-
64
-2.3.0
65
-
66
- * added the component
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,78 @@
1
+CHANGELOG
2
+=========
3
+
4
+4.3.0
5
+-----
6
+
7
+* made the `ErrorHandler` and `ExceptionHandler` classes final
8
+* added `Exception\FlattenException::getAsString` and
9
+`Exception\FlattenException::getTraceAsString` to increase compatibility to php
10
+exception objects
11
+
12
+4.0.0
13
+-----
14
+
15
+* removed the symfony_debug extension
16
+* removed `ContextErrorException`
17
+
18
+3.4.0
19
+-----
20
+
21
+* deprecated `ErrorHandler::stackErrors()` and `ErrorHandler::unstackErrors()`
22
+
23
+3.3.0
24
+-----
25
+
26
+* deprecated the `ContextErrorException` class: use \ErrorException directly now
27
+
28
+3.2.0
29
+-----
30
+
31
+* `FlattenException::getTrace()` now returns additional type descriptions
32
+  `integer` and `float`.
33
+
34
+
35
+3.0.0
36
+-----
37
+
38
+* removed classes, methods and interfaces deprecated in 2.x
39
+
40
+2.8.0
41
+-----
42
+
43
+* added BufferingLogger for errors that happen before a proper logger is configured
44
+* allow throwing from `__toString()` with `return trigger_error($e, E_USER_ERROR);`
45
+* deprecate ExceptionHandler::createResponse
46
+
47
+2.7.0
48
+-----
49
+
50
+* added deprecations checking for parent interfaces/classes to DebugClassLoader
51
+* added ZTS support to symfony_debug extension
52
+* added symfony_debug_backtrace() to symfony_debug extension
53
+  to track the backtrace of fatal errors
54
+
55
+2.6.0
56
+-----
57
+
58
+* generalized ErrorHandler and ExceptionHandler,
59
+  with some new methods and others deprecated
60
+* enhanced error messages for uncaught exceptions
61
+
62
+2.5.0
63
+-----
64
+
65
+* added ExceptionHandler::setHandler()
66
+* added UndefinedMethodFatalErrorHandler
67
+* deprecated DummyException
68
+
69
+2.4.0
70
+-----
71
+
72
+ * added a DebugClassLoader able to wrap any autoloader providing a findFile method
73
+ * improved error messages for not found classes and functions
74
+
75
+2.3.0
76
+-----
77
+
78
+ * added the component