robotcode 0.104.0__tar.gz → 0.105.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.104.0 → robotcode-0.105.0}/CHANGELOG.md +23 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/PKG-INFO +50 -23
- {robotcode-0.104.0 → robotcode-0.105.0}/README.md +34 -7
- {robotcode-0.104.0 → robotcode-0.105.0}/hatch.toml +5 -5
- {robotcode-0.104.0 → robotcode-0.105.0}/pyproject.toml +15 -15
- robotcode-0.105.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.104.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.104.0 → robotcode-0.105.0}/.gitignore +0 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/LICENSE.txt +0 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.104.0 → robotcode-0.105.0}/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.105.0](https://github.com/robotcodedev/robotcode/compare/v0.104.0..v0.105.0) - 2025-01-06
|
6
|
+
|
7
|
+
### Documentation
|
8
|
+
|
9
|
+
- Update readme's ([f4f576f](https://github.com/robotcodedev/robotcode/commit/f4f576f3222ac3cf08904a336615edf45c57f922))
|
10
|
+
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
- **intellij:** Added initial Robot Framework file templates and better syntax highlighting support based on a customized TextMate lexer/parser ([ef67d2c](https://github.com/robotcodedev/robotcode/commit/ef67d2c661c6ae8c8c734561b54f63d82f9b4e3c))
|
15
|
+
- **intellij:** Implemented brace matcher for variables ([9ee1f22](https://github.com/robotcodedev/robotcode/commit/9ee1f22c2f077a1c92ac9f5f6dc37542fb24e79c))
|
16
|
+
- **intellij:** Finalize syntax coloring and sematic highlightning ([faa905d](https://github.com/robotcodedev/robotcode/commit/faa905d048d4af076695b619d91ee97371cfd0fd))
|
17
|
+
- **intellij:** Finalize syntax coloring and sematic highlightning part 2 ([97081a5](https://github.com/robotcodedev/robotcode/commit/97081a5f13a7f58d6825853330c8806506ad6fde))
|
18
|
+
- **intellij:** Implemented support for highlightning embedded arguments, escape sequences, python expressions and so on ([c5d6cf3](https://github.com/robotcodedev/robotcode/commit/c5d6cf3722c22929799b154204711c697928da7e))
|
19
|
+
- **langserver:** Correct highlightning to better highlight python expresseions, escape sequences, environment variable default value and embedded argument regexes ([5dba571](https://github.com/robotcodedev/robotcode/commit/5dba5713f746cb9fb1b36433be982493bb3905d2))
|
20
|
+
- **language_server:** Enhanced hover representation of variables ([039682d](https://github.com/robotcodedev/robotcode/commit/039682dbdd19a6e1dc972f642dbfd5f1787b4dcd))
|
21
|
+
|
22
|
+
|
23
|
+
### Testing
|
24
|
+
|
25
|
+
- Update regression tests ([c5f4573](https://github.com/robotcodedev/robotcode/commit/c5f4573c1b9ea9a2db720c5044bf7a2cdc8e2bda))
|
26
|
+
|
27
|
+
|
5
28
|
## [0.104.0](https://github.com/robotcodedev/robotcode/compare/v0.103.0..v0.104.0) - 2024-12-30
|
6
29
|
|
7
30
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.105.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
|
@@ -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==0.
|
38
|
-
Requires-Dist: robotcode-plugin==0.
|
39
|
-
Requires-Dist: robotcode-robot==0.
|
37
|
+
Requires-Dist: robotcode-core==0.105.0
|
38
|
+
Requires-Dist: robotcode-plugin==0.105.0
|
39
|
+
Requires-Dist: robotcode-robot==0.105.0
|
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==0.
|
45
|
-
Requires-Dist: robotcode-debugger==0.
|
46
|
-
Requires-Dist: robotcode-language-server==0.
|
47
|
-
Requires-Dist: robotcode-repl-server==0.
|
48
|
-
Requires-Dist: robotcode-repl==0.
|
49
|
-
Requires-Dist: robotcode-runner==0.
|
44
|
+
Requires-Dist: robotcode-analyze==0.105.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==0.105.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==0.105.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==0.105.0; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==0.105.0; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==0.105.0; 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==0.
|
53
|
+
Requires-Dist: robotcode-analyze==0.105.0; extra == 'analyze'
|
54
54
|
Provides-Extra: colored
|
55
55
|
Requires-Dist: rich; extra == 'colored'
|
56
56
|
Provides-Extra: debugger
|
57
|
-
Requires-Dist: robotcode-debugger==0.
|
57
|
+
Requires-Dist: robotcode-debugger==0.105.0; extra == 'debugger'
|
58
58
|
Provides-Extra: languageserver
|
59
|
-
Requires-Dist: robotcode-language-server==0.
|
59
|
+
Requires-Dist: robotcode-language-server==0.105.0; 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==0.
|
63
|
+
Requires-Dist: robotcode-repl==0.105.0; extra == 'repl'
|
64
64
|
Provides-Extra: replserver
|
65
|
-
Requires-Dist: robotcode-repl-server==0.
|
65
|
+
Requires-Dist: robotcode-repl-server==0.105.0; extra == 'replserver'
|
66
66
|
Provides-Extra: rest
|
67
67
|
Requires-Dist: docutils; extra == 'rest'
|
68
68
|
Provides-Extra: runner
|
69
|
-
Requires-Dist: robotcode-runner==0.
|
69
|
+
Requires-Dist: robotcode-runner==0.105.0; extra == 'runner'
|
70
70
|
Provides-Extra: tidy
|
71
71
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
72
72
|
Provides-Extra: yaml
|
@@ -76,10 +76,15 @@ Description-Content-Type: text/markdown
|
|
76
76
|
|
77
77
|
# RobotCode - Language Support for Robot Framework in Visual Studio Code
|
78
78
|
|
79
|
-
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
80
|
-
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
81
|
-
[](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
|
82
79
|
[](https://github.com/robotcodedev/robotcode/blob/master/LICENSE)
|
80
|
+
[](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
|
81
|
+
|
82
|
+
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
83
|
+
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
84
|
+
|
85
|
+
[](https://plugins.jetbrains.com/plugin/26216)
|
86
|
+
[](https://plugins.jetbrains.com/plugin/26216)
|
87
|
+
|
83
88
|
|
84
89
|
[](https://pypi.org/project/robotcode)
|
85
90
|
[](https://pypi.org/project/robotcode)
|
@@ -87,16 +92,38 @@ Description-Content-Type: text/markdown
|
|
87
92
|
|
88
93
|
---
|
89
94
|
|
90
|
-
**RobotCode** is a Visual Studio Code extension that enhances your workflow with [Robot Framework](https://robotframework.org/).
|
95
|
+
**RobotCode** is a Visual Studio Code extension that enhances your workflow with [Robot Framework](https://robotframework.org/).
|
96
|
+
It provides a rich set of features to help you write, run, and debug your Robot Framework tests directly within Visual Studio Code.
|
97
|
+
|
98
|
+
## Why RobotCode?
|
99
|
+
|
100
|
+
**Built on Robot Framework Core**
|
101
|
+
RobotCode is based on the Robot Framework Core and uses its parser, ensuring complete compatibility and consistency. This means you get the same syntax validation, error messages, and behavior as if you were running Robot Framework directly.
|
102
|
+
|
103
|
+
**Powered by the Language Server Protocol**
|
104
|
+
RobotCode is built on the Language Server Protocol (LSP), a modern standard for implementing language support across multiple editors and IDEs. This ensures a seamless and responsive user experience, while making it easier to maintain compatibility with evolving IDE features.
|
105
|
+
|
106
|
+
**Powerful Command Line Tools**
|
107
|
+
RobotCode extends the Robot Framework CLI with enhanced tools for test execution, analysis, and debugging. It supports [`robot.toml`](https://robotcode.io/03_reference/) configurations, integrates a Debug Adapter Protocol (DAP) compatible debugger, and provides an interactive REPL environment for experimenting with Robot Framework commands. Modular and flexible, these tools streamline your workflow for both development and production.
|
91
108
|
|
92
109
|
## Key Features
|
93
110
|
|
94
|
-
- **Code Editing**: Enjoy code auto-completion, navigation
|
111
|
+
- **Code Editing**: Enjoy code auto-completion, navigation and more.
|
112
|
+
- **IntelliSense**: Get code completion suggestions for keywords, variables, and more.
|
113
|
+
- **Refactoring**: Rename variables, keywords, arguments and more with ease and project wide.
|
114
|
+
- **Enhanced Syntax Highlighting**: Easily identify and read your Robot Framework code with support highlight embedded arguments, python expressions, environment variables with default values, and more.
|
115
|
+
- **Code Snippets**: Quickly insert common Robot Framework code snippets.
|
116
|
+
- **Test Discovery**: Discover and run Robot Framework test cases directly within VS Code.
|
117
|
+
- **Test Execution**: Execute Robot Framework test cases and suites directly within VS Code.
|
118
|
+
- **Test Reports**: View test reports directly within VS Code.
|
119
|
+
- **Debugging**: Debug your Robot Framework tests with ease.
|
95
120
|
- **Command Line Tools**: A wide array of tools to assist in setting up and managing Robot Framework environments.
|
121
|
+
- **Code Analysis with Robocop**: Install [Robocop](https://robocop.readthedocs.io/) for additional code analysis.
|
96
122
|
- **Code Formatting**: Format your code using Robot Framework’s built-in tools like `robot.tidy` or [Robotidy](https://robotidy.readthedocs.io/).
|
97
|
-
- **Test Running and Debugging**: Run and debug Robot Framework test cases directly within VS Code.
|
98
123
|
- **Multi-root Workspace Support**: Manage multiple Robot Framework projects with different Python environments simultaneously.
|
99
|
-
- **
|
124
|
+
- **Customizable Settings**: Configure the extension to fit your needs.
|
125
|
+
- **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
|
126
|
+
- **And More!**: Check out the [official documentation](https://robotcode.io) for more details.
|
100
127
|
|
101
128
|
## Requirements
|
102
129
|
|
@@ -1,10 +1,15 @@
|
|
1
1
|
|
2
2
|
# RobotCode - Language Support for Robot Framework in Visual Studio Code
|
3
3
|
|
4
|
-
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
5
|
-
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
6
|
-
[](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
|
7
4
|
[](https://github.com/robotcodedev/robotcode/blob/master/LICENSE)
|
5
|
+
[](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
|
6
|
+
|
7
|
+
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
8
|
+
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
9
|
+
|
10
|
+
[](https://plugins.jetbrains.com/plugin/26216)
|
11
|
+
[](https://plugins.jetbrains.com/plugin/26216)
|
12
|
+
|
8
13
|
|
9
14
|
[](https://pypi.org/project/robotcode)
|
10
15
|
[](https://pypi.org/project/robotcode)
|
@@ -12,16 +17,38 @@
|
|
12
17
|
|
13
18
|
---
|
14
19
|
|
15
|
-
**RobotCode** is a Visual Studio Code extension that enhances your workflow with [Robot Framework](https://robotframework.org/).
|
20
|
+
**RobotCode** is a Visual Studio Code extension that enhances your workflow with [Robot Framework](https://robotframework.org/).
|
21
|
+
It provides a rich set of features to help you write, run, and debug your Robot Framework tests directly within Visual Studio Code.
|
22
|
+
|
23
|
+
## Why RobotCode?
|
24
|
+
|
25
|
+
**Built on Robot Framework Core**
|
26
|
+
RobotCode is based on the Robot Framework Core and uses its parser, ensuring complete compatibility and consistency. This means you get the same syntax validation, error messages, and behavior as if you were running Robot Framework directly.
|
27
|
+
|
28
|
+
**Powered by the Language Server Protocol**
|
29
|
+
RobotCode is built on the Language Server Protocol (LSP), a modern standard for implementing language support across multiple editors and IDEs. This ensures a seamless and responsive user experience, while making it easier to maintain compatibility with evolving IDE features.
|
30
|
+
|
31
|
+
**Powerful Command Line Tools**
|
32
|
+
RobotCode extends the Robot Framework CLI with enhanced tools for test execution, analysis, and debugging. It supports [`robot.toml`](https://robotcode.io/03_reference/) configurations, integrates a Debug Adapter Protocol (DAP) compatible debugger, and provides an interactive REPL environment for experimenting with Robot Framework commands. Modular and flexible, these tools streamline your workflow for both development and production.
|
16
33
|
|
17
34
|
## Key Features
|
18
35
|
|
19
|
-
- **Code Editing**: Enjoy code auto-completion, navigation
|
36
|
+
- **Code Editing**: Enjoy code auto-completion, navigation and more.
|
37
|
+
- **IntelliSense**: Get code completion suggestions for keywords, variables, and more.
|
38
|
+
- **Refactoring**: Rename variables, keywords, arguments and more with ease and project wide.
|
39
|
+
- **Enhanced Syntax Highlighting**: Easily identify and read your Robot Framework code with support highlight embedded arguments, python expressions, environment variables with default values, and more.
|
40
|
+
- **Code Snippets**: Quickly insert common Robot Framework code snippets.
|
41
|
+
- **Test Discovery**: Discover and run Robot Framework test cases directly within VS Code.
|
42
|
+
- **Test Execution**: Execute Robot Framework test cases and suites directly within VS Code.
|
43
|
+
- **Test Reports**: View test reports directly within VS Code.
|
44
|
+
- **Debugging**: Debug your Robot Framework tests with ease.
|
20
45
|
- **Command Line Tools**: A wide array of tools to assist in setting up and managing Robot Framework environments.
|
46
|
+
- **Code Analysis with Robocop**: Install [Robocop](https://robocop.readthedocs.io/) for additional code analysis.
|
21
47
|
- **Code Formatting**: Format your code using Robot Framework’s built-in tools like `robot.tidy` or [Robotidy](https://robotidy.readthedocs.io/).
|
22
|
-
- **Test Running and Debugging**: Run and debug Robot Framework test cases directly within VS Code.
|
23
48
|
- **Multi-root Workspace Support**: Manage multiple Robot Framework projects with different Python environments simultaneously.
|
24
|
-
- **
|
49
|
+
- **Customizable Settings**: Configure the extension to fit your needs.
|
50
|
+
- **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
|
51
|
+
- **And More!**: Check out the [official documentation](https://robotcode.io) for more details.
|
25
52
|
|
26
53
|
## Requirements
|
27
54
|
|
@@ -45,7 +45,7 @@ install-packages = "python ./scripts/install_packages.py"
|
|
45
45
|
|
46
46
|
[envs.rfbeta]
|
47
47
|
python = "3.13"
|
48
|
-
extra-dependencies = ["robotframework==7.
|
48
|
+
extra-dependencies = ["robotframework==7.2rc1"]
|
49
49
|
|
50
50
|
[envs.rfmaster313]
|
51
51
|
python = "3.13"
|
@@ -98,8 +98,8 @@ matrix.rf.dependencies = [
|
|
98
98
|
{ value = "robotframework>=7.1, <7.2", if = [
|
99
99
|
"rf71",
|
100
100
|
] },
|
101
|
-
{ value = "robotframework
|
102
|
-
"
|
101
|
+
{ value = "robotframework==7.2rc1", if = [
|
102
|
+
"rf72",
|
103
103
|
] },
|
104
104
|
]
|
105
105
|
|
@@ -130,8 +130,8 @@ matrix.rf.dependencies = [
|
|
130
130
|
{ value = "robotframework>=7.1, <7.2", if = [
|
131
131
|
"rf71",
|
132
132
|
] },
|
133
|
-
{ value = "robotframework
|
134
|
-
"
|
133
|
+
{ value = "robotframework==7.2rc1", if = [
|
134
|
+
"rf72",
|
135
135
|
] },
|
136
136
|
]
|
137
137
|
|
@@ -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.105.0",
|
55
|
+
"robotcode-plugin==0.105.0",
|
56
|
+
"robotcode-robot==0.105.0",
|
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==0.
|
75
|
-
languageserver = ["robotcode-language-server==0.
|
76
|
-
runner = ["robotcode-runner==0.
|
77
|
-
analyze = ["robotcode-analyze==0.
|
74
|
+
debugger = ["robotcode-debugger==0.105.0"]
|
75
|
+
languageserver = ["robotcode-language-server==0.105.0"]
|
76
|
+
runner = ["robotcode-runner==0.105.0"]
|
77
|
+
analyze = ["robotcode-analyze==0.105.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.
|
83
|
-
replserver = ["robotcode-repl-server==0.
|
82
|
+
repl = ["robotcode-repl==0.105.0"]
|
83
|
+
replserver = ["robotcode-repl-server==0.105.0"]
|
84
84
|
colored = ["rich"]
|
85
85
|
all = [
|
86
|
-
"robotcode-debugger==0.
|
87
|
-
"robotcode-language-server==0.
|
88
|
-
"robotcode-runner==0.
|
89
|
-
"robotcode-analyze==0.
|
90
|
-
"robotcode-repl==0.
|
91
|
-
"robotcode-repl-server==0.
|
86
|
+
"robotcode-debugger==0.105.0",
|
87
|
+
"robotcode-language-server==0.105.0",
|
88
|
+
"robotcode-runner==0.105.0",
|
89
|
+
"robotcode-analyze==0.105.0",
|
90
|
+
"robotcode-repl==0.105.0",
|
91
|
+
"robotcode-repl-server==0.105.0",
|
92
92
|
"PyYAML>=5.4",
|
93
93
|
"robotframework-robocop>=2.0.0",
|
94
94
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.105.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.104.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
|