robotcode 1.2.0__tar.gz → 1.3.0.dev1__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-1.2.0 → robotcode-1.3.0.dev1}/CHANGELOG.md +25 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/PKG-INFO +16 -16
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/hatch.toml +1 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/pyproject.toml +15 -15
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/src/robotcode/cli/__init__.py +2 -2
- robotcode-1.3.0.dev1/src/robotcode/cli/__version__.py +1 -0
- robotcode-1.2.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/.gitignore +0 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/LICENSE.txt +0 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/README.md +0 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-1.2.0 → robotcode-1.3.0.dev1}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,31 @@
|
|
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
|
+
## [1.3.0-dev1](https://github.com/robotcodedev/robotcode/compare/v1.2.0..v1.3.0-dev1) - 2025-05-28
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **cli:** Corrected monkey patching for click>=8.2.0 ([425e64d](https://github.com/robotcodedev/robotcode/commit/425e64ddf8c6a9a54ec6fe3d801253c2e3a2156a))
|
10
|
+
- **textmate:** Enhance variable assignment handling ([7333eb9](https://github.com/robotcodedev/robotcode/commit/7333eb9b2f46e2af25583af2d5346b4b92dd1137))
|
11
|
+
- **textmate:** Corrected highlightning of comments in variable section ([5204afb](https://github.com/robotcodedev/robotcode/commit/5204afbfdd7f745c3e00ebc8d59fa3ad992ec0a8))
|
12
|
+
- Corrected detection of robocop ([f06bcbc](https://github.com/robotcodedev/robotcode/commit/f06bcbc1c2514326567399f8e5179da6ff5f9ed7))
|
13
|
+
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
- **intellij:** Reimplement and simplified parsing and syntax highlightning ([2dcdf7c](https://github.com/robotcodedev/robotcode/commit/2dcdf7ce846e8483fb427cdc7945a084fe4c3232))
|
18
|
+
- **langserver:** Better support for indexed assignments ([6fad9b1](https://github.com/robotcodedev/robotcode/commit/6fad9b161b85b2412b6a9d5169e69b4ce37c43c3))
|
19
|
+
- Show editor hint for Python/Robot Framework issues instead of throwing error ([4c2a43b](https://github.com/robotcodedev/robotcode/commit/4c2a43b8fd2ece7f905fc10695f2d5b9487dc52a))
|
20
|
+
|
21
|
+
|
22
|
+
When opening a Robot Framework file, issues related to the Python environment or Robot Framework version are now shown as an editor hint at the top of the file tab, instead of raising an exception.
|
23
|
+
|
24
|
+
|
25
|
+
### Refactor
|
26
|
+
|
27
|
+
- **intellij:** Some code cleanup ([479a9c3](https://github.com/robotcodedev/robotcode/commit/479a9c3e6b1bc117e5c1222953b755a198cbc8c2))
|
28
|
+
|
29
|
+
|
5
30
|
## [1.2.0](https://github.com/robotcodedev/robotcode/compare/v1.1.0..v1.2.0) - 2025-05-07
|
6
31
|
|
7
32
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.0.dev1
|
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
|
@@ -34,39 +34,39 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
34
34
|
Classifier: Topic :: Utilities
|
35
35
|
Classifier: Typing :: Typed
|
36
36
|
Requires-Python: >=3.8
|
37
|
-
Requires-Dist: robotcode-core==1.
|
38
|
-
Requires-Dist: robotcode-plugin==1.
|
39
|
-
Requires-Dist: robotcode-robot==1.
|
37
|
+
Requires-Dist: robotcode-core==1.3.0-dev1
|
38
|
+
Requires-Dist: robotcode-plugin==1.3.0-dev1
|
39
|
+
Requires-Dist: robotcode-robot==1.3.0-dev1
|
40
40
|
Provides-Extra: all
|
41
41
|
Requires-Dist: docutils; extra == 'all'
|
42
42
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
43
43
|
Requires-Dist: rich; extra == 'all'
|
44
|
-
Requires-Dist: robotcode-analyze==1.
|
45
|
-
Requires-Dist: robotcode-debugger==1.
|
46
|
-
Requires-Dist: robotcode-language-server==1.
|
47
|
-
Requires-Dist: robotcode-repl-server==1.
|
48
|
-
Requires-Dist: robotcode-repl==1.
|
49
|
-
Requires-Dist: robotcode-runner==1.
|
44
|
+
Requires-Dist: robotcode-analyze==1.3.0-dev1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==1.3.0-dev1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==1.3.0-dev1; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==1.3.0-dev1; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==1.3.0-dev1; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==1.3.0-dev1; extra == 'all'
|
50
50
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
51
51
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
52
52
|
Provides-Extra: analyze
|
53
|
-
Requires-Dist: robotcode-analyze==1.
|
53
|
+
Requires-Dist: robotcode-analyze==1.3.0-dev1; extra == 'analyze'
|
54
54
|
Provides-Extra: colored
|
55
55
|
Requires-Dist: rich; extra == 'colored'
|
56
56
|
Provides-Extra: debugger
|
57
|
-
Requires-Dist: robotcode-debugger==1.
|
57
|
+
Requires-Dist: robotcode-debugger==1.3.0-dev1; extra == 'debugger'
|
58
58
|
Provides-Extra: languageserver
|
59
|
-
Requires-Dist: robotcode-language-server==1.
|
59
|
+
Requires-Dist: robotcode-language-server==1.3.0-dev1; extra == 'languageserver'
|
60
60
|
Provides-Extra: lint
|
61
61
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
62
62
|
Provides-Extra: repl
|
63
|
-
Requires-Dist: robotcode-repl==1.
|
63
|
+
Requires-Dist: robotcode-repl==1.3.0-dev1; extra == 'repl'
|
64
64
|
Provides-Extra: replserver
|
65
|
-
Requires-Dist: robotcode-repl-server==1.
|
65
|
+
Requires-Dist: robotcode-repl-server==1.3.0-dev1; extra == 'replserver'
|
66
66
|
Provides-Extra: rest
|
67
67
|
Requires-Dist: docutils; extra == 'rest'
|
68
68
|
Provides-Extra: runner
|
69
|
-
Requires-Dist: robotcode-runner==1.
|
69
|
+
Requires-Dist: robotcode-runner==1.3.0-dev1; extra == 'runner'
|
70
70
|
Provides-Extra: tidy
|
71
71
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
72
72
|
Provides-Extra: yaml
|
@@ -173,6 +173,7 @@ package = ["python scripts/package.py"]
|
|
173
173
|
publish = ["python scripts/publish.py"]
|
174
174
|
extract-release-notes = ["python scripts/extract_release_notes.py"]
|
175
175
|
is-prerelease = ["python scripts/is_prerelease.py"]
|
176
|
+
get-release-version = ["python scripts/get_release_version.py"]
|
176
177
|
bump = ["cz bump {args}"]
|
177
178
|
install-bundled-editable = "python ./scripts/install_bundled_editable.py"
|
178
179
|
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==1.
|
55
|
-
"robotcode-plugin==1.
|
56
|
-
"robotcode-robot==1.
|
54
|
+
"robotcode-core==1.3.0-dev1",
|
55
|
+
"robotcode-plugin==1.3.0-dev1",
|
56
|
+
"robotcode-robot==1.3.0-dev1",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,24 +71,24 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
71
|
|
72
72
|
|
73
73
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==1.
|
75
|
-
languageserver = ["robotcode-language-server==1.
|
76
|
-
runner = ["robotcode-runner==1.
|
77
|
-
analyze = ["robotcode-analyze==1.
|
74
|
+
debugger = ["robotcode-debugger==1.3.0-dev1"]
|
75
|
+
languageserver = ["robotcode-language-server==1.3.0-dev1"]
|
76
|
+
runner = ["robotcode-runner==1.3.0-dev1"]
|
77
|
+
analyze = ["robotcode-analyze==1.3.0-dev1"]
|
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==1.
|
83
|
-
replserver = ["robotcode-repl-server==1.
|
82
|
+
repl = ["robotcode-repl==1.3.0-dev1"]
|
83
|
+
replserver = ["robotcode-repl-server==1.3.0-dev1"]
|
84
84
|
colored = ["rich"]
|
85
85
|
all = [
|
86
|
-
"robotcode-debugger==1.
|
87
|
-
"robotcode-language-server==1.
|
88
|
-
"robotcode-runner==1.
|
89
|
-
"robotcode-analyze==1.
|
90
|
-
"robotcode-repl==1.
|
91
|
-
"robotcode-repl-server==1.
|
86
|
+
"robotcode-debugger==1.3.0-dev1",
|
87
|
+
"robotcode-language-server==1.3.0-dev1",
|
88
|
+
"robotcode-runner==1.3.0-dev1",
|
89
|
+
"robotcode-analyze==1.3.0-dev1",
|
90
|
+
"robotcode-repl==1.3.0-dev1",
|
91
|
+
"robotcode-repl-server==1.3.0-dev1",
|
92
92
|
"PyYAML>=5.4",
|
93
93
|
"robotframework-robocop>=2.0.0",
|
94
94
|
"robotframework-tidy>=2.0.0",
|
@@ -22,8 +22,8 @@ from .commands import config, profiles
|
|
22
22
|
old_make_metavar = click.Parameter.make_metavar
|
23
23
|
|
24
24
|
|
25
|
-
def my_make_metavar(self: click.Parameter) -> str:
|
26
|
-
metavar = old_make_metavar(self)
|
25
|
+
def my_make_metavar(self: click.Parameter, *args: Any, **kwargs: Any) -> str:
|
26
|
+
metavar = old_make_metavar(self, *args, **kwargs)
|
27
27
|
|
28
28
|
if isinstance(self, click.Option) and self.multiple:
|
29
29
|
metavar += " *"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.3.0-dev1"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.2.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
|