robotcode 0.99.0__tar.gz → 0.100.1__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-0.99.0 → robotcode-0.100.1}/CHANGELOG.md +30 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/PKG-INFO +17 -14
- {robotcode-0.99.0 → robotcode-0.100.1}/hatch.toml +1 -1
- {robotcode-0.99.0 → robotcode-0.100.1}/pyproject.toml +17 -13
- robotcode-0.100.1/src/robotcode/cli/__version__.py +1 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/src/robotcode/cli/commands/profiles.py +1 -1
- robotcode-0.99.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.99.0 → robotcode-0.100.1}/.gitignore +0 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/LICENSE.txt +0 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/README.md +0 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.99.0 → robotcode-0.100.1}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,36 @@
|
|
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
|
+
## [0.100.1](https://github.com/robotcodedev/robotcode/compare/v0.100.0..v0.100.1) - 2024-12-06
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **jsonrpc2:** Corrected starting server in pipe mode ([e69f686](https://github.com/robotcodedev/robotcode/commit/e69f68664687be3d6af16c4f8a71972a34808c0a))
|
10
|
+
- **vscode:** Update title for creating new Robot Framework Notebook ([86c48f8](https://github.com/robotcodedev/robotcode/commit/86c48f8490aabecace6d3cd24faf619d02c1a45e))
|
11
|
+
|
12
|
+
|
13
|
+
## [0.100.0](https://github.com/robotcodedev/robotcode/compare/v0.99.0..v0.100.0) - 2024-12-05
|
14
|
+
|
15
|
+
### Bug Fixes
|
16
|
+
|
17
|
+
- **analyze:** Corrected statistics about analyzed files ([18b6cb8](https://github.com/robotcodedev/robotcode/commit/18b6cb878e893b32ce26b16c3de0c6e628367fde))
|
18
|
+
- **analyzer:** Correct handling of variables in embedded args in keyword calls ([2c8ed56](https://github.com/robotcodedev/robotcode/commit/2c8ed5662be1e8621d7d9c742275ccaf1809d06c))
|
19
|
+
- **config:** Corrected handling of relative items in python path and other variables if current folder is different then root folder of the project ([66a94bc](https://github.com/robotcodedev/robotcode/commit/66a94bc993a27d8fe5cec13813e524b1099509c6))
|
20
|
+
- **vscode:** Corrected highlightning of bold/italic in documentation tags ([170287d](https://github.com/robotcodedev/robotcode/commit/170287db04ec811e39b7ec5e7bd853ae9d98ec7c))
|
21
|
+
|
22
|
+
|
23
|
+
### Documentation
|
24
|
+
|
25
|
+
- Update some docs ([639314b](https://github.com/robotcodedev/robotcode/commit/639314b9e526e7e3d5820631db0c7c777ac9d648))
|
26
|
+
|
27
|
+
|
28
|
+
### Features
|
29
|
+
|
30
|
+
- **analyzer:** Add error codes `VariableNotReplaced` and `EnvironmentVariableNotReplaced` for variables not found/replaced in documentation, tags, and metadata ([c5f766f](https://github.com/robotcodedev/robotcode/commit/c5f766f036e49153f318e91ddefb68c975668669))
|
31
|
+
- **vscode:** Added some better file icons ([39fad12](https://github.com/robotcodedev/robotcode/commit/39fad12e6cc8d1246dc45c8e843fa1c3b046a491))
|
32
|
+
- **vscode:** Preview of Robot Framework Notebook support for VSCode ([9185ccd](https://github.com/robotcodedev/robotcode/commit/9185ccd84dbb9f2f5cd2aba4212598abd93ef0f1))
|
33
|
+
|
34
|
+
|
5
35
|
## [0.99.0](https://github.com/robotcodedev/robotcode/compare/v0.98.0..v0.99.0) - 2024-11-20
|
6
36
|
|
7
37
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.100.1
|
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,36 +33,39 @@ 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-core==0.
|
37
|
-
Requires-Dist: robotcode-plugin==0.
|
38
|
-
Requires-Dist: robotcode-robot==0.
|
36
|
+
Requires-Dist: robotcode-core==0.100.1
|
37
|
+
Requires-Dist: robotcode-plugin==0.100.1
|
38
|
+
Requires-Dist: robotcode-robot==0.100.1
|
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==0.
|
44
|
-
Requires-Dist: robotcode-debugger==0.
|
45
|
-
Requires-Dist: robotcode-language-server==0.
|
46
|
-
Requires-Dist: robotcode-repl==0.
|
47
|
-
Requires-Dist: robotcode-
|
43
|
+
Requires-Dist: robotcode-analyze==0.100.1; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.100.1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.100.1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-repl-server==0.100.1; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl==0.100.1; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-runner==0.100.1; extra == 'all'
|
48
49
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
49
50
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
50
51
|
Provides-Extra: analyze
|
51
|
-
Requires-Dist: robotcode-analyze==0.
|
52
|
+
Requires-Dist: robotcode-analyze==0.100.1; extra == 'analyze'
|
52
53
|
Provides-Extra: colored
|
53
54
|
Requires-Dist: rich; extra == 'colored'
|
54
55
|
Provides-Extra: debugger
|
55
|
-
Requires-Dist: robotcode-debugger==0.
|
56
|
+
Requires-Dist: robotcode-debugger==0.100.1; extra == 'debugger'
|
56
57
|
Provides-Extra: languageserver
|
57
|
-
Requires-Dist: robotcode-language-server==0.
|
58
|
+
Requires-Dist: robotcode-language-server==0.100.1; extra == 'languageserver'
|
58
59
|
Provides-Extra: lint
|
59
60
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
60
61
|
Provides-Extra: repl
|
61
|
-
Requires-Dist: robotcode-repl==0.
|
62
|
+
Requires-Dist: robotcode-repl==0.100.1; extra == 'repl'
|
63
|
+
Provides-Extra: replserver
|
64
|
+
Requires-Dist: robotcode-repl-server==0.100.1; extra == 'replserver'
|
62
65
|
Provides-Extra: rest
|
63
66
|
Requires-Dist: docutils; extra == 'rest'
|
64
67
|
Provides-Extra: runner
|
65
|
-
Requires-Dist: robotcode-runner==0.
|
68
|
+
Requires-Dist: robotcode-runner==0.100.1; extra == 'runner'
|
66
69
|
Provides-Extra: tidy
|
67
70
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
68
71
|
Provides-Extra: yaml
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==0.
|
55
|
-
"robotcode-plugin==0.
|
56
|
-
"robotcode-robot==0.
|
54
|
+
"robotcode-core==0.100.1",
|
55
|
+
"robotcode-plugin==0.100.1",
|
56
|
+
"robotcode-robot==0.100.1",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,22 +71,24 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
71
|
|
72
72
|
|
73
73
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==0.
|
75
|
-
languageserver = ["robotcode-language-server==0.
|
76
|
-
runner = ["robotcode-runner==0.
|
77
|
-
analyze = ["robotcode-analyze==0.
|
74
|
+
debugger = ["robotcode-debugger==0.100.1"]
|
75
|
+
languageserver = ["robotcode-language-server==0.100.1"]
|
76
|
+
runner = ["robotcode-runner==0.100.1"]
|
77
|
+
analyze = ["robotcode-analyze==0.100.1"]
|
78
78
|
yaml = ["PyYAML>=5.4"]
|
79
79
|
lint = ["robotframework-robocop>=2.0.0"]
|
80
80
|
tidy = ["robotframework-tidy>=2.0.0"]
|
81
81
|
rest = ["docutils"]
|
82
|
-
repl = ["robotcode-repl==0.
|
82
|
+
repl = ["robotcode-repl==0.100.1"]
|
83
|
+
replserver = ["robotcode-repl-server==0.100.1"]
|
83
84
|
colored = ["rich"]
|
84
85
|
all = [
|
85
|
-
"robotcode-debugger==0.
|
86
|
-
"robotcode-language-server==0.
|
87
|
-
"robotcode-runner==0.
|
88
|
-
"robotcode-analyze==0.
|
89
|
-
"robotcode-repl==0.
|
86
|
+
"robotcode-debugger==0.100.1",
|
87
|
+
"robotcode-language-server==0.100.1",
|
88
|
+
"robotcode-runner==0.100.1",
|
89
|
+
"robotcode-analyze==0.100.1",
|
90
|
+
"robotcode-repl==0.100.1",
|
91
|
+
"robotcode-repl-server==0.100.1",
|
90
92
|
"PyYAML>=5.4",
|
91
93
|
"robotframework-robocop>=2.0.0",
|
92
94
|
"robotframework-tidy>=2.0.0",
|
@@ -262,6 +264,8 @@ mypy_path = [
|
|
262
264
|
"packages/robot/src",
|
263
265
|
"packages/runner/src",
|
264
266
|
"packages/analyze/src",
|
267
|
+
"packages/repl/src",
|
268
|
+
"packages/repl_server/src",
|
265
269
|
]
|
266
270
|
# allow_untyped_calls = true
|
267
271
|
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.100.1"
|
@@ -102,7 +102,7 @@ def list(app: Application, paths: List[Path], show_hidden: bool = False, sort_by
|
|
102
102
|
"precedence": v.precedence,
|
103
103
|
}
|
104
104
|
for k, v in (config.profiles or {}).items()
|
105
|
-
if show_hidden or not k.startswith("_") and not v.hidden
|
105
|
+
if show_hidden or (not k.startswith("_") and not v.hidden)
|
106
106
|
],
|
107
107
|
key=(
|
108
108
|
(lambda v: cast(Any, str(v.get("name", ""))))
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.99.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|