robotcode 0.95.2__tar.gz → 0.97.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-0.95.2 → robotcode-0.97.0}/CHANGELOG.md +34 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/PKG-INFO +14 -15
- {robotcode-0.95.2 → robotcode-0.97.0}/pyproject.toml +13 -13
- robotcode-0.97.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.95.2/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.95.2 → robotcode-0.97.0}/.gitignore +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/LICENSE.txt +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/README.md +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/hatch.toml +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.95.2 → robotcode-0.97.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,40 @@
|
|
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.97.0](https://github.com/robotcodedev/robotcode/compare/v0.96.0..v0.97.0) - 2024-11-13
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **langserver:** Support glob pattern in `robot.toml`s `python-path` setting ([f6e380c](https://github.com/robotcodedev/robotcode/commit/f6e380c624f3126cb960c576ca4e083c8fe9a0fc))
|
10
|
+
- **vscode:** Correct handling of comments in tmlanguage ([ce794bf](https://github.com/robotcodedev/robotcode/commit/ce794bfcb16481e14c3b003a8587060999f78d66))
|
11
|
+
|
12
|
+
|
13
|
+
### Documentation
|
14
|
+
|
15
|
+
- Expand documentation on `robotcode` packages, installation, and usage ([907fa8c](https://github.com/robotcodedev/robotcode/commit/907fa8c0b3c4d17b14fd1477f8acb4e7cd1aa401))
|
16
|
+
|
17
|
+
|
18
|
+
### Features
|
19
|
+
|
20
|
+
- **analyze:** `analyze code` command now also uses the settings in the `robot.toml` file. ([bd17a5d](https://github.com/robotcodedev/robotcode/commit/bd17a5d18372e0d1baa7b8e627e81c8d7639bab2))
|
21
|
+
- **analyze:** Add CLI options for `pythonpath`, `variable`, and `variablefile` to `analyze code` command; collect errors for unimportable command line variable files ([b4e6be4](https://github.com/robotcodedev/robotcode/commit/b4e6be4ea740808b07647d2eaf28e85fb486a0e0))
|
22
|
+
- **robot:** Display filename on TOML parsing error ([8c25db8](https://github.com/robotcodedev/robotcode/commit/8c25db81fb74ca9b0c647c434cb9ba9f344a54cd))
|
23
|
+
|
24
|
+
|
25
|
+
## [0.96.0](https://github.com/robotcodedev/robotcode/compare/v0.95.2..v0.96.0) - 2024-11-04
|
26
|
+
|
27
|
+
### Bug Fixes
|
28
|
+
|
29
|
+
- **vscode:** Corrected tmlanguage to color variables in variables section ([0e32e41](https://github.com/robotcodedev/robotcode/commit/0e32e4123a0b5ae73055c1ebcf1a9e2d8bb5d8ab))
|
30
|
+
- Corrected hash calculation for keyword matchers for keywords with embedded arguments for RF < 7 ([c58f622](https://github.com/robotcodedev/robotcode/commit/c58f622f1493d49d5b87e476b99965e3d2c935e6))
|
31
|
+
|
32
|
+
|
33
|
+
### Features
|
34
|
+
|
35
|
+
- **analyze:** Add command line support for static analysis of Robot Framework projects ([01a4c6d](https://github.com/robotcodedev/robotcode/commit/01a4c6dddc2c7ce7f2d4e63e31a5e3a01cec69f4))
|
36
|
+
- **vscode:** Connect vscode testrun to the debug session to link the lifecycle to of the session to the ui actions of the test run ([0d3bd27](https://github.com/robotcodedev/robotcode/commit/0d3bd272df53905942723069acc2dc6511674d3c))
|
37
|
+
|
38
|
+
|
5
39
|
## [0.95.2](https://github.com/robotcodedev/robotcode/compare/v0.95.1..v0.95.2) - 2024-10-28
|
6
40
|
|
7
41
|
### Performance
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.97.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
|
@@ -10,7 +10,6 @@ Project-URL: Issues, https://github.com/robotcodedev/robotcode/issues
|
|
10
10
|
Project-URL: Source, https://github.com/robotcodedev/robotcode
|
11
11
|
Author-email: Daniel Biehl <dbiehl@live.de>
|
12
12
|
License: Apache-2.0
|
13
|
-
License-File: LICENSE.txt
|
14
13
|
Keywords: Acceptance Test Driven Development,Acceptance Testing,BDD,BDT,Behavior Driven Testing,Data Driven,Debug Adapter Protocol,Keyword Driven,Language Server Protocol,RPA,RobotFramework,Robotic Process Automation,Test,Testing,Visual Studio Code
|
15
14
|
Classifier: Development Status :: 5 - Production/Stable
|
16
15
|
Classifier: Framework :: Robot Framework
|
@@ -34,36 +33,36 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
34
33
|
Classifier: Topic :: Utilities
|
35
34
|
Classifier: Typing :: Typed
|
36
35
|
Requires-Python: >=3.8
|
37
|
-
Requires-Dist: robotcode-core==0.
|
38
|
-
Requires-Dist: robotcode-plugin==0.
|
39
|
-
Requires-Dist: robotcode-robot==0.
|
36
|
+
Requires-Dist: robotcode-core==0.97.0
|
37
|
+
Requires-Dist: robotcode-plugin==0.97.0
|
38
|
+
Requires-Dist: robotcode-robot==0.97.0
|
40
39
|
Provides-Extra: all
|
41
40
|
Requires-Dist: docutils; extra == 'all'
|
42
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
43
42
|
Requires-Dist: rich; extra == 'all'
|
44
|
-
Requires-Dist: robotcode-analyze==0.
|
45
|
-
Requires-Dist: robotcode-debugger==0.
|
46
|
-
Requires-Dist: robotcode-language-server==0.
|
47
|
-
Requires-Dist: robotcode-repl==0.
|
48
|
-
Requires-Dist: robotcode-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.97.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.97.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.97.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-repl==0.97.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-runner==0.97.0; extra == 'all'
|
49
48
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
50
49
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
51
50
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==0.
|
51
|
+
Requires-Dist: robotcode-analyze==0.97.0; extra == 'analyze'
|
53
52
|
Provides-Extra: colored
|
54
53
|
Requires-Dist: rich; extra == 'colored'
|
55
54
|
Provides-Extra: debugger
|
56
|
-
Requires-Dist: robotcode-debugger==0.
|
55
|
+
Requires-Dist: robotcode-debugger==0.97.0; extra == 'debugger'
|
57
56
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==0.
|
57
|
+
Requires-Dist: robotcode-language-server==0.97.0; extra == 'languageserver'
|
59
58
|
Provides-Extra: lint
|
60
59
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
61
60
|
Provides-Extra: repl
|
62
|
-
Requires-Dist: robotcode-repl==0.
|
61
|
+
Requires-Dist: robotcode-repl==0.97.0; extra == 'repl'
|
63
62
|
Provides-Extra: rest
|
64
63
|
Requires-Dist: docutils; extra == 'rest'
|
65
64
|
Provides-Extra: runner
|
66
|
-
Requires-Dist: robotcode-runner==0.
|
65
|
+
Requires-Dist: robotcode-runner==0.97.0; extra == 'runner'
|
67
66
|
Provides-Extra: tidy
|
68
67
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
69
68
|
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.97.0",
|
55
|
+
"robotcode-plugin==0.97.0",
|
56
|
+
"robotcode-robot==0.97.0",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,22 +71,22 @@ 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.97.0"]
|
75
|
+
languageserver = ["robotcode-language-server==0.97.0"]
|
76
|
+
runner = ["robotcode-runner==0.97.0"]
|
77
|
+
analyze = ["robotcode-analyze==0.97.0"]
|
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.97.0"]
|
83
83
|
colored = ["rich"]
|
84
84
|
all = [
|
85
|
-
"robotcode-debugger==0.
|
86
|
-
"robotcode-language-server==0.
|
87
|
-
"robotcode-runner==0.
|
88
|
-
"robotcode-analyze==0.
|
89
|
-
"robotcode-repl==0.
|
85
|
+
"robotcode-debugger==0.97.0",
|
86
|
+
"robotcode-language-server==0.97.0",
|
87
|
+
"robotcode-runner==0.97.0",
|
88
|
+
"robotcode-analyze==0.97.0",
|
89
|
+
"robotcode-repl==0.97.0",
|
90
90
|
"PyYAML>=5.4",
|
91
91
|
"robotframework-robocop>=2.0.0",
|
92
92
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.97.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.95.2"
|
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
|
File without changes
|