robotcode 1.8.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.8.0 → robotcode-1.9.0}/CHANGELOG.md +41 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/PKG-INFO +45 -46
- {robotcode-1.8.0 → robotcode-1.9.0}/README.md +29 -30
- {robotcode-1.8.0 → robotcode-1.9.0}/pyproject.toml +15 -15
- robotcode-1.9.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-1.8.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-1.8.0 → robotcode-1.9.0}/.gitignore +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/LICENSE.txt +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/hatch.toml +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-1.8.0 → robotcode-1.9.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,47 @@
|
|
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
|
+
|
5
46
|
## [1.8.0](https://github.com/robotcodedev/robotcode/compare/v1.7.0..v1.8.0) - 2025-08-15
|
6
47
|
|
7
48
|
### 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,30 +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
|
-
## Support RobotCode
|
129
|
-
|
130
|
-
RobotCode is developed and maintained by volunteers. Your support helps us continue improving and adding new features.
|
131
|
-
|
132
|
-
**Become a Sponsor:**
|
133
|
-
- [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
|
134
|
-
- [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
|
135
|
-
|
136
|
-
**Corporate Sponsorship:**
|
137
|
-
- Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
|
138
|
-
- Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
|
139
|
-
|
140
|
-
**Other Ways to Support:**
|
141
|
-
- Star the repository
|
142
|
-
- 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)
|
143
|
-
- Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
144
|
-
- Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
|
145
|
-
- Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
146
|
-
- Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
147
|
-
- Improve tests (edge cases, large suites, multi-root, versions)
|
148
|
-
- Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
|
149
|
-
|
150
|
-
|
151
127
|
## Requirements
|
152
128
|
|
153
129
|
### Python and Robot Framework Versions
|
@@ -156,7 +132,7 @@ RobotCode is developed and maintained by volunteers. Your support helps us conti
|
|
156
132
|
|
157
133
|
### IDE Support
|
158
134
|
|
159
|
-
- Visual Studio Code 1.99 or newer
|
135
|
+
- Visual Studio Code 1.99.0 or newer
|
160
136
|
- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
|
161
137
|
|
162
138
|
### Deprecated Python and Robot Framework Versions
|
@@ -207,7 +183,7 @@ To get the most out of RobotCode, we recommend using:
|
|
207
183
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
208
184
|
|
209
185
|
**Extensions:**
|
210
|
-
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.
|
211
187
|
|
212
188
|
|
213
189
|
### IntelliJ IDEA or PyCharm
|
@@ -236,7 +212,7 @@ RobotCode automatically installs the [Python](https://marketplace.visualstudio.c
|
|
236
212
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
237
213
|
|
238
214
|
**Plugins:**
|
239
|
-
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.
|
240
216
|
|
241
217
|
|
242
218
|
## Documentation
|
@@ -251,6 +227,29 @@ Here are some additional resources to help you troubleshoot or learn more:
|
|
251
227
|
- **[Support](https://robotcode.io/support/):** Learn how to get help and report issues.
|
252
228
|
|
253
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
|
+
|
254
253
|
## License
|
255
254
|
|
256
255
|
This project is licensed under the [Apache 2.0 License](https://spdx.org/licenses/Apache-2.0.html).
|
@@ -262,4 +261,4 @@ This project is licensed under the [Apache 2.0 License](https://spdx.org/license
|
|
262
261
|
[Robot Framework Foundation](https://robotframework.org/foundation)
|
263
262
|
|
264
263
|
|
265
|
-
[
|
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,30 +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
|
-
## Support RobotCode
|
57
|
-
|
58
|
-
RobotCode is developed and maintained by volunteers. Your support helps us continue improving and adding new features.
|
59
|
-
|
60
|
-
**Become a Sponsor:**
|
61
|
-
- [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
|
62
|
-
- [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
|
63
|
-
|
64
|
-
**Corporate Sponsorship:**
|
65
|
-
- Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
|
66
|
-
- Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
|
67
|
-
|
68
|
-
**Other Ways to Support:**
|
69
|
-
- Star the repository
|
70
|
-
- 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)
|
71
|
-
- Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
72
|
-
- Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
|
73
|
-
- Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
74
|
-
- Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
75
|
-
- Improve tests (edge cases, large suites, multi-root, versions)
|
76
|
-
- Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
|
77
|
-
|
78
|
-
|
79
55
|
## Requirements
|
80
56
|
|
81
57
|
### Python and Robot Framework Versions
|
@@ -84,7 +60,7 @@ RobotCode is developed and maintained by volunteers. Your support helps us conti
|
|
84
60
|
|
85
61
|
### IDE Support
|
86
62
|
|
87
|
-
- Visual Studio Code 1.99 or newer
|
63
|
+
- Visual Studio Code 1.99.0 or newer
|
88
64
|
- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
|
89
65
|
|
90
66
|
### Deprecated Python and Robot Framework Versions
|
@@ -135,7 +111,7 @@ To get the most out of RobotCode, we recommend using:
|
|
135
111
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
136
112
|
|
137
113
|
**Extensions:**
|
138
|
-
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.
|
139
115
|
|
140
116
|
|
141
117
|
### IntelliJ IDEA or PyCharm
|
@@ -164,7 +140,7 @@ RobotCode automatically installs the [Python](https://marketplace.visualstudio.c
|
|
164
140
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
165
141
|
|
166
142
|
**Plugins:**
|
167
|
-
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.
|
168
144
|
|
169
145
|
|
170
146
|
## Documentation
|
@@ -179,6 +155,29 @@ Here are some additional resources to help you troubleshoot or learn more:
|
|
179
155
|
- **[Support](https://robotcode.io/support/):** Learn how to get help and report issues.
|
180
156
|
|
181
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
|
+
|
182
181
|
## License
|
183
182
|
|
184
183
|
This project is licensed under the [Apache 2.0 License](https://spdx.org/licenses/Apache-2.0.html).
|
@@ -190,4 +189,4 @@ This project is licensed under the [Apache 2.0 License](https://spdx.org/license
|
|
190
189
|
[Robot Framework Foundation](https://robotframework.org/foundation)
|
191
190
|
|
192
191
|
|
193
|
-
[
|
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.8.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
|