robotcode 1.7.0__tar.gz → 1.9.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-1.7.0 → robotcode-1.9.0}/.gitignore +4 -1
- {robotcode-1.7.0 → robotcode-1.9.0}/CHANGELOG.md +69 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/PKG-INFO +49 -23
- {robotcode-1.7.0 → robotcode-1.9.0}/README.md +33 -7
- {robotcode-1.7.0 → robotcode-1.9.0}/pyproject.toml +15 -15
- robotcode-1.9.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-1.7.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-1.7.0 → robotcode-1.9.0}/LICENSE.txt +0 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/hatch.toml +0 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-1.7.0 → robotcode-1.9.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,75 @@
|
|
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.9.0](https://github.com/robotcodedev/robotcode/compare/v1.8.0..v1.9.0) - 2025-09-12
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **robot:** Update class inheritance from BaseOptions to RobotBaseOptions for consistency ([1f18c52](https://github.com/robotcodedev/robotcode/commit/1f18c52600e9e467c835f9ebc0586b093e201def))
|
10
|
+
- **robot:** Improve timeout error messages for library and variable loading ([d698900](https://github.com/robotcodedev/robotcode/commit/d698900bad4e0df6df26c925905777b245414164))
|
11
|
+
- **robot:** Use --no* for disabled RF flags (e.g. --noexitonfailure) instead of short enable flags ([a6ffcf5](https://github.com/robotcodedev/robotcode/commit/a6ffcf56fdaa76efcb2f7ec7b6cfbad6d6ea2ddb))
|
12
|
+
- **tests:** Use raw string notation for regex in exception matchers ([d6ba124](https://github.com/robotcodedev/robotcode/commit/d6ba12461f9f29e680c094b1f9279206300fb322))
|
13
|
+
|
14
|
+
|
15
|
+
### Documentation
|
16
|
+
|
17
|
+
- **config:** Add load-library-timeout option for library and variable loading to json schema ([d93a397](https://github.com/robotcodedev/robotcode/commit/d93a397fcb2018b46cca2b41c186e559709d09bd))
|
18
|
+
- Enhance README.md's and remove redundant license files across packages ([f21f4ea](https://github.com/robotcodedev/robotcode/commit/f21f4eafc43cf6bbea60e87f15025a6c4dcfed7c))
|
19
|
+
- Add comprehensive security policy and reporting guidelines ([a49027a](https://github.com/robotcodedev/robotcode/commit/a49027a2ba6c6eaa4d96a4cbb78f91cc8ded4d91))
|
20
|
+
- Update links and improve wording in documentation ([409c393](https://github.com/robotcodedev/robotcode/commit/409c393b716904a66b76885400f3953083eb8a7d))
|
21
|
+
- Reorganize support section in README.md for clarity ([22e56b7](https://github.com/robotcodedev/robotcode/commit/22e56b7a4e4e8ec47d62649ef83445b32aeb3742))
|
22
|
+
|
23
|
+
|
24
|
+
### Features
|
25
|
+
|
26
|
+
- **analyze,robot:** Add configurable load_library_timeout with CLI flag and robot.toml support ([461212d](https://github.com/robotcodedev/robotcode/commit/461212d8c5ce8f24ce795b33ed0b6106bbba9497))
|
27
|
+
|
28
|
+
Add configurable library/variable load timeout. Sources (precedence):
|
29
|
+
|
30
|
+
analyze code: --load-library-timeout / --no-load-library-timeout
|
31
|
+
VS Code setting: robotcode.analysis.robot.loadLibraryTimeout
|
32
|
+
robot.toml / pyproject: [tool.robotcode-analyze] load-library-timeout
|
33
|
+
Env: ROBOTCODE_LOAD_LIBRARY_TIMEOUT
|
34
|
+
Default: 10
|
35
|
+
Replaces previous hard-coded timeout, adds validation (>0), clearer docs, and examples.
|
36
|
+
|
37
|
+
- **robot:** Define more detailed error message for library load timeout ([d5848ab](https://github.com/robotcodedev/robotcode/commit/d5848ab6d9b1285a6dc2465869b2bc274693603e))
|
38
|
+
- **robot:** Environment variable for load library timeout ([20c98c3](https://github.com/robotcodedev/robotcode/commit/20c98c3db7beaa9e67b8214f41976a70048305e6))
|
39
|
+
|
40
|
+
|
41
|
+
### Refactor
|
42
|
+
|
43
|
+
- **tests:** Remove performance tests for argument processing ([d019a60](https://github.com/robotcodedev/robotcode/commit/d019a60fccb23e3d4a7d1269aae3379b97ce803b))
|
44
|
+
|
45
|
+
|
46
|
+
## [1.8.0](https://github.com/robotcodedev/robotcode/compare/v1.7.0..v1.8.0) - 2025-08-15
|
47
|
+
|
48
|
+
### Bug Fixes
|
49
|
+
|
50
|
+
- **vscode:** Improve handling of active environment path changes in PythonManager ([79e410e](https://github.com/robotcodedev/robotcode/commit/79e410ee275c1ce701ca438cef99d4c11be312a3))
|
51
|
+
|
52
|
+
|
53
|
+
### Documentation
|
54
|
+
|
55
|
+
- **contributing:** Remove emojis and improve formatting for clarity ([b5bf94d](https://github.com/robotcodedev/robotcode/commit/b5bf94deb145c869aca55ac11c250156293413ff))
|
56
|
+
- **copilot-instructions:** Update formatting and punctuation for clarity and consistency ([d39a5fc](https://github.com/robotcodedev/robotcode/commit/d39a5fc3adfffda4d8093e49ff5687cd7cfb1669))
|
57
|
+
- **css:** Update brand colors and button styles for Robot Framework theme ([3b84bb4](https://github.com/robotcodedev/robotcode/commit/3b84bb48ad07e637cb49238c7c87fb7e4f9126d9))
|
58
|
+
- **tips:** Correct link to "Why is my variable shown as 'not found'" article ([0f45265](https://github.com/robotcodedev/robotcode/commit/0f45265752c1f409f6bbca4a64d3a9c23fc9be39))
|
59
|
+
- **tips:** Reorganize tip and tricks files with numbered prefixes and finish why_variable_not_found article ([4a9156c](https://github.com/robotcodedev/robotcode/commit/4a9156cc6bdb9cd4a4ccd2400435e70b1d24c0ef))
|
60
|
+
- Redesign landing page a bit ([b9dcf16](https://github.com/robotcodedev/robotcode/commit/b9dcf1641d485f9ce51a1d535393c7c926be4995))
|
61
|
+
- Add commit message standard to guidelines ([2db7f61](https://github.com/robotcodedev/robotcode/commit/2db7f61e12c280663fe9fc5d4f1adf6b286e0ff6))
|
62
|
+
- Add CLAUDE.md for project guidance and development instructions ([53bcc04](https://github.com/robotcodedev/robotcode/commit/53bcc04bfb636b53a21b8e9e9a57753d1fbe8e81))
|
63
|
+
- Add project language requirement to ensure consistency in code and documentation ([a6baec4](https://github.com/robotcodedev/robotcode/commit/a6baec46e0a9405296b869dac7368f1cada6211a))
|
64
|
+
- Enhance guidance on modular resource file structure and performance considerations ([7800f67](https://github.com/robotcodedev/robotcode/commit/7800f673333a8bad7d405201f8be0bb0a4925b93))
|
65
|
+
- Update requirements for Python, Robot Framework, and VSCode versions ([e91918d](https://github.com/robotcodedev/robotcode/commit/e91918d049e2a7660168d7e6c80d4e802c72a930))
|
66
|
+
- Add support section to README.md with sponsorship details ([675cc9c](https://github.com/robotcodedev/robotcode/commit/675cc9c927670adec584e23da9aa5e10b1120197))
|
67
|
+
|
68
|
+
|
69
|
+
### Features
|
70
|
+
|
71
|
+
- **docs:** Integrate lite-youtube-embed and update search provider to Algolia ([aa02835](https://github.com/robotcodedev/robotcode/commit/aa02835d007b2041b4e8572fb1340608520524d5))
|
72
|
+
|
73
|
+
|
5
74
|
## [1.7.0](https://github.com/robotcodedev/robotcode/compare/v1.6.0..v1.7.0) - 2025-07-31
|
6
75
|
|
7
76
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.9.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,49 +34,49 @@ 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.9.0
|
38
|
+
Requires-Dist: robotcode-plugin==1.9.0
|
39
|
+
Requires-Dist: robotcode-robot==1.9.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==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.9.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==1.9.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==1.9.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==1.9.0; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==1.9.0; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==1.9.0; extra == 'all'
|
50
50
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
51
51
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==1.
|
52
|
+
Requires-Dist: robotcode-analyze==1.9.0; extra == 'analyze'
|
53
53
|
Provides-Extra: colored
|
54
54
|
Requires-Dist: rich; extra == 'colored'
|
55
55
|
Provides-Extra: debugger
|
56
|
-
Requires-Dist: robotcode-debugger==1.
|
56
|
+
Requires-Dist: robotcode-debugger==1.9.0; extra == 'debugger'
|
57
57
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==1.
|
58
|
+
Requires-Dist: robotcode-language-server==1.9.0; extra == 'languageserver'
|
59
59
|
Provides-Extra: lint
|
60
60
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
61
61
|
Provides-Extra: repl
|
62
|
-
Requires-Dist: robotcode-repl==1.
|
62
|
+
Requires-Dist: robotcode-repl==1.9.0; extra == 'repl'
|
63
63
|
Provides-Extra: replserver
|
64
|
-
Requires-Dist: robotcode-repl-server==1.
|
64
|
+
Requires-Dist: robotcode-repl-server==1.9.0; extra == 'replserver'
|
65
65
|
Provides-Extra: rest
|
66
66
|
Requires-Dist: docutils; extra == 'rest'
|
67
67
|
Provides-Extra: runner
|
68
|
-
Requires-Dist: robotcode-runner==1.
|
68
|
+
Requires-Dist: robotcode-runner==1.9.0; extra == 'runner'
|
69
69
|
Provides-Extra: yaml
|
70
70
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
71
71
|
Description-Content-Type: text/markdown
|
72
72
|
|
73
73
|
# RobotCode - The Ultimate Robot Framework Toolset
|
74
74
|
|
75
|
-
[](https://github.com/robotcodedev/robotcode/blob/
|
75
|
+
[](https://github.com/robotcodedev/robotcode/blob/main/LICENSE)
|
76
76
|
[](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
|
77
77
|
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
78
78
|
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
79
|
-
[](https://plugins.jetbrains.com/plugin/26216)
|
80
80
|
[](https://plugins.jetbrains.com/plugin/26216)
|
81
81
|
[](https://pypi.org/project/robotcode)
|
82
82
|
[](https://pypi.org/project/robotcode)
|
@@ -124,7 +124,6 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
124
124
|
- **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
|
125
125
|
- **And More!**: Check out the [official documentation](https://robotcode.io) for more details.
|
126
126
|
|
127
|
-
|
128
127
|
## Requirements
|
129
128
|
|
130
129
|
### Python and Robot Framework Versions
|
@@ -133,7 +132,7 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
133
132
|
|
134
133
|
### IDE Support
|
135
134
|
|
136
|
-
- Visual Studio Code 1.99 or newer
|
135
|
+
- Visual Studio Code 1.99.0 or newer
|
137
136
|
- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
|
138
137
|
|
139
138
|
### Deprecated Python and Robot Framework Versions
|
@@ -184,7 +183,7 @@ To get the most out of RobotCode, we recommend using:
|
|
184
183
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
185
184
|
|
186
185
|
**Extensions:**
|
187
|
-
RobotCode
|
186
|
+
RobotCode declares dependencies on the [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) and [Python Debugger](https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy) extensions so VS Code installs them when required. Additional extensions may be needed depending on your project.
|
188
187
|
|
189
188
|
|
190
189
|
### IntelliJ IDEA or PyCharm
|
@@ -213,7 +212,7 @@ RobotCode automatically installs the [Python](https://marketplace.visualstudio.c
|
|
213
212
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
214
213
|
|
215
214
|
**Plugins:**
|
216
|
-
RobotCode
|
215
|
+
RobotCode declares a dependency on [LSP4IJ](https://plugins.jetbrains.com/plugin/23257) so your IDE installs it automatically. Additional plugins may be required depending on your project needs.
|
217
216
|
|
218
217
|
|
219
218
|
## Documentation
|
@@ -228,6 +227,29 @@ Here are some additional resources to help you troubleshoot or learn more:
|
|
228
227
|
- **[Support](https://robotcode.io/support/):** Learn how to get help and report issues.
|
229
228
|
|
230
229
|
|
230
|
+
## Support RobotCode
|
231
|
+
|
232
|
+
RobotCode is driven by the passion of its lead developer and the support of a growing community. To continue adding new features, improving stability, and expanding the ecosystem, your involvement is essential. Whether you contribute code, offer feedback, or provide financial support, you help shape the future of RobotCode.
|
233
|
+
|
234
|
+
**Become a Sponsor:**
|
235
|
+
- [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
|
236
|
+
- [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
|
237
|
+
|
238
|
+
**Corporate Sponsorship:**
|
239
|
+
- Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
|
240
|
+
- Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
|
241
|
+
|
242
|
+
**Other Ways to Support:**
|
243
|
+
- Star the repository
|
244
|
+
- Leave a review on the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode) and [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/26216)
|
245
|
+
- Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
246
|
+
- Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
|
247
|
+
- Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
248
|
+
- Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
249
|
+
- Improve tests (edge cases, large suites, multi-root, versions)
|
250
|
+
- Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
|
251
|
+
|
252
|
+
|
231
253
|
## License
|
232
254
|
|
233
255
|
This project is licensed under the [Apache 2.0 License](https://spdx.org/licenses/Apache-2.0.html).
|
@@ -235,4 +257,8 @@ This project is licensed under the [Apache 2.0 License](https://spdx.org/license
|
|
235
257
|
---
|
236
258
|
|
237
259
|
## Powered by
|
238
|
-
|
260
|
+
|
261
|
+
[Robot Framework Foundation](https://robotframework.org/foundation)
|
262
|
+
|
263
|
+
|
264
|
+
[JetBrains](https://jb.gg/OpenSourceSupport)
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# RobotCode - The Ultimate Robot Framework Toolset
|
2
2
|
|
3
|
-
[](https://github.com/robotcodedev/robotcode/blob/
|
3
|
+
[](https://github.com/robotcodedev/robotcode/blob/main/LICENSE)
|
4
4
|
[](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
|
5
5
|
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
6
6
|
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
7
|
-
[](https://plugins.jetbrains.com/plugin/26216)
|
8
8
|
[](https://plugins.jetbrains.com/plugin/26216)
|
9
9
|
[](https://pypi.org/project/robotcode)
|
10
10
|
[](https://pypi.org/project/robotcode)
|
@@ -52,7 +52,6 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
52
52
|
- **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
|
53
53
|
- **And More!**: Check out the [official documentation](https://robotcode.io) for more details.
|
54
54
|
|
55
|
-
|
56
55
|
## Requirements
|
57
56
|
|
58
57
|
### Python and Robot Framework Versions
|
@@ -61,7 +60,7 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
61
60
|
|
62
61
|
### IDE Support
|
63
62
|
|
64
|
-
- Visual Studio Code 1.99 or newer
|
63
|
+
- Visual Studio Code 1.99.0 or newer
|
65
64
|
- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
|
66
65
|
|
67
66
|
### Deprecated Python and Robot Framework Versions
|
@@ -112,7 +111,7 @@ To get the most out of RobotCode, we recommend using:
|
|
112
111
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
113
112
|
|
114
113
|
**Extensions:**
|
115
|
-
RobotCode
|
114
|
+
RobotCode declares dependencies on the [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) and [Python Debugger](https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy) extensions so VS Code installs them when required. Additional extensions may be needed depending on your project.
|
116
115
|
|
117
116
|
|
118
117
|
### IntelliJ IDEA or PyCharm
|
@@ -141,7 +140,7 @@ RobotCode automatically installs the [Python](https://marketplace.visualstudio.c
|
|
141
140
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
142
141
|
|
143
142
|
**Plugins:**
|
144
|
-
RobotCode
|
143
|
+
RobotCode declares a dependency on [LSP4IJ](https://plugins.jetbrains.com/plugin/23257) so your IDE installs it automatically. Additional plugins may be required depending on your project needs.
|
145
144
|
|
146
145
|
|
147
146
|
## Documentation
|
@@ -156,6 +155,29 @@ Here are some additional resources to help you troubleshoot or learn more:
|
|
156
155
|
- **[Support](https://robotcode.io/support/):** Learn how to get help and report issues.
|
157
156
|
|
158
157
|
|
158
|
+
## Support RobotCode
|
159
|
+
|
160
|
+
RobotCode is driven by the passion of its lead developer and the support of a growing community. To continue adding new features, improving stability, and expanding the ecosystem, your involvement is essential. Whether you contribute code, offer feedback, or provide financial support, you help shape the future of RobotCode.
|
161
|
+
|
162
|
+
**Become a Sponsor:**
|
163
|
+
- [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
|
164
|
+
- [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
|
165
|
+
|
166
|
+
**Corporate Sponsorship:**
|
167
|
+
- Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
|
168
|
+
- Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
|
169
|
+
|
170
|
+
**Other Ways to Support:**
|
171
|
+
- Star the repository
|
172
|
+
- Leave a review on the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode) and [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/26216)
|
173
|
+
- Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
174
|
+
- Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
|
175
|
+
- Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
176
|
+
- Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
177
|
+
- Improve tests (edge cases, large suites, multi-root, versions)
|
178
|
+
- Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
|
179
|
+
|
180
|
+
|
159
181
|
## License
|
160
182
|
|
161
183
|
This project is licensed under the [Apache 2.0 License](https://spdx.org/licenses/Apache-2.0.html).
|
@@ -163,4 +185,8 @@ This project is licensed under the [Apache 2.0 License](https://spdx.org/license
|
|
163
185
|
---
|
164
186
|
|
165
187
|
## Powered by
|
166
|
-
|
188
|
+
|
189
|
+
[Robot Framework Foundation](https://robotframework.org/foundation)
|
190
|
+
|
191
|
+
|
192
|
+
[JetBrains](https://jb.gg/OpenSourceSupport)
|
@@ -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.9.0",
|
55
|
+
"robotcode-plugin==1.9.0",
|
56
|
+
"robotcode-robot==1.9.0",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,23 +71,23 @@ 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.9.0"]
|
75
|
+
languageserver = ["robotcode-language-server==1.9.0"]
|
76
|
+
runner = ["robotcode-runner==1.9.0"]
|
77
|
+
analyze = ["robotcode-analyze==1.9.0"]
|
78
78
|
yaml = ["PyYAML>=5.4"]
|
79
79
|
lint = ["robotframework-robocop>=2.0.0"]
|
80
80
|
rest = ["docutils"]
|
81
|
-
repl = ["robotcode-repl==1.
|
82
|
-
replserver = ["robotcode-repl-server==1.
|
81
|
+
repl = ["robotcode-repl==1.9.0"]
|
82
|
+
replserver = ["robotcode-repl-server==1.9.0"]
|
83
83
|
colored = ["rich"]
|
84
84
|
all = [
|
85
|
-
"robotcode-debugger==1.
|
86
|
-
"robotcode-language-server==1.
|
87
|
-
"robotcode-runner==1.
|
88
|
-
"robotcode-analyze==1.
|
89
|
-
"robotcode-repl==1.
|
90
|
-
"robotcode-repl-server==1.
|
85
|
+
"robotcode-debugger==1.9.0",
|
86
|
+
"robotcode-language-server==1.9.0",
|
87
|
+
"robotcode-runner==1.9.0",
|
88
|
+
"robotcode-analyze==1.9.0",
|
89
|
+
"robotcode-repl==1.9.0",
|
90
|
+
"robotcode-repl-server==1.9.0",
|
91
91
|
"PyYAML>=5.4",
|
92
92
|
"robotframework-robocop>=2.0.0",
|
93
93
|
"docutils",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.9.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.7.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
|