Commit Graph

1061 Commits

Author SHA1 Message Date
Denis Sokolov ecbc8f3ed2 Merge branch 'fix-stack-queue' 2.6.0 2019-12-25 12:00:00 +02:00
Denis Sokolov fca08cac37 Changelog for 2.6.0 2019-12-25 12:00:00 +02:00
Denis Sokolov f2eb7d6d42 appendHandler and prependHandler 2019-12-25 12:00:00 +02:00
Denis Sokolov 8957f6fb70 Revert "feat!: add append and prepend handler instead of reverse execution"
This reverts commit f41c4a2a5a.
2019-12-25 12:00:00 +02:00
Denis Sokolov b909d8899e Revert "style: rename handlerStack to handlerQueue"
This reverts commit 5fa7623246.
2019-12-25 12:00:00 +02:00
Denis Sokolov 0e35b7b7ee Revert "Change deprecated pushHandler to prependHandler"
This reverts commit 284aadd76d.
2019-12-25 12:00:00 +02:00
Denis Sokolov 8781b453b2 Revert "Change deprecated pushHandler to prependHandler"
This reverts commit 410526d38c.
2019-12-25 12:00:00 +02:00
Denis Sokolov 08e23fa81f Revert "Change deprecated pushHandler to prependHandler"
This reverts commit 4e8c2138bd.
2019-12-25 12:00:00 +02:00
Denis Sokolov 5830721878 Merge pull request #649 from GrahamCampbell/patch-1
Fixed branch alias
2019-12-23 20:29:36 +02:00
Denis Sokolov 81f7ba5887 Merge pull request #650 from GrahamCampbell/patch-2
Newer dev dependencies
2019-12-23 19:44:03 +02:00
Graham Campbell c3b1914267 Newer dev dependencies 2019-12-22 18:17:50 +00:00
Graham Campbell 8f266c0813 Fixed branch alias 2019-12-22 18:16:56 +00:00
Denis Sokolov ee9699e79d Changelog for 2.5.1 2.5.1 2019-12-21 12:00:00 +02:00
Denis Sokolov df482b718d Merge pull request #647 from GrahamCampbell/patch-1
Test on PHP 7.4
2019-12-20 10:30:10 +02:00
Graham Campbell e0e4894678 Update .travis.yml 2019-12-20 00:16:40 +00:00
Denis Sokolov 77e91f02e3 PrettyPageHandler: explain why not all arguments are dumped 2019-12-03 12:00:00 +02:00
Denis Sokolov ecc5258b74 Merge pull request #645 from TysonAndre/patch-1
Fix usage of __METHOD__ inside of closure
2019-11-03 15:23:56 +02:00
Denis Sokolov cef858f51c Fix handler list incorrectly marking all handlers as active, #646 2019-11-03 12:00:00 +02:00
Tyson Andre d799d46962 Fix usage of __METHOD__ inside of closure
The value of __METHOD__ would be a description of the nearest function-like, i.e. `'{closure}'`

This was detected via static analysis (Phan)
2019-11-02 18:02:43 -04:00
Denis Sokolov cde50e6720 Changelog for 2.5.0 2.5.0 2019-08-07 12:00:00 +03:00
Denis Sokolov 3f37a6481a Merge pull request #638 from tobiastom/feature/xdebug-auto-configuration
Implemented automatic editor configuration if Xdebug is available.
2019-08-07 12:03:55 +03:00
Tobias Tom 31cd201af7 Implemented automatic editor configuration if Xdebug is available. 2019-08-07 09:57:45 +01:00
Denis Sokolov dcc38c0a79 Merge pull request #635 from beebus/patch-3
Change deprecated pushHandler to prependHandler
2019-07-24 13:05:27 +03:00
Denis Sokolov 71a0dee2d7 Merge pull request #634 from beebus/patch-2
Change deprecated pushHandler to prependHandler
2019-07-24 13:05:19 +03:00
Denis Sokolov fb76b9816f Merge pull request #633 from beebus/patch-1
Change deprecated pushHandler to prependHandler
2019-07-24 13:05:09 +03:00
Michael Beebower 4e8c2138bd Change deprecated pushHandler to prependHandler
On https://github.com/filp/whoops/blob/master/src/Whoops/Run.php on lines 43-54, it states that pushHandler is being replaced with prependHandler.

Specifically:
* @deprecated use appendHandler and prependHandler instead
     */
    public function pushHandler($handler)
    {
        return $this->prependHandler($handler);
    }
2019-07-23 21:53:08 -05:00
Michael Beebower 410526d38c Change deprecated pushHandler to prependHandler
On https://github.com/filp/whoops/blob/master/src/Whoops/Run.php on lines 43-54, it states that pushHandler is being replaced with prependHandler.

Specifically:
* @deprecated use appendHandler and prependHandler instead
     */
    public function pushHandler($handler)
    {
        return $this->prependHandler($handler);
    }
2019-07-23 21:49:52 -05:00
Michael Beebower 284aadd76d Change deprecated pushHandler to prependHandler
On https://github.com/filp/whoops/blob/master/src/Whoops/Run.php on lines 43-54, it states that pushHandler is being replaced with prependHandler.

Specifically:
* @deprecated use appendHandler and prependHandler instead
     */
    public function pushHandler($handler)
    {
        return $this->prependHandler($handler);
    }
2019-07-23 21:46:20 -05:00
Denis Sokolov 6fb502c238 Changelog for 2.4.1 2.4.1 2019-07-04 12:00:00 +03:00
Denis Sokolov f3108dfdeb Merge pull request #632 from staabm/patch-3
Make sure we close all output-buffer we started beforehand
2019-07-04 16:34:53 +03:00
Jeroen Derks f9773aa988 updated function handleException() moved assignments outside of try/catch (#3) 2019-07-02 08:31:37 +02:00
Markus Staab 614b376a94 Merge pull request #2 from Magentron/patch-3
updated line numbers in PlainTextHandlerTest to handle added lines
2019-06-26 08:39:25 +02:00
Jeroen Derks 9ea1027d37 updated line numbers in PlainTextHandlerTest to handle added lines 2019-06-26 07:45:46 +02:00
Denis Sokolov 3ab01b90ba Merge pull request #631 from ximex/editor-constants
add editor-constants
2019-06-24 18:04:51 +03:00
Markus Staab 3eb5a59ebd tests: Make sure we close all output-buffer we started beforehand 2019-06-24 16:00:23 +02:00
Markus Staab 38ad9c4656 Make sure we close all output-buffer we started beforehand 2019-06-24 15:51:07 +02:00
Thomas Rupprecht 5e4dfacfc7 add editor-constants 2019-06-24 10:46:26 +02:00
Denis Sokolov 1a1a1044ad Changelog for 2.4.0 2.4.0 2019-06-23 12:00:00 +03:00
Denis Sokolov 3eec3537be Merge pull request #630 from tflori/append-handler
feat!: add append and prepend handler instead of reverse execution
2019-06-23 11:46:09 +03:00
Thomas Flori 5fa7623246 style: rename handlerStack to handlerQueue 2019-06-22 23:23:05 +02:00
Thomas Flori f41c4a2a5a feat!: add append and prepend handler instead of reverse execution
BREAKING CHANGE: since "pushHandler()" was actually prepending handlers
it is now an alias for prependHandler but "popHandler()" is still
removing the last handler.
2019-06-22 08:59:57 +02:00
Denis Sokolov a28d5cef33 Changelog for 2.3.2 2.3.2 2019-06-21 12:00:00 +03:00
Denis Sokolov d1f91d76db Mark PHPStorm as working outside Mac, fix #561 2019-06-21 12:00:00 +03:00
Denis Sokolov 51c2de8397 Show traces for non-fatal ErrorExceptions, close #562, #524 2019-06-21 12:00:00 +03:00
Denis Sokolov 114a8f04c1 Fix tab switcher, close #573 2019-06-21 12:00:00 +03:00
Denis Sokolov b5483e7edf Document replaying errors 2019-06-21 12:00:00 +03:00
Denis Sokolov 96b5407262 Merge pull request #609 from tflori/plaintext-previous
add previous exception messages to plain text output
2019-06-21 12:24:50 +03:00
Denis Sokolov bb6f11f833 Merge pull request #567 from mluzarow/css-z-index-fix
CSS z-index fix
2019-06-21 12:20:28 +03:00
Denis Sokolov 97cdc3fe57 Update subl: link 2019-06-21 12:00:00 +03:00
Denis Sokolov 5585fdc562 Merge pull request #569 from arrilot/patch-1
Do not block other shutdown handlers
2019-06-21 12:04:15 +03:00