Skip to content

Commit 5ccafcc

Browse files
authored
v2.3.0 Release Preparations (#179)
* bump version to 2.3.0 * include cdt-gdb-adapter 1.3.0 * updated changelog for release --------- Signed-off-by: Jens Reinecke <[email protected]>
1 parent f65ee67 commit 5ccafcc

File tree

3 files changed

+26
-11
lines changed

3 files changed

+26
-11
lines changed

CHANGELOG.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,32 @@
11
# Change Log
22

3+
## 2.3.0
4+
5+
- Documentation update: Clarify behavior of `initCommands` setting for `gdbtarget` type.
6+
- Update to cdt-gdb-adapter v1.3.0
7+
- Implements [cdt-gdb-adapter `#422`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/422): Initial support for data breakpoints.
8+
**Note**: Initially supports global symbols with simple datatypes.
9+
- Fixes [cdt-gdb-adapter `#402`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/402): Better handle setting too many breakpoints.
10+
- Fixes [cdt-gdb-adapter `#407`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/pull/407): Getting stuck on concurrent breakpoint setup on targets that don’t stop on attach.
11+
- Fixes [cdt-gdb-adapter `#408`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/408): Avoid unnecessary ThreadInfoRequests.
12+
- Fixes [cdt-gdb-adapter `#420`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/pull/420): Disabling evaluate request error messages when hovering over comments.
13+
- Fixes [cdt-gdb-adapter `#427`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/427): Breakpoint source code reference to module disappears when breakpoint is hit.
14+
- Fixes [cdt-gdb-adapter `#428`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/428): User experience issues in step operations on slow sessions.
15+
- Fixes [cdt-gdb-adapter `#437`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/pull/437): `detach` request getting stuck on exited program.
16+
- Fixes [cdt-gdb-adapter `#444`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/pull/444): Adding more robustness to warning messages of the evaluateRequest.
17+
318
## 2.2.0
419

520
- Fixes [`#173`](https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode/issues/173): Add `target`>`watchServerProcess` setting to ignore early exit of `server` executable, e.g. if a launcher for actual gdbserver.
6-
- Fixes [cdt-gdb-adapter`#367`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/367): Allow empty `program` setting for remote `launch`/`attach` and for local `attach` configurations.
7-
- Fixes [cdt-gdb-adapter`#398`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/398): Add `target`>`serverDisconnectTimeout` setting to configure timeout for graceful gdbserver disconnect.
21+
- Fixes [cdt-gdb-adapter `#367`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/367): Allow empty `program` setting for remote `launch`/`attach` and for local `attach` configurations.
22+
- Fixes [cdt-gdb-adapter `#398`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/398): Add `target`>`serverDisconnectTimeout` setting to configure timeout for graceful gdbserver disconnect.
823
- Update to cdt-gdb-adapter v1.2.0
924
- Fixes [`#173`](https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode/issues/173): Add `target`>`watchServerProcess` setting to ignore early exit of `server` executable, e.g. if a launcher for actual gdbserver.
1025
- Fixes [cdt-gdb-adapter `#330`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/330) / [`#151`](https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode/issues/151): Cannot remove breakpoint when debugging (Windows, Theia).
11-
- Fixes [cdt-gdb-adapter`#362`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/362): Cannot execute CLI commands like `> interrupt` from Debug Console while CPU is running.
26+
- Fixes [cdt-gdb-adapter `#362`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/362): Cannot execute CLI commands like `> interrupt` from Debug Console while CPU is running.
1227
**Note**: Depends on whether a blocking command was executed from CLI before.
13-
- Fixes [cdt-gdb-adapter`#367`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/367): Debugging with `gdbtarget` fails if `program` is omitted, despite user doc claiming it's optional.
14-
- Fixes [cdt-gdb-adapter`#398`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/398): Give gdbserver time to gracefully disconnect before terminating it.
28+
- Fixes [cdt-gdb-adapter `#367`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/367): Debugging with `gdbtarget` fails if `program` is omitted, despite user doc claiming it's optional.
29+
- Fixes [cdt-gdb-adapter `#398`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/398): Give gdbserver time to gracefully disconnect before terminating it.
1530
- Enhancement: Improve error message if setting more HW breakpoints than supported by target.
1631
- Enhancement: Improve error message on `-target-select` timeout on Windows.
1732

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cdt-gdb-vscode",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"displayName": "CDT GDB Debug Adapter Extension",
55
"description": "CDT GDB debug adapter extension for Visual Studio Code",
66
"publisher": "eclipse-cdt",
@@ -791,7 +791,7 @@
791791
},
792792
"dependencies": {
793793
"cdt-amalgamator": "^0.0.11",
794-
"cdt-gdb-adapter": "^1.2.0",
794+
"cdt-gdb-adapter": "^1.3.0",
795795
"react": "^19.1.0",
796796
"react-dom": "^19.1.0"
797797
},

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1203,10 +1203,10 @@ cdt-amalgamator@^0.0.11:
12031203
"@vscode/debugadapter-testsupport" "^1.59.0"
12041204
"@vscode/debugprotocol" "^1.59.0"
12051205

1206-
cdt-gdb-adapter@^1.2.0:
1207-
version "1.2.0"
1208-
resolved "https://registry.yarnpkg.com/cdt-gdb-adapter/-/cdt-gdb-adapter-1.2.0.tgz#1e6ff7fff9b59ed3c6ae494ce13ab076890190e8"
1209-
integrity sha512-9rL8rnkO6IGJGRDMS303AqJ3kfIma9jpyjarKGrqHRVi14oXwsVsEa8sfPKTFyc39q797gy76l4ZoCgqi9ug/Q==
1206+
cdt-gdb-adapter@^1.3.0:
1207+
version "1.3.0"
1208+
resolved "https://registry.yarnpkg.com/cdt-gdb-adapter/-/cdt-gdb-adapter-1.3.0.tgz#3f544d87a587b75e361bdb73eeb4f87346e3bfe1"
1209+
integrity sha512-fXYO5DRwopragT6Ld5dX4o3Omk77AJlCnw3DnLmWYnJO5U/HYhH2dxZGhuiq07U6yriynFwiDK+PC2HwMdJETA==
12101210
dependencies:
12111211
"@vscode/debugadapter" "^1.68.0"
12121212
"@vscode/debugprotocol" "^1.68.0"

0 commit comments

Comments
 (0)