Skip to content

Commit 0e1244b

Browse files
authored
v1.5.0 Release Preparations (#468)
* v1.5.0 and changelog * Update transient dependencies to fix dependabot security alerts (js-yaml v3.14.2, v4.1.1) --------- Signed-off-by: Jens Reinecke <[email protected]>
1 parent fced49e commit 0e1244b

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Change Log
22

3-
## Unreleased
3+
## 1.5.0
44

5-
- Fixes [`463`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/463): Cannot use custom reset while CPU is running.
6-
- Fixes [`465`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/465): UTF-8 'Failed to decode cstring' errors for GDB with CP1252 support only.
5+
- Fixes [`#463`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/463): Cannot use custom reset while CPU is running.
6+
- Fixes [`#465`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/465): UTF-8 'Failed to decode cstring' errors for GDB with CP1252 support only.
7+
- Fixes [`#467`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/pull/467): Skip pausing target at startup if request has no breakpoints
8+
- Notable code changes:
9+
- New Features:
10+
- Adds `MIParser.hostCharset` getter/setter methods to configure host character set for decode of non-ASCII characters in c-strings.
11+
- Adds `sendCommandToGdb` and `sendCommandToOtherGdbs` to `GDBDebugSessionBase` to refactor GDB CLI command processing, and to synchronize use of selected GDB CLI commands between main and auxiliary GDB.
12+
- Adds `GDBDebugSessionBase.pauseIfRunning` to pause a running target without expectation of a subsequent continue operation.
713

814
## 1.4.1
915

10-
- Fixes [`400`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/400): Evaluation of variables to support RTOS Views extension.
16+
- Fixes [`#400`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/400): Evaluation of variables to support RTOS Views extension.
1117

1218
## 1.4.0
1319

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cdt-gdb-adapter",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"description": "gdb adapter implementing the debug adapter protocol",
55
"main": "dist/index.js",
66
"browser": "dist/browser/web.js",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2954,17 +2954,17 @@ js-tokens@^4.0.0:
29542954
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
29552955

29562956
js-yaml@^3.13.1:
2957-
version "3.14.1"
2958-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
2959-
integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
2957+
version "3.14.2"
2958+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.2.tgz#77485ce1dd7f33c061fd1b16ecea23b55fcb04b0"
2959+
integrity sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==
29602960
dependencies:
29612961
argparse "^1.0.7"
29622962
esprima "^4.0.0"
29632963

29642964
js-yaml@^4.1.0:
2965-
version "4.1.0"
2966-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
2967-
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
2965+
version "4.1.1"
2966+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b"
2967+
integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==
29682968
dependencies:
29692969
argparse "^2.0.1"
29702970

0 commit comments

Comments
 (0)