Releases: xdebug/vscode-php-debug
v1.5.1
1.5.1
Function Breakpoints
- Adds function breakpoints from VS Code February release (fixes #21)
- Adds individual error breakpoint filters like "Notice", "Warning"
- Improves error handling in various ways
- Error/Exception codes is now shown in the error view
Launch as CLI and Error Messages
- adds the ability to directly launch a PHP script as CLI
- errors are now shown in a virtual "error scope" to show the error message, like in the Node debugger
v1.3.2
Fixes source requests for eval()
code.
v1.3.1
Fixes badges in VS Code gallery
Conditional Breakpoints
This release adds conditional breakpoints. Right-click on a breakpoint and select "Edit breakpoint" to edit the break condition.
VS Code January Release Adoption
This release refactors some code to use the new configurationDoneRequest
and tell VS Code that we support hovering over properties. I hope this makes the adapter a bit more stable.
Also, sourceRequest
has been implemented, I don't know how important this is for PHP, but if you are using eval()
you can now probably stop at exceptions inside the inlined code.
This release requires the VS Code January release to be installed.
Bugfixes
Refactor Connection Handling
Fixes an issue with race conditions regarding breakpoints.
Remote Host Debugging (aka Sourcemap)
This release adds two new settings, serverSourceRoot
and localSourceRoot
, which make it possible to debug a remote host.
Another addition is the new boolean log
setting, which logs all communication with VS Code to the debug console. This will hopefully help resolving issues quicker.