robotcode 2.0.3__tar.gz → 2.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {robotcode-2.0.3 → robotcode-2.1.0}/CHANGELOG.md +47 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/PKG-INFO +17 -17
- {robotcode-2.0.3 → robotcode-2.1.0}/hatch.toml +5 -5
- {robotcode-2.0.3 → robotcode-2.1.0}/pyproject.toml +57 -40
- robotcode-2.1.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-2.0.3/src/robotcode/cli/__version__.py +0 -1
- {robotcode-2.0.3 → robotcode-2.1.0}/.gitignore +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/LICENSE.txt +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/README.md +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-2.0.3 → robotcode-2.1.0}/src/robotcode/cli/py.typed +0 -0
|
@@ -2,6 +2,53 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.1.0](https://github.com/robotcodedev/robotcode/compare/v2.0.4..v2.1.0) - 2025-12-02
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
- Correct some stylings ([5edb90c](https://github.com/robotcodedev/robotcode/commit/5edb90c90700bb0fea5773f102171e14da8f6abd))
|
|
10
|
+
- Make the hero image a bit more christmassy ([4fd8412](https://github.com/robotcodedev/robotcode/commit/4fd841257ed6f9297799a7b9ab1ce829c6837266))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- **vscode:** Add option to control extension activation per scope ([7af4583](https://github.com/robotcodedev/robotcode/commit/7af4583367c1746bb089eedb085fcb6d5f9fe966))
|
|
16
|
+
|
|
17
|
+
Add new `robotcode.disableExtension` configuration setting that allows
|
|
18
|
+
users to disable or enable the RobotCode extension at any scope level.
|
|
19
|
+
|
|
20
|
+
With resource scope, users can:
|
|
21
|
+
- Disable the extension globally (user settings) and enable it for
|
|
22
|
+
specific workspaces or folders
|
|
23
|
+
- Disable the extension for a workspace and enable it for specific
|
|
24
|
+
folders within
|
|
25
|
+
- Disable the extension only for specific folders in multi-root
|
|
26
|
+
workspaces
|
|
27
|
+
|
|
28
|
+
This is useful in:
|
|
29
|
+
- Large workspaces where RobotCode is not needed everywhere
|
|
30
|
+
- Multi-root workspaces with mixed project types
|
|
31
|
+
- Environments where users want opt-in rather than opt-out behavior
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### Performance
|
|
36
|
+
|
|
37
|
+
- **vscode:** Cache getRobotCodeProfiles results ([8aa6db5](https://github.com/robotcodedev/robotcode/commit/8aa6db5f39252106d138d49a40f8050dbe00da81))
|
|
38
|
+
|
|
39
|
+
Add caching for robot.toml profiles to avoid spawning a new process
|
|
40
|
+
on every call. Cache is invalidated on language client state changes.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## [2.0.4](https://github.com/robotcodedev/robotcode/compare/v2.0.3..v2.0.4) - 2025-11-25
|
|
45
|
+
|
|
46
|
+
### Documentation
|
|
47
|
+
|
|
48
|
+
- Add diagnostics modifiers section to reference documentation ([52b1deb](https://github.com/robotcodedev/robotcode/commit/52b1debd4dc337221e195d86a56677b4c300f27c))
|
|
49
|
+
- Correct command syntax for running tests with overridden variables ([bfc6801](https://github.com/robotcodedev/robotcode/commit/bfc6801da41c8068b248c918955d581b55a628d2))
|
|
50
|
+
|
|
51
|
+
|
|
5
52
|
## [2.0.3](https://github.com/robotcodedev/robotcode/compare/v2.0.2..v2.0.3) - 2025-11-20
|
|
6
53
|
|
|
7
54
|
### Bug Fixes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: Command line interface for RobotCode
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -33,38 +33,38 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
|
33
33
|
Classifier: Topic :: Utilities
|
|
34
34
|
Classifier: Typing :: Typed
|
|
35
35
|
Requires-Python: >=3.10
|
|
36
|
-
Requires-Dist: robotcode-core
|
|
37
|
-
Requires-Dist: robotcode-plugin
|
|
38
|
-
Requires-Dist: robotcode-robot
|
|
36
|
+
Requires-Dist: robotcode-core
|
|
37
|
+
Requires-Dist: robotcode-plugin
|
|
38
|
+
Requires-Dist: robotcode-robot
|
|
39
39
|
Provides-Extra: all
|
|
40
40
|
Requires-Dist: docutils; extra == 'all'
|
|
41
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
|
42
42
|
Requires-Dist: rich; extra == 'all'
|
|
43
|
-
Requires-Dist: robotcode-analyze
|
|
44
|
-
Requires-Dist: robotcode-debugger
|
|
45
|
-
Requires-Dist: robotcode-language-server
|
|
46
|
-
Requires-Dist: robotcode-repl
|
|
47
|
-
Requires-Dist: robotcode-repl
|
|
48
|
-
Requires-Dist: robotcode-runner
|
|
49
|
-
Requires-Dist: robotframework-robocop>=
|
|
43
|
+
Requires-Dist: robotcode-analyze; extra == 'all'
|
|
44
|
+
Requires-Dist: robotcode-debugger; extra == 'all'
|
|
45
|
+
Requires-Dist: robotcode-language-server; extra == 'all'
|
|
46
|
+
Requires-Dist: robotcode-repl; extra == 'all'
|
|
47
|
+
Requires-Dist: robotcode-repl-server; extra == 'all'
|
|
48
|
+
Requires-Dist: robotcode-runner; extra == 'all'
|
|
49
|
+
Requires-Dist: robotframework-robocop>=6.0.0; extra == 'all'
|
|
50
50
|
Provides-Extra: analyze
|
|
51
|
-
Requires-Dist: robotcode-analyze==2.0
|
|
51
|
+
Requires-Dist: robotcode-analyze==2.1.0; extra == 'analyze'
|
|
52
52
|
Provides-Extra: colored
|
|
53
53
|
Requires-Dist: rich; extra == 'colored'
|
|
54
54
|
Provides-Extra: debugger
|
|
55
|
-
Requires-Dist: robotcode-debugger==2.0
|
|
55
|
+
Requires-Dist: robotcode-debugger==2.1.0; extra == 'debugger'
|
|
56
56
|
Provides-Extra: languageserver
|
|
57
|
-
Requires-Dist: robotcode-language-server==2.0
|
|
57
|
+
Requires-Dist: robotcode-language-server==2.1.0; extra == 'languageserver'
|
|
58
58
|
Provides-Extra: lint
|
|
59
59
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
|
60
60
|
Provides-Extra: repl
|
|
61
|
-
Requires-Dist: robotcode-repl==2.0
|
|
61
|
+
Requires-Dist: robotcode-repl==2.1.0; extra == 'repl'
|
|
62
62
|
Provides-Extra: replserver
|
|
63
|
-
Requires-Dist: robotcode-repl-server==2.0
|
|
63
|
+
Requires-Dist: robotcode-repl-server==2.1.0; extra == 'replserver'
|
|
64
64
|
Provides-Extra: rest
|
|
65
65
|
Requires-Dist: docutils; extra == 'rest'
|
|
66
66
|
Provides-Extra: runner
|
|
67
|
-
Requires-Dist: robotcode-runner==2.0
|
|
67
|
+
Requires-Dist: robotcode-runner==2.1.0; extra == 'runner'
|
|
68
68
|
Provides-Extra: yaml
|
|
69
69
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
|
70
70
|
Description-Content-Type: text/markdown
|
|
@@ -28,9 +28,10 @@ dependencies = [
|
|
|
28
28
|
"robotremoteserver",
|
|
29
29
|
"apischema",
|
|
30
30
|
]
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
dependency-groups = ["all"]
|
|
32
|
+
workspace.members = [
|
|
33
|
+
"packages/*",
|
|
34
|
+
]
|
|
34
35
|
|
|
35
36
|
[envs.default.scripts]
|
|
36
37
|
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=robotcode --cov=tests {args}"
|
|
@@ -39,7 +40,6 @@ test = "pytest {args}"
|
|
|
39
40
|
test-reset = "pytest --regtest2-reset {args}"
|
|
40
41
|
create-json-schema = "python ./scripts/create_robot_toml_json_schema.py"
|
|
41
42
|
generate-rf-options = "python ./scripts/generate_rf_options.py"
|
|
42
|
-
install-packages = "python ./scripts/install_packages.py"
|
|
43
43
|
generate-tmlanguage = "python ./scripts/generate_tmlanguage.py"
|
|
44
44
|
|
|
45
45
|
[envs.rfbeta]
|
|
@@ -131,7 +131,7 @@ extra-dependencies = [
|
|
|
131
131
|
"types-docutils",
|
|
132
132
|
"types-setuptools",
|
|
133
133
|
]
|
|
134
|
-
|
|
134
|
+
dependency-groups = ["all"]
|
|
135
135
|
|
|
136
136
|
|
|
137
137
|
[envs.lint.scripts]
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["hatchling>=1.
|
|
2
|
+
requires = ["hatchling>=1.28.0"]
|
|
3
3
|
build-backend = "hatchling.build"
|
|
4
4
|
|
|
5
|
-
|
|
6
5
|
[project]
|
|
7
6
|
name = "robotcode"
|
|
8
7
|
description = "Command line interface for RobotCode"
|
|
@@ -49,13 +48,56 @@ classifiers = [
|
|
|
49
48
|
"Framework :: Robot Framework :: Tool",
|
|
50
49
|
]
|
|
51
50
|
requires-python = ">=3.10"
|
|
52
|
-
dependencies = [
|
|
53
|
-
"robotcode-core==2.0.3",
|
|
54
|
-
"robotcode-plugin==2.0.3",
|
|
55
|
-
"robotcode-robot==2.0.3",
|
|
56
|
-
]
|
|
51
|
+
dependencies = ["robotcode-core", "robotcode-plugin", "robotcode-robot"]
|
|
57
52
|
dynamic = ["version"]
|
|
58
53
|
|
|
54
|
+
[project.optional-dependencies]
|
|
55
|
+
debugger = ["robotcode-debugger==2.1.0"]
|
|
56
|
+
languageserver = ["robotcode-language-server==2.1.0"]
|
|
57
|
+
runner = ["robotcode-runner==2.1.0"]
|
|
58
|
+
analyze = ["robotcode-analyze==2.1.0"]
|
|
59
|
+
yaml = ["PyYAML>=5.4"]
|
|
60
|
+
lint = ["robotframework-robocop>=2.0.0"]
|
|
61
|
+
rest = ["docutils"]
|
|
62
|
+
repl = ["robotcode-repl==2.1.0"]
|
|
63
|
+
replserver = ["robotcode-repl-server==2.1.0"]
|
|
64
|
+
colored = ["rich"]
|
|
65
|
+
all = [
|
|
66
|
+
"robotcode-debugger",
|
|
67
|
+
"robotcode-language-server",
|
|
68
|
+
"robotcode-runner",
|
|
69
|
+
"robotcode-analyze",
|
|
70
|
+
"robotcode-repl",
|
|
71
|
+
"robotcode-repl-server",
|
|
72
|
+
"PyYAML>=5.4",
|
|
73
|
+
"robotframework-robocop>=6.0.0",
|
|
74
|
+
"docutils",
|
|
75
|
+
"rich",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[dependency-groups]
|
|
79
|
+
debugger = ["robotcode-debugger"]
|
|
80
|
+
languageserver = ["robotcode-language-server"]
|
|
81
|
+
runner = ["robotcode-runner"]
|
|
82
|
+
analyze = ["robotcode-analyze"]
|
|
83
|
+
replserver = ["robotcode-repl-server"]
|
|
84
|
+
repl = ["robotcode-repl"]
|
|
85
|
+
yaml = ["PyYAML>=5.4"]
|
|
86
|
+
lint = ["robotframework-robocop>=6.0.0"]
|
|
87
|
+
rest = ["docutils"]
|
|
88
|
+
colored = ["rich"]
|
|
89
|
+
all = [
|
|
90
|
+
{ "include-group" = "debugger" },
|
|
91
|
+
{ "include-group" = "languageserver" },
|
|
92
|
+
{ "include-group" = "runner" },
|
|
93
|
+
{ "include-group" = "analyze" },
|
|
94
|
+
{ "include-group" = "repl" },
|
|
95
|
+
{ "include-group" = "replserver" },
|
|
96
|
+
{ "include-group" = "yaml" },
|
|
97
|
+
{ "include-group" = "lint" },
|
|
98
|
+
{ "include-group" = "rest" },
|
|
99
|
+
{ "include-group" = "colored" },
|
|
100
|
+
]
|
|
59
101
|
|
|
60
102
|
[project.urls]
|
|
61
103
|
Homepage = "https://robotcode.io"
|
|
@@ -69,31 +111,6 @@ Source = "https://github.com/robotcodedev/robotcode"
|
|
|
69
111
|
robotcode = "robotcode.cli.__main__:main"
|
|
70
112
|
|
|
71
113
|
|
|
72
|
-
[project.optional-dependencies]
|
|
73
|
-
debugger = ["robotcode-debugger==2.0.3"]
|
|
74
|
-
languageserver = ["robotcode-language-server==2.0.3"]
|
|
75
|
-
runner = ["robotcode-runner==2.0.3"]
|
|
76
|
-
analyze = ["robotcode-analyze==2.0.3"]
|
|
77
|
-
yaml = ["PyYAML>=5.4"]
|
|
78
|
-
lint = ["robotframework-robocop>=2.0.0"]
|
|
79
|
-
rest = ["docutils"]
|
|
80
|
-
repl = ["robotcode-repl==2.0.3"]
|
|
81
|
-
replserver = ["robotcode-repl-server==2.0.3"]
|
|
82
|
-
colored = ["rich"]
|
|
83
|
-
all = [
|
|
84
|
-
"robotcode-debugger==2.0.3",
|
|
85
|
-
"robotcode-language-server==2.0.3",
|
|
86
|
-
"robotcode-runner==2.0.3",
|
|
87
|
-
"robotcode-analyze==2.0.3",
|
|
88
|
-
"robotcode-repl==2.0.3",
|
|
89
|
-
"robotcode-repl-server==2.0.3",
|
|
90
|
-
"PyYAML>=5.4",
|
|
91
|
-
"robotframework-robocop>=2.0.0",
|
|
92
|
-
"docutils",
|
|
93
|
-
"rich",
|
|
94
|
-
]
|
|
95
|
-
|
|
96
|
-
|
|
97
114
|
[tool.semantic_release]
|
|
98
115
|
version_variable = [
|
|
99
116
|
"src/robotcode/cli/__version__.py:__version__",
|
|
@@ -257,13 +274,7 @@ mypy_path = [
|
|
|
257
274
|
|
|
258
275
|
|
|
259
276
|
[[tool.mypy.overrides]]
|
|
260
|
-
module = [
|
|
261
|
-
"robot.*",
|
|
262
|
-
"robotremoteserver.*",
|
|
263
|
-
"debugpy.*",
|
|
264
|
-
"robocop.*",
|
|
265
|
-
"pluggy",
|
|
266
|
-
]
|
|
277
|
+
module = ["robot.*", "robotremoteserver.*", "debugpy.*", "robocop.*", "pluggy"]
|
|
267
278
|
ignore_missing_imports = true
|
|
268
279
|
no_implicit_reexport = false
|
|
269
280
|
|
|
@@ -287,7 +298,13 @@ no_implicit_reexport = false
|
|
|
287
298
|
#include_runtime_files = false
|
|
288
299
|
|
|
289
300
|
[tool.pyright]
|
|
290
|
-
exclude = [
|
|
301
|
+
exclude = [
|
|
302
|
+
"**/.hatch",
|
|
303
|
+
"**/node_modules",
|
|
304
|
+
"**/__pycache__",
|
|
305
|
+
"bundled/libs",
|
|
306
|
+
"intellij-client/build",
|
|
307
|
+
]
|
|
291
308
|
typeCheckingMode = "off"
|
|
292
309
|
pythonVersion = "3.10"
|
|
293
310
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.1.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.0.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|