Skip to content

Commit b0e6135

Browse files
semantic-released-biehl
authored andcommitted
0.47.0
Automatically generated by python-semantic-release
1 parent 2969379 commit b0e6135

File tree

19 files changed

+51
-31
lines changed

19 files changed

+51
-31
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to the "robotcode" extension will be documented in this file
44

55
<!--next-version-placeholder-->
66

7+
## v0.47.0 (2023-07-10)
8+
9+
### Feature
10+
11+
* **debugger:** Expanding dict and list variables in the variable view of the debugger, this also works in hints over variables, in the watch view and also by evaluating expressions/keywords in the command line of the debugger ([`2969379`](https://github.com/d-biehl/robotcode/commit/296937934db8997891df61c600953fc166a2dec2))
12+
* Show deprecation information if using `Force Tags` and `Default Tags` ([`f23e5d0`](https://github.com/d-biehl/robotcode/commit/f23e5d0ec2420561589ca24240e449defe7fd373))
13+
* Complete reserved tags in Tags settings ([`483b9ac`](https://github.com/d-biehl/robotcode/commit/483b9ac539daca8129945aec31735fd51bf00c6b))
14+
* Show more informations in hint over a variables import ([`735a209`](https://github.com/d-biehl/robotcode/commit/735a209801ab3014ec417a583279929a9d88c1b2))
15+
* **debugger:** Simple keyword completion in debugger ([`6b1ffb6`](https://github.com/d-biehl/robotcode/commit/6b1ffb6ae5738cd9fcf674729baecbb3964d0729))
16+
* **debugger:** Switching between "keyword" and "expression" mode by typing `# exprmode` into debug console (default: keyword mode) ([`1cc6680`](https://github.com/d-biehl/robotcode/commit/1cc668006b4d04911cae419d3dd53916c7dd68fe))
17+
* **debugger:** Debugger does not stop on errors caught in TRY/EXCEPT blocks ([`043842c`](https://github.com/d-biehl/robotcode/commit/043842c0709867fdc18d9b4417c7db00cead04fb))
18+
19+
### Fix
20+
21+
* **debugger:** Hide uncaught exceptions now also works correctly for RF >=5 and < 6.1 ([`f784613`](https://github.com/d-biehl/robotcode/commit/f7846138d2f668625d1afc2ec46f246338cc084e))
22+
* **debugger:** (re)disable attachPython by default ([`26ee516`](https://github.com/d-biehl/robotcode/commit/26ee516b9dda5912fff18d2b9e4f3126b08fcc0a))
23+
* Correct message output in test results view ([`b18856f`](https://github.com/d-biehl/robotcode/commit/b18856f1232650e91de3abf1ee8071c750fb689c))
24+
* Stabilize debugger with new vscode version > 1.79 ([`d5ad4ba`](https://github.com/d-biehl/robotcode/commit/d5ad4bad6ffe8f210cb6b0f10ca33ccdb269a457))
25+
* Update diagnostic for Robocop 4.0 release after disablers module was rewritten ([`6636bfd`](https://github.com/d-biehl/robotcode/commit/6636bfd352927c5721f9c34edfc99b2635b99937))
26+
727
## v0.46.0 (2023-07-05)
828

929
### Feature

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "RobotFramework support for Visual Studio Code",
55
"icon": "images/icon.png",
66
"publisher": "d-biehl",
7-
"version": "0.46.0",
7+
"version": "0.47.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/d-biehl/"

packages/analyze/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"robotframework>=4.1.0",
30-
"robotcode-plugin==0.46.0",
31-
"robotcode-robot==0.46.0",
30+
"robotcode-plugin==0.47.0",
31+
"robotcode-robot==0.47.0",
3232
]
3333
dynamic = ["version"]
3434

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.46.0"
1+
__version__ = "0.47.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.46.0"
1+
__version__ = "0.47.0"

packages/debugger/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ classifiers = [
2828
dynamic = ["version"]
2929
dependencies = [
3030
"robotframework>=4.1.0",
31-
"robotcode-jsonrpc2==0.46.0",
32-
"robotcode-runner==0.46.0",
31+
"robotcode-jsonrpc2==0.47.0",
32+
"robotcode-runner==0.47.0",
3333
]
3434

3535
[project.optional-dependencies]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.46.0"
1+
__version__ = "0.47.0"

packages/jsonrpc2/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
"Framework :: Robot Framework",
2626
"Framework :: Robot Framework :: Tool",
2727
]
28-
dependencies = ["robotcode-core==0.46.0"]
28+
dependencies = ["robotcode-core==0.47.0"]
2929
dynamic = ["version"]
3030

3131
[project.urls]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.46.0"
1+
__version__ = "0.47.0"

packages/language_server/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"robotframework>=4.1.0",
30-
"robotcode-jsonrpc2==0.46.0",
31-
"robotcode==0.46.0",
30+
"robotcode-jsonrpc2==0.47.0",
31+
"robotcode==0.47.0",
3232
]
3333
dynamic = ["version"]
3434

0 commit comments

Comments
 (0)