You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
1.8 KiB

3 years ago
  1. # 2.14.0
  2. * Switched syntax highlighting to Prism.js
  3. Avoids licensing issues with prettify, and uses a maintaned, modern project.
  4. # 2.13.0
  5. * Add Netbeans editor
  6. # 2.12.1
  7. * Avoid redirecting away from an error.
  8. # 2.12.0
  9. * Hide non-string values in super globals when requested.
  10. # 2.11.0
  11. * Customize exit code
  12. # 2.10.0
  13. * Better chaining on handler classes
  14. # 2.9.2
  15. * Fix copy button styles
  16. # 2.9.1
  17. * Fix xdebug function crash on PHP 8
  18. # 2.9.0
  19. * JsonResponseHandler includes the exception code
  20. # 2.8.0
  21. * Support PHP 8
  22. # 2.7.3
  23. * PrettyPageHandler functionality to hide superglobal keys has a clearer name hideSuperglobalKey
  24. # 2.7.2
  25. * PrettyPageHandler now accepts custom js files
  26. * PrettyPageHandler templateHelper is now accessible through inheritance
  27. # 2.7.1
  28. * Fix a PHP warning in some cases with anonymous classes.
  29. # 2.7.0
  30. * removeFirstHandler and removeLastHandler.
  31. # 2.6.0
  32. * Fix 2.4.0 pushHandler changing the order of handlers.
  33. # 2.5.1
  34. * Fix error messaging in a rare case.
  35. # 2.5.0
  36. * Automatically configure xdebug if available.
  37. # 2.4.1
  38. * Try harder to close all output buffers
  39. # 2.4.0
  40. * Allow to prepend and append handlers.
  41. # 2.3.2
  42. * Various fixes from the community.
  43. # 2.3.1
  44. * Prevent exception in Whoops when caught exception frame is not related to real file
  45. # 2.3.0
  46. * Show previous exception messages.
  47. # 2.2.0
  48. * Support PHP 7.2
  49. # 2.1.0
  50. * Add a `SystemFacade` to allow clients to override Whoops behavior.
  51. * Show frame arguments in `PrettyPageHandler`.
  52. * Highlight the line with the error.
  53. * Add icons to search on Google and Stack Overflow.
  54. # 2.0.0
  55. Backwards compatibility breaking changes:
  56. * `Run` class is now `final`. If you inherited from `Run`, please now instead use a custom `SystemFacade` injected into the `Run` constructor, or contribute your changes to our core.
  57. * PHP < 5.5 support dropped.