robotcode 0.46.0__tar.gz → 0.47.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {robotcode-0.46.0 → robotcode-0.47.0}/CHANGELOG.md +20 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/PKG-INFO +11 -11
- {robotcode-0.46.0 → robotcode-0.47.0}/pyproject.toml +9 -9
- {robotcode-0.46.0 → robotcode-0.47.0}/src/robotcode/cli/__init__.py +2 -0
- robotcode-0.47.0/src/robotcode/cli/__version__.py +1 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/src/robotcode/cli/commands/config.py +2 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/src/robotcode/cli/commands/profiles.py +2 -0
- robotcode-0.46.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.46.0 → robotcode-0.47.0}/.gitignore +0 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/LICENSE.txt +0 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/README.md +0 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/hatch.toml +0 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.46.0 → robotcode-0.47.0}/src/robotcode/cli/py.typed +0 -0
@@ -4,6 +4,26 @@ All notable changes to the "robotcode" extension will be documented in this file
|
|
4
4
|
|
5
5
|
<!--next-version-placeholder-->
|
6
6
|
|
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
|
+
|
7
27
|
## v0.46.0 (2023-07-05)
|
8
28
|
|
9
29
|
### Feature
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.47.0
|
4
4
|
Summary: Language server, debugger and tools for Robot Framework
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
6
6
|
Project-URL: Donate, https://github.com/sponsors/d-biehl
|
@@ -33,33 +33,33 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
33
33
|
Classifier: Topic :: Utilities
|
34
34
|
Classifier: Typing :: Typed
|
35
35
|
Requires-Python: >=3.8
|
36
|
-
Requires-Dist: robotcode-plugin==0.
|
37
|
-
Requires-Dist: robotcode-robot==0.
|
36
|
+
Requires-Dist: robotcode-plugin==0.47.0
|
37
|
+
Requires-Dist: robotcode-robot==0.47.0
|
38
38
|
Provides-Extra: all
|
39
39
|
Requires-Dist: docutils; extra == 'all'
|
40
40
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
41
41
|
Requires-Dist: rich; extra == 'all'
|
42
|
-
Requires-Dist: robotcode-analyze==0.
|
43
|
-
Requires-Dist: robotcode-debugger==0.
|
44
|
-
Requires-Dist: robotcode-language-server==0.
|
45
|
-
Requires-Dist: robotcode-runner==0.
|
42
|
+
Requires-Dist: robotcode-analyze==0.47.0; extra == 'all'
|
43
|
+
Requires-Dist: robotcode-debugger==0.47.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-language-server==0.47.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-runner==0.47.0; extra == 'all'
|
46
46
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
47
47
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
48
48
|
Requires-Dist: tomli-w; extra == 'all'
|
49
49
|
Provides-Extra: analyze
|
50
|
-
Requires-Dist: robotcode-analyze==0.
|
50
|
+
Requires-Dist: robotcode-analyze==0.47.0; extra == 'analyze'
|
51
51
|
Provides-Extra: colored
|
52
52
|
Requires-Dist: rich; extra == 'colored'
|
53
53
|
Provides-Extra: debugger
|
54
|
-
Requires-Dist: robotcode-debugger==0.
|
54
|
+
Requires-Dist: robotcode-debugger==0.47.0; extra == 'debugger'
|
55
55
|
Provides-Extra: languageserver
|
56
|
-
Requires-Dist: robotcode-language-server==0.
|
56
|
+
Requires-Dist: robotcode-language-server==0.47.0; extra == 'languageserver'
|
57
57
|
Provides-Extra: lint
|
58
58
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
59
59
|
Provides-Extra: rest
|
60
60
|
Requires-Dist: docutils; extra == 'rest'
|
61
61
|
Provides-Extra: runner
|
62
|
-
Requires-Dist: robotcode-runner==0.
|
62
|
+
Requires-Dist: robotcode-runner==0.47.0; extra == 'runner'
|
63
63
|
Provides-Extra: tidy
|
64
64
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
65
65
|
Provides-Extra: toml
|
@@ -49,7 +49,7 @@ classifiers = [
|
|
49
49
|
"Framework :: Robot Framework :: Tool",
|
50
50
|
]
|
51
51
|
requires-python = ">=3.8"
|
52
|
-
dependencies = ["robotcode-plugin==0.
|
52
|
+
dependencies = ["robotcode-plugin==0.47.0", "robotcode-robot==0.47.0"]
|
53
53
|
dynamic = ["version"]
|
54
54
|
|
55
55
|
|
@@ -66,10 +66,10 @@ robotcode = "robotcode.cli.__main__:main"
|
|
66
66
|
|
67
67
|
|
68
68
|
[project.optional-dependencies]
|
69
|
-
debugger = ["robotcode-debugger==0.
|
70
|
-
languageserver = ["robotcode-language-server==0.
|
71
|
-
runner = ["robotcode-runner==0.
|
72
|
-
analyze = ["robotcode-analyze==0.
|
69
|
+
debugger = ["robotcode-debugger==0.47.0"]
|
70
|
+
languageserver = ["robotcode-language-server==0.47.0"]
|
71
|
+
runner = ["robotcode-runner==0.47.0"]
|
72
|
+
analyze = ["robotcode-analyze==0.47.0"]
|
73
73
|
yaml = ["PyYAML>=5.4"]
|
74
74
|
lint = ["robotframework-robocop>=2.0.0"]
|
75
75
|
tidy = ["robotframework-tidy>=2.0.0"]
|
@@ -77,10 +77,10 @@ rest = ["docutils"]
|
|
77
77
|
colored = ["rich"]
|
78
78
|
toml = ["tomli-w"]
|
79
79
|
all = [
|
80
|
-
"robotcode-debugger==0.
|
81
|
-
"robotcode-language-server==0.
|
82
|
-
"robotcode-runner==0.
|
83
|
-
"robotcode-analyze==0.
|
80
|
+
"robotcode-debugger==0.47.0",
|
81
|
+
"robotcode-language-server==0.47.0",
|
82
|
+
"robotcode-runner==0.47.0",
|
83
|
+
"robotcode-analyze==0.47.0",
|
84
84
|
"PyYAML>=5.4",
|
85
85
|
"robotframework-robocop>=2.0.0",
|
86
86
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.47.0"
|
@@ -15,6 +15,8 @@ from robotcode.robot.config.loader import (
|
|
15
15
|
from robotcode.robot.config.model import LibDocProfile, RebotProfile, RobotConfig, TestDocProfile
|
16
16
|
from robotcode.robot.config.utils import get_config_files
|
17
17
|
|
18
|
+
# mypy: disable-error-code="misc, arg-type, attr-defined"
|
19
|
+
|
18
20
|
|
19
21
|
@click.group(
|
20
22
|
invoke_without_command=False,
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.46.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|