robotcode 0.82.3__tar.gz → 0.83.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.82.3 → robotcode-0.83.1}/CHANGELOG.md +37 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/PKG-INFO +12 -12
- {robotcode-0.82.3 → robotcode-0.83.1}/hatch.toml +4 -39
- {robotcode-0.82.3 → robotcode-0.83.1}/pyproject.toml +13 -13
- robotcode-0.83.1/src/robotcode/cli/__version__.py +1 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/src/robotcode/cli/commands/config.py +2 -2
- robotcode-0.82.3/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.82.3 → robotcode-0.83.1}/.gitignore +0 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/LICENSE.txt +0 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/README.md +0 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.82.3 → robotcode-0.83.1}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,43 @@
|
|
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.83.1](https://github.com/robotcodedev/robotcode/compare/v0.83.0..v0.83.1) - 2024-06-10
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **config:** Correct some markdown syntax error in documentation for config model ([b5fed35](https://github.com/robotcodedev/robotcode/commit/b5fed353f75c679a49e9000a085ebdeca2b9d30d))
|
10
|
+
- **vscode:** Correct highlightning of line continuations if it contains empty lines or comments lines ([c274c51](https://github.com/robotcodedev/robotcode/commit/c274c5113c55c75ba9496a3337279a11bb7dded0))
|
11
|
+
|
12
|
+
|
13
|
+
### Documentation
|
14
|
+
|
15
|
+
- Add a header to config docs ([17ae419](https://github.com/robotcodedev/robotcode/commit/17ae419c237c5e76d4cb2294c676896780dfade1))
|
16
|
+
- Initial move to vitepress for documentation ([f37d8e7](https://github.com/robotcodedev/robotcode/commit/f37d8e7b3e89eedb04c92fa032b257a7efede43c))
|
17
|
+
- Setup vitepress project correctly ([882d27c](https://github.com/robotcodedev/robotcode/commit/882d27c8c26af1d69c62c697b76e6c33874fb646))
|
18
|
+
- Add a logo with text ([1ded4d0](https://github.com/robotcodedev/robotcode/commit/1ded4d0b10cfd137271e867ebfc0bd1c4d7fd12c))
|
19
|
+
|
20
|
+
|
21
|
+
### Testing
|
22
|
+
|
23
|
+
- Enable pytest-rerunfailures for unittests ([3b6e0ce](https://github.com/robotcodedev/robotcode/commit/3b6e0cedb30dffd7eb8ff538f09cf93b8a5c9be6))
|
24
|
+
- Fix tests for Robot Framework version 7.0.1 ([420fee4](https://github.com/robotcodedev/robotcode/commit/420fee4236f7520102862efe0063896ba2761cda))
|
25
|
+
|
26
|
+
|
27
|
+
## [0.83.0](https://github.com/robotcodedev/robotcode/compare/v0.82.3..v0.83.0) - 2024-05-16
|
28
|
+
|
29
|
+
### Bug Fixes
|
30
|
+
|
31
|
+
- **debugger:** Fix type annotations for python 3.8 ([d2cc421](https://github.com/robotcodedev/robotcode/commit/d2cc42129725566c08bb0fe49f81fb41b2600695))
|
32
|
+
|
33
|
+
|
34
|
+
### Features
|
35
|
+
|
36
|
+
- **vscode:** Support for highlighning robot code in markdown code blocks ([b9de061](https://github.com/robotcodedev/robotcode/commit/b9de061f4511dec43c8a6f1b04437a1ccb1bc20d))
|
37
|
+
|
38
|
+
use the at defining the language in a codeblock you can use `robot` or `robotframework` as specifier
|
39
|
+
|
40
|
+
|
41
|
+
|
5
42
|
## [0.82.3](https://github.com/robotcodedev/robotcode/compare/v0.82.2..v0.82.3) - 2024-05-12
|
6
43
|
|
7
44
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.83.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.83.1
|
37
|
+
Requires-Dist: robotcode-plugin==0.83.1
|
38
|
+
Requires-Dist: robotcode-robot==0.83.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.83.1; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.83.1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.83.1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-runner==0.83.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.83.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.83.1; extra == 'debugger'
|
55
55
|
Provides-Extra: languageserver
|
56
|
-
Requires-Dist: robotcode-language-server==0.
|
56
|
+
Requires-Dist: robotcode-language-server==0.83.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.83.1; extra == 'runner'
|
63
63
|
Provides-Extra: tidy
|
64
64
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
65
65
|
Provides-Extra: yaml
|
@@ -13,12 +13,12 @@ only-include = ["src", "CHANGELOG.md"]
|
|
13
13
|
|
14
14
|
|
15
15
|
[envs.default]
|
16
|
-
installer="uv"
|
16
|
+
installer = "uv"
|
17
17
|
dependencies = [
|
18
18
|
"pytest",
|
19
19
|
"pytest-html",
|
20
20
|
"pytest_asyncio>=0.23",
|
21
|
-
|
21
|
+
"pytest-rerunfailures",
|
22
22
|
"pytest-cov",
|
23
23
|
"mypy",
|
24
24
|
"ruff",
|
@@ -88,12 +88,7 @@ matrix.rf.dependencies = [
|
|
88
88
|
]
|
89
89
|
|
90
90
|
[envs.hatch-test]
|
91
|
-
dependencies = [
|
92
|
-
"pytest",
|
93
|
-
"pytest-html",
|
94
|
-
"pytest_asyncio>=0.23",
|
95
|
-
"pyyaml"
|
96
|
-
]
|
91
|
+
dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"]
|
97
92
|
pre-install-commands = ["python ./scripts/install_packages.py"]
|
98
93
|
|
99
94
|
[[envs.test.matrix]]
|
@@ -144,42 +139,12 @@ platform.windows.scripts = [
|
|
144
139
|
"typing-py=mypy --no-incremental --cache-dir nul {args:.}",
|
145
140
|
]
|
146
141
|
|
147
|
-
[envs.pages]
|
148
|
-
python = "3.11"
|
149
|
-
#detached = true
|
150
|
-
extra-dependencies = [
|
151
|
-
"mkdocs>=1.4.2",
|
152
|
-
"mkdocs-material",
|
153
|
-
# Plugins
|
154
|
-
"mkdocs-minify-plugin",
|
155
|
-
"mkdocs-git-revision-date-localized-plugin",
|
156
|
-
"mkdocstrings-python",
|
157
|
-
"mkdocs-redirects",
|
158
|
-
"mkdocs-glightbox",
|
159
|
-
|
160
|
-
# Extensions
|
161
|
-
"mkdocs-click~=0.8.1",
|
162
|
-
"pymdown-extensions~=9.6.0",
|
163
|
-
# Necessary for syntax highlighting in code blocks
|
164
|
-
"pygments",
|
165
|
-
"mike",
|
166
|
-
]
|
167
|
-
|
168
|
-
[envs.pages.scripts]
|
169
|
-
build = ["mkdocs build"]
|
170
|
-
deploy = ["python scripts/deploy_docs.py"]
|
171
|
-
|
172
142
|
|
173
143
|
[envs.build]
|
174
144
|
skip-install = true
|
175
145
|
detached = true
|
176
146
|
python = "3.8"
|
177
|
-
dependencies = [
|
178
|
-
"GitPython",
|
179
|
-
"semantic-version",
|
180
|
-
"commitizen",
|
181
|
-
"git-cliff"
|
182
|
-
]
|
147
|
+
dependencies = ["GitPython", "semantic-version", "commitizen", "git-cliff"]
|
183
148
|
|
184
149
|
[envs.build.scripts]
|
185
150
|
update-changelog = ["python scripts/update_changelog.py"]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
[build-system]
|
2
|
-
requires = ["hatchling>=1.
|
2
|
+
requires = ["hatchling>=1.24.2"]
|
3
3
|
build-backend = "hatchling.build"
|
4
4
|
|
5
5
|
|
@@ -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.83.1",
|
54
|
+
"robotcode-plugin==0.83.1",
|
55
|
+
"robotcode-robot==0.83.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.83.1"]
|
74
|
+
languageserver = ["robotcode-language-server==0.83.1"]
|
75
|
+
runner = ["robotcode-runner==0.83.1"]
|
76
|
+
analyze = ["robotcode-analyze==0.83.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.83.1",
|
84
|
+
"robotcode-language-server==0.83.1",
|
85
|
+
"robotcode-runner==0.83.1",
|
86
|
+
"robotcode-analyze==0.83.1",
|
87
87
|
"PyYAML>=5.4",
|
88
88
|
"robotframework-robocop>=2.0.0",
|
89
89
|
"robotframework-tidy>=2.0.0",
|
@@ -137,7 +137,7 @@ extend-exclude = '''
|
|
137
137
|
|
138
138
|
[tool.pytest.ini_options]
|
139
139
|
minversion = "6.0"
|
140
|
-
addopts = "-ra -vv -rf --ignore=bundled --ignore=.hatch"
|
140
|
+
addopts = "-ra -vv -rf --ignore=bundled --ignore=.hatch --reruns 5 --reruns-delay 1"
|
141
141
|
filterwarnings = "ignore:.*Using or importing the ABCs from 'collections' instead of from 'collections.abc'.*:DeprecationWarning"
|
142
142
|
testpaths = ["tests"]
|
143
143
|
junit_suite_name = "robotcode"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.83.1"
|
@@ -307,7 +307,7 @@ def desc(app: Application, name: Optional[List[str]] = None) -> None:
|
|
307
307
|
]
|
308
308
|
|
309
309
|
if app.config.output_format is None or app.config.output_format == OutputFormat.TEXT:
|
310
|
-
output = ""
|
310
|
+
output = "# robot.toml configuration settings\n\n"
|
311
311
|
for field, value in config_fields:
|
312
312
|
output += f"## {field}\n\n"
|
313
313
|
type = (
|
@@ -316,7 +316,7 @@ def desc(app: Application, name: Optional[List[str]] = None) -> None:
|
|
316
316
|
.replace("robotcode.robot.config.model.", "")
|
317
317
|
.replace("NoneType", "None")
|
318
318
|
)
|
319
|
-
output += f"Type: {type}
|
319
|
+
output += f"Type: `{type}`\n\n"
|
320
320
|
output += value["description"] + "\n\n"
|
321
321
|
|
322
322
|
app.echo_as_markdown(output)
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.82.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
|