robotcode 0.81.0__tar.gz → 0.82.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.81.0 → robotcode-0.82.1}/CHANGELOG.md +24 -1
- {robotcode-0.81.0 → robotcode-0.82.1}/PKG-INFO +12 -12
- {robotcode-0.81.0 → robotcode-0.82.1}/hatch.toml +11 -2
- {robotcode-0.81.0 → robotcode-0.82.1}/pyproject.toml +11 -11
- robotcode-0.82.1/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.81.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.81.0 → robotcode-0.82.1}/.gitignore +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/LICENSE.txt +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/README.md +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.1}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,29 @@
|
|
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.82.1](https://github.com/robotcodedev/robotcode/compare/v0.82.0..v0.82.1) - 2024-05-09
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **runner:** `--by-longname` and `--exclude-by-longname` now take into account whether a name for the run was set via `--name` command line argument or in the `name` setting robot.toml ([6f5c719](https://github.com/robotcodedev/robotcode/commit/6f5c719832885e524b72a69d47b2ccaf0608f6f9))
|
10
|
+
|
11
|
+
|
12
|
+
### Refactor
|
13
|
+
|
14
|
+
- **debugger:** Some code simplifications ([bc97744](https://github.com/robotcodedev/robotcode/commit/bc977445a5419cdc6ea5ad968298395a538a12bc))
|
15
|
+
|
16
|
+
|
17
|
+
## [0.82.0](https://github.com/robotcodedev/robotcode/compare/v0.81.0..v0.82.0) - 2024-05-05
|
18
|
+
|
19
|
+
### Features
|
20
|
+
|
21
|
+
- **vscode:** Detection of invalid robot environment now shows a quickpick instead an error message ([95a7630](https://github.com/robotcodedev/robotcode/commit/95a7630e4c8820d8521935847a65eb71bf215097))
|
22
|
+
|
23
|
+
In the case RobotCode will initalize the LanguageServer and detect that environment is not valid, means wrong python version, no robotframework installed, instead an error message pops up a quickpick pops up, where you can do different things, like select a differnt interpreter, create a new venv, ignore this for the moment.
|
24
|
+
The advantage of this way is, that this also works with extensions like Pyhton Manger and so on
|
25
|
+
|
26
|
+
|
27
|
+
|
5
28
|
## [0.81.0](https://github.com/robotcodedev/robotcode/compare/v0.80.0..v0.81.0) - 2024-05-03
|
6
29
|
|
7
30
|
### Bug Fixes
|
@@ -1182,6 +1205,7 @@ All notable changes to this project will be documented in this file. See [conven
|
|
1182
1205
|
|
1183
1206
|
### Features
|
1184
1207
|
|
1208
|
+
- Support for new `--parseinclude` option in robot config ([dfd88d8](https://github.com/robotcodedev/robotcode/commit/dfd88d87ed08d1065a26eb6f29c1eec6a03272f6))
|
1185
1209
|
- Support for new RF 6.1 `--parse-include` option for discovering and executing tests ([607cf8d](https://github.com/robotcodedev/robotcode/commit/607cf8db2777b5d11db89e830131261d60581b0f))
|
1186
1210
|
- Enable importing and completion of `.rest`, `.rsrc` and `.json` resource extensions (not parsing) ([3df22dd](https://github.com/robotcodedev/robotcode/commit/3df22ddcb703983b56d0756fef29d06cb2960009))
|
1187
1211
|
- Support for importing `.json` files in RF 6.1 ([0f84c4e](https://github.com/robotcodedev/robotcode/commit/0f84c4ec1d9a897aa25ab37fff702f8feea50cf4))
|
@@ -1203,7 +1227,6 @@ All notable changes to this project will be documented in this file. See [conven
|
|
1203
1227
|
|
1204
1228
|
### Features
|
1205
1229
|
|
1206
|
-
- Support for new `--parseinclude` option in robot config ([dfd88d8](https://github.com/robotcodedev/robotcode/commit/dfd88d87ed08d1065a26eb6f29c1eec6a03272f6))
|
1207
1230
|
- Support for new `--parseinclude` option in robot config ([6b84986](https://github.com/robotcodedev/robotcode/commit/6b84986e7109c36b5df81c0ff56f84665a855c6a))
|
1208
1231
|
|
1209
1232
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.82.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,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-core==0.
|
37
|
-
Requires-Dist: robotcode-plugin==0.
|
38
|
-
Requires-Dist: robotcode-robot==0.
|
36
|
+
Requires-Dist: robotcode-core==0.82.1
|
37
|
+
Requires-Dist: robotcode-plugin==0.82.1
|
38
|
+
Requires-Dist: robotcode-robot==0.82.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-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.82.1; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.82.1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.82.1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-runner==0.82.1; extra == 'all'
|
47
47
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
48
48
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
49
49
|
Provides-Extra: analyze
|
50
|
-
Requires-Dist: robotcode-analyze==0.
|
50
|
+
Requires-Dist: robotcode-analyze==0.82.1; 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.82.1; extra == 'debugger'
|
55
55
|
Provides-Extra: languageserver
|
56
|
-
Requires-Dist: robotcode-language-server==0.
|
56
|
+
Requires-Dist: robotcode-language-server==0.82.1; 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.82.1; extra == 'runner'
|
63
63
|
Provides-Extra: tidy
|
64
64
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
65
65
|
Provides-Extra: yaml
|
@@ -87,6 +87,15 @@ matrix.rf.dependencies = [
|
|
87
87
|
] },
|
88
88
|
]
|
89
89
|
|
90
|
+
[envs.hatch-test]
|
91
|
+
dependencies = [
|
92
|
+
"pytest",
|
93
|
+
"pytest-html",
|
94
|
+
"pytest_asyncio>=0.23",
|
95
|
+
"pyyaml"
|
96
|
+
]
|
97
|
+
pre-install-commands = ["python ./scripts/install_packages.py"]
|
98
|
+
|
90
99
|
[[envs.test.matrix]]
|
91
100
|
rf = ["rf41", "rf50", "rf60", "rf61", "rf70"]
|
92
101
|
|
@@ -164,12 +173,12 @@ deploy = ["python scripts/deploy_docs.py"]
|
|
164
173
|
[envs.build]
|
165
174
|
skip-install = true
|
166
175
|
detached = true
|
167
|
-
python = "
|
176
|
+
python = "3.8"
|
168
177
|
dependencies = [
|
169
178
|
"GitPython",
|
170
179
|
"semantic-version",
|
171
180
|
"commitizen",
|
172
|
-
"git-cliff
|
181
|
+
"git-cliff"
|
173
182
|
]
|
174
183
|
|
175
184
|
[envs.build.scripts]
|
@@ -50,9 +50,9 @@ classifiers = [
|
|
50
50
|
]
|
51
51
|
requires-python = ">=3.8"
|
52
52
|
dependencies = [
|
53
|
-
"robotcode-core==0.
|
54
|
-
"robotcode-plugin==0.
|
55
|
-
"robotcode-robot==0.
|
53
|
+
"robotcode-core==0.82.1",
|
54
|
+
"robotcode-plugin==0.82.1",
|
55
|
+
"robotcode-robot==0.82.1",
|
56
56
|
]
|
57
57
|
dynamic = ["version"]
|
58
58
|
|
@@ -70,20 +70,20 @@ robotcode = "robotcode.cli.__main__:main"
|
|
70
70
|
|
71
71
|
|
72
72
|
[project.optional-dependencies]
|
73
|
-
debugger = ["robotcode-debugger==0.
|
74
|
-
languageserver = ["robotcode-language-server==0.
|
75
|
-
runner = ["robotcode-runner==0.
|
76
|
-
analyze = ["robotcode-analyze==0.
|
73
|
+
debugger = ["robotcode-debugger==0.82.1"]
|
74
|
+
languageserver = ["robotcode-language-server==0.82.1"]
|
75
|
+
runner = ["robotcode-runner==0.82.1"]
|
76
|
+
analyze = ["robotcode-analyze==0.82.1"]
|
77
77
|
yaml = ["PyYAML>=5.4"]
|
78
78
|
lint = ["robotframework-robocop>=2.0.0"]
|
79
79
|
tidy = ["robotframework-tidy>=2.0.0"]
|
80
80
|
rest = ["docutils"]
|
81
81
|
colored = ["rich"]
|
82
82
|
all = [
|
83
|
-
"robotcode-debugger==0.
|
84
|
-
"robotcode-language-server==0.
|
85
|
-
"robotcode-runner==0.
|
86
|
-
"robotcode-analyze==0.
|
83
|
+
"robotcode-debugger==0.82.1",
|
84
|
+
"robotcode-language-server==0.82.1",
|
85
|
+
"robotcode-runner==0.82.1",
|
86
|
+
"robotcode-analyze==0.82.1",
|
87
87
|
"PyYAML>=5.4",
|
88
88
|
"robotframework-robocop>=2.0.0",
|
89
89
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.82.1"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.81.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
|
File without changes
|