Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## 1.6.0

- Fixes [`#421`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/421): Using "commands" command for breakpoints locks up debugger.
- Fixes [`#469`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/469): Issue with setting Program Counter ($PC$) register on Windows via GDB 12.1 using -var-assign.
- Fixes [`#473`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/473): Confusing error pop-ups without additional user value in some corner cases.
- chore [`#474`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/pull/474): Patch yarn.lock to resolve to newer glob v10.5.0.
- Notable code changes:
- New features:
- Adds `frameRef` argument to `sendVarCreate`.
- Adds `GDBBackend` specific error classes.
- New protected methods on `GDBDebugSessionBase` that can be used to check if requests can proceed and if errors shall be reported:
`canRequestProceed`, `shouldReportError`.

## 1.5.0

- Fixes [`#463`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/463): Cannot use custom reset while CPU is running.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cdt-gdb-adapter",
"version": "1.5.0",
"version": "1.6.0",
"description": "gdb adapter implementing the debug adapter protocol",
"main": "dist/index.js",
"browser": "dist/browser/web.js",
Expand Down