robotcode 1.9.0__tar.gz → 2.0.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-1.9.0 → robotcode-2.0.1}/CHANGELOG.md +37 -0
- {robotcode-1.9.0 → robotcode-2.0.1}/PKG-INFO +26 -37
- {robotcode-1.9.0 → robotcode-2.0.1}/README.md +8 -18
- {robotcode-1.9.0 → robotcode-2.0.1}/hatch.toml +1 -5
- {robotcode-1.9.0 → robotcode-2.0.1}/pyproject.toml +18 -20
- robotcode-2.0.1/src/robotcode/cli/__version__.py +1 -0
- robotcode-1.9.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-1.9.0 → robotcode-2.0.1}/.gitignore +0 -0
- {robotcode-1.9.0 → robotcode-2.0.1}/LICENSE.txt +0 -0
- {robotcode-1.9.0 → robotcode-2.0.1}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-1.9.0 → robotcode-2.0.1}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-1.9.0 → robotcode-2.0.1}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-1.9.0 → robotcode-2.0.1}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-1.9.0 → robotcode-2.0.1}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-1.9.0 → robotcode-2.0.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
|
+
## [2.0.1](https://github.com/robotcodedev/robotcode/compare/v2.0.0..v2.0.1) - 2025-10-10
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- Corrected packaging of python wheels/vscode packages ([242f822](https://github.com/robotcodedev/robotcode/commit/242f822c5ffa2b6c0611620f0701a0286d405d87))
|
10
|
+
|
11
|
+
|
12
|
+
## [2.0.0](https://github.com/robotcodedev/robotcode/compare/v1.9.0..v2.0.0) - 2025-10-10
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
- **debugger:** Handle breakpoints in `__init__.robot` files correctly ([34da5e7](https://github.com/robotcodedev/robotcode/commit/34da5e7db1955f7dde5a3a1c60f46cdc9fc6ea82))
|
17
|
+
- **langserver:** Support for Python 3.14 ([d7fe624](https://github.com/robotcodedev/robotcode/commit/d7fe624a79a09ecfbc4fa0ff61acb86a0d54b873))
|
18
|
+
- **langserver:** Update sort_text to use e.label for better clarity in import completion items ([39e1272](https://github.com/robotcodedev/robotcode/commit/39e12726f73004ef9083dd767ef8d1dbd6c9bd06))
|
19
|
+
- **robot:** Change logger level from critical to trace for LoadLibrary timeout ([52fc3b0](https://github.com/robotcodedev/robotcode/commit/52fc3b0c642447bd9cb424d16693307bab1c285f))
|
20
|
+
- **robot:** Change logger level from critical to trace for load_library_timeout ([c0e6898](https://github.com/robotcodedev/robotcode/commit/c0e68986287c79ae411a95286d1e31d41c8a0b36))
|
21
|
+
- Remove Python 3.8 support and update classifiers for Python 3.14 ([e642d5b](https://github.com/robotcodedev/robotcode/commit/e642d5bf4ea9cf9169ea9aadcc4945251a3063db))
|
22
|
+
|
23
|
+
|
24
|
+
### Documentation
|
25
|
+
|
26
|
+
- Update Python version references to 3.12.6 and adjust testing matrix to 3.10-3.14 ([0d41933](https://github.com/robotcodedev/robotcode/commit/0d41933d15b516c7884557cbba157230ac96a70b))
|
27
|
+
- Disable math rendering in VitePress config and remove related dependencies ([5390600](https://github.com/robotcodedev/robotcode/commit/5390600fd211cbe8761a51f0864439c837605d50))
|
28
|
+
|
29
|
+
|
30
|
+
### Features
|
31
|
+
|
32
|
+
- **langserver:** Add support for folding documentation settings ([2b627d7](https://github.com/robotcodedev/robotcode/commit/2b627d7e107a6290da8c6ac7f77e246b53553071))
|
33
|
+
- **langserver:** Remove Robotidy support ([c49bf40](https://github.com/robotcodedev/robotcode/commit/c49bf405900ca9226463f87719f6cc678d8ff8ae))
|
34
|
+
- **BREAKING**: remove Robotidy support
|
35
|
+
|
36
|
+
Use robotframework-robocop>=6.0 for formatting.
|
37
|
+
|
38
|
+
- Drop Python 3.8 and 3.9 support, require Python 3.10+ ([7c825de](https://github.com/robotcodedev/robotcode/commit/7c825de2fa1a956e375dc01f542c66b8975d687c))
|
39
|
+
- **BREAKING**: Python 3.8 and 3.9 are no longer supported. Minimum required version is now Python 3.10.
|
40
|
+
|
41
|
+
|
5
42
|
## [1.9.0](https://github.com/robotcodedev/robotcode/compare/v1.8.0..v1.9.0) - 2025-09-12
|
6
43
|
|
7
44
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version:
|
3
|
+
Version: 2.0.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
|
@@ -18,12 +18,11 @@ Classifier: Framework :: Robot Framework :: Tool
|
|
18
18
|
Classifier: Intended Audience :: Developers
|
19
19
|
Classifier: License :: OSI Approved :: Apache Software License
|
20
20
|
Classifier: Operating System :: OS Independent
|
21
|
-
Classifier: Programming Language :: Python :: 3.8
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
23
21
|
Classifier: Programming Language :: Python :: 3.10
|
24
22
|
Classifier: Programming Language :: Python :: 3.11
|
25
23
|
Classifier: Programming Language :: Python :: 3.12
|
26
24
|
Classifier: Programming Language :: Python :: 3.13
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
27
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
28
27
|
Classifier: Topic :: Software Development :: Debuggers
|
29
28
|
Classifier: Topic :: Software Development :: Quality Assurance
|
@@ -33,39 +32,39 @@ Classifier: Topic :: Software Development :: Testing :: BDD
|
|
33
32
|
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
34
33
|
Classifier: Topic :: Utilities
|
35
34
|
Classifier: Typing :: Typed
|
36
|
-
Requires-Python: >=3.
|
37
|
-
Requires-Dist: robotcode-core==
|
38
|
-
Requires-Dist: robotcode-plugin==
|
39
|
-
Requires-Dist: robotcode-robot==
|
35
|
+
Requires-Python: >=3.10
|
36
|
+
Requires-Dist: robotcode-core==2.0.1
|
37
|
+
Requires-Dist: robotcode-plugin==2.0.1
|
38
|
+
Requires-Dist: robotcode-robot==2.0.1
|
40
39
|
Provides-Extra: all
|
41
40
|
Requires-Dist: docutils; extra == 'all'
|
42
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
43
42
|
Requires-Dist: rich; extra == 'all'
|
44
|
-
Requires-Dist: robotcode-analyze==
|
45
|
-
Requires-Dist: robotcode-debugger==
|
46
|
-
Requires-Dist: robotcode-language-server==
|
47
|
-
Requires-Dist: robotcode-repl-server==
|
48
|
-
Requires-Dist: robotcode-repl==
|
49
|
-
Requires-Dist: robotcode-runner==
|
43
|
+
Requires-Dist: robotcode-analyze==2.0.1; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==2.0.1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==2.0.1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-repl-server==2.0.1; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl==2.0.1; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-runner==2.0.1; extra == 'all'
|
50
49
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
51
50
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==
|
51
|
+
Requires-Dist: robotcode-analyze==2.0.1; extra == 'analyze'
|
53
52
|
Provides-Extra: colored
|
54
53
|
Requires-Dist: rich; extra == 'colored'
|
55
54
|
Provides-Extra: debugger
|
56
|
-
Requires-Dist: robotcode-debugger==
|
55
|
+
Requires-Dist: robotcode-debugger==2.0.1; extra == 'debugger'
|
57
56
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==
|
57
|
+
Requires-Dist: robotcode-language-server==2.0.1; extra == 'languageserver'
|
59
58
|
Provides-Extra: lint
|
60
59
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
61
60
|
Provides-Extra: repl
|
62
|
-
Requires-Dist: robotcode-repl==
|
61
|
+
Requires-Dist: robotcode-repl==2.0.1; extra == 'repl'
|
63
62
|
Provides-Extra: replserver
|
64
|
-
Requires-Dist: robotcode-repl-server==
|
63
|
+
Requires-Dist: robotcode-repl-server==2.0.1; extra == 'replserver'
|
65
64
|
Provides-Extra: rest
|
66
65
|
Requires-Dist: docutils; extra == 'rest'
|
67
66
|
Provides-Extra: runner
|
68
|
-
Requires-Dist: robotcode-runner==
|
67
|
+
Requires-Dist: robotcode-runner==2.0.1; extra == 'runner'
|
69
68
|
Provides-Extra: yaml
|
70
69
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
71
70
|
Description-Content-Type: text/markdown
|
@@ -118,7 +117,7 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
118
117
|
- **Debugging**: Debug your Robot Framework tests with ease.
|
119
118
|
- **Command Line Tools**: A wide array of tools to assist in setting up and managing Robot Framework environments.
|
120
119
|
- **Code Analysis with Robocop**: Install [Robocop](https://robocop.readthedocs.io/) for additional code analysis.
|
121
|
-
- **Code Formatting**:
|
120
|
+
- **Code Formatting**: Use [Robocop's formatter](https://robocop.readthedocs.io/) for consistent code formatting.
|
122
121
|
- **Multi-root Workspace Support**: Manage multiple Robot Framework projects with different Python environments simultaneously.
|
123
122
|
- **Customizable Settings**: Configure the extension to fit your needs.
|
124
123
|
- **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
|
@@ -135,30 +134,20 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
135
134
|
- Visual Studio Code 1.99.0 or newer
|
136
135
|
- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
|
137
136
|
|
138
|
-
###
|
139
|
-
|
140
|
-
**⚠️ DEPRECATION WARNING:**
|
141
|
-
Support for Python 3.8, 3.9, and Robot Framework 4.1 is deprecated and will be removed in a future release. To ensure compatibility and benefit from ongoing improvements, please upgrade to Python 3.10 or later and Robot Framework 5.0 or later.
|
137
|
+
### Python and Robot Framework Version Requirements
|
142
138
|
|
143
139
|
**Python Version Requirements:**
|
144
|
-
|
145
|
-
|
146
|
-
**Robot Framework Version Requirements:**
|
147
|
-
Robot Framework 4.1 is outdated. Given the regular release cadence of Robot Framework—typically two major versions per year—maintaining support for older versions introduces significant overhead. That effort is better spent on supporting current and upcoming features.
|
148
|
-
|
149
|
-
**Compatibility and Limitations:**
|
150
|
-
RobotCode currently remains compatible with Python 3.8+ and Robot Framework 4.1+, but with important limitations:
|
151
|
-
• New features may not be available for older versions.
|
152
|
-
• Development and testing efforts are focused on newer versions.
|
153
|
-
|
154
|
-
**Why Python 3.10:**
|
155
|
-
After Python 3.9 reaches end-of-life, RobotCode will start using Python 3.10+ features that are not backward-compatible. Python 3.10 introduces several important improvements, including:
|
140
|
+
RobotCode requires Python 3.10 or newer. Python 3.8 and 3.9 are no longer supported as they have reached or are approaching end-of-life status. Python 3.10 provides several important improvements that enable cleaner, more efficient code:
|
156
141
|
• Structural pattern matching
|
157
142
|
• More informative error messages
|
158
143
|
• Simplified type hints using the | operator
|
159
144
|
• Performance enhancements
|
160
145
|
|
161
|
-
|
146
|
+
**Robot Framework Version Requirements:**
|
147
|
+
RobotCode supports Robot Framework 5.0 or later. Older versions like Robot Framework 4.1 are no longer supported due to their outdated nature and the regular release cadence of Robot Framework.
|
148
|
+
|
149
|
+
**Why These Requirements:**
|
150
|
+
Many key tools in the Robot Framework ecosystem—such as robocop and the Browser library—have already moved to similar requirements. This alignment ensures compatibility and allows RobotCode to leverage modern Python features for improved performance and developer experience.
|
162
151
|
|
163
152
|
**Recommendation:**
|
164
153
|
To get the most out of RobotCode, we recommend using:
|
@@ -46,7 +46,7 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
46
46
|
- **Debugging**: Debug your Robot Framework tests with ease.
|
47
47
|
- **Command Line Tools**: A wide array of tools to assist in setting up and managing Robot Framework environments.
|
48
48
|
- **Code Analysis with Robocop**: Install [Robocop](https://robocop.readthedocs.io/) for additional code analysis.
|
49
|
-
- **Code Formatting**:
|
49
|
+
- **Code Formatting**: Use [Robocop's formatter](https://robocop.readthedocs.io/) for consistent code formatting.
|
50
50
|
- **Multi-root Workspace Support**: Manage multiple Robot Framework projects with different Python environments simultaneously.
|
51
51
|
- **Customizable Settings**: Configure the extension to fit your needs.
|
52
52
|
- **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
|
@@ -63,30 +63,20 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
63
63
|
- Visual Studio Code 1.99.0 or newer
|
64
64
|
- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
|
65
65
|
|
66
|
-
###
|
67
|
-
|
68
|
-
**⚠️ DEPRECATION WARNING:**
|
69
|
-
Support for Python 3.8, 3.9, and Robot Framework 4.1 is deprecated and will be removed in a future release. To ensure compatibility and benefit from ongoing improvements, please upgrade to Python 3.10 or later and Robot Framework 5.0 or later.
|
66
|
+
### Python and Robot Framework Version Requirements
|
70
67
|
|
71
68
|
**Python Version Requirements:**
|
72
|
-
|
73
|
-
|
74
|
-
**Robot Framework Version Requirements:**
|
75
|
-
Robot Framework 4.1 is outdated. Given the regular release cadence of Robot Framework—typically two major versions per year—maintaining support for older versions introduces significant overhead. That effort is better spent on supporting current and upcoming features.
|
76
|
-
|
77
|
-
**Compatibility and Limitations:**
|
78
|
-
RobotCode currently remains compatible with Python 3.8+ and Robot Framework 4.1+, but with important limitations:
|
79
|
-
• New features may not be available for older versions.
|
80
|
-
• Development and testing efforts are focused on newer versions.
|
81
|
-
|
82
|
-
**Why Python 3.10:**
|
83
|
-
After Python 3.9 reaches end-of-life, RobotCode will start using Python 3.10+ features that are not backward-compatible. Python 3.10 introduces several important improvements, including:
|
69
|
+
RobotCode requires Python 3.10 or newer. Python 3.8 and 3.9 are no longer supported as they have reached or are approaching end-of-life status. Python 3.10 provides several important improvements that enable cleaner, more efficient code:
|
84
70
|
• Structural pattern matching
|
85
71
|
• More informative error messages
|
86
72
|
• Simplified type hints using the | operator
|
87
73
|
• Performance enhancements
|
88
74
|
|
89
|
-
|
75
|
+
**Robot Framework Version Requirements:**
|
76
|
+
RobotCode supports Robot Framework 5.0 or later. Older versions like Robot Framework 4.1 are no longer supported due to their outdated nature and the regular release cadence of Robot Framework.
|
77
|
+
|
78
|
+
**Why These Requirements:**
|
79
|
+
Many key tools in the Robot Framework ecosystem—such as robocop and the Browser library—have already moved to similar requirements. This alignment ensures compatibility and allows RobotCode to leverage modern Python features for improved performance and developer experience.
|
90
80
|
|
91
81
|
**Recommendation:**
|
92
82
|
To get the most out of RobotCode, we recommend using:
|
@@ -56,15 +56,11 @@ extra-dependencies = [
|
|
56
56
|
python = "3.11"
|
57
57
|
post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
|
58
58
|
|
59
|
-
[envs.rfdevel38]
|
60
|
-
python = "3.8"
|
61
|
-
post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
|
62
|
-
|
63
59
|
[envs.devel]
|
64
60
|
python = "3.10"
|
65
61
|
|
66
62
|
[[envs.devel.matrix]]
|
67
|
-
python = ["3.
|
63
|
+
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
68
64
|
rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
|
69
65
|
|
70
66
|
[envs.devel.overrides]
|
@@ -30,12 +30,11 @@ classifiers = [
|
|
30
30
|
"Development Status :: 5 - Production/Stable",
|
31
31
|
"License :: OSI Approved :: Apache Software License",
|
32
32
|
"Operating System :: OS Independent",
|
33
|
-
"Programming Language :: Python :: 3.8",
|
34
|
-
"Programming Language :: Python :: 3.9",
|
35
33
|
"Programming Language :: Python :: 3.10",
|
36
34
|
"Programming Language :: Python :: 3.11",
|
37
35
|
"Programming Language :: Python :: 3.12",
|
38
36
|
"Programming Language :: Python :: 3.13",
|
37
|
+
"Programming Language :: Python :: 3.14",
|
39
38
|
"Programming Language :: Python :: Implementation :: CPython",
|
40
39
|
"Topic :: Software Development :: Testing",
|
41
40
|
"Topic :: Software Development :: Testing :: Acceptance",
|
@@ -49,11 +48,11 @@ classifiers = [
|
|
49
48
|
"Framework :: Robot Framework",
|
50
49
|
"Framework :: Robot Framework :: Tool",
|
51
50
|
]
|
52
|
-
requires-python = ">=3.
|
51
|
+
requires-python = ">=3.10"
|
53
52
|
dependencies = [
|
54
|
-
"robotcode-core==
|
55
|
-
"robotcode-plugin==
|
56
|
-
"robotcode-robot==
|
53
|
+
"robotcode-core==2.0.1",
|
54
|
+
"robotcode-plugin==2.0.1",
|
55
|
+
"robotcode-robot==2.0.1",
|
57
56
|
]
|
58
57
|
dynamic = ["version"]
|
59
58
|
|
@@ -71,23 +70,23 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
70
|
|
72
71
|
|
73
72
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==
|
75
|
-
languageserver = ["robotcode-language-server==
|
76
|
-
runner = ["robotcode-runner==
|
77
|
-
analyze = ["robotcode-analyze==
|
73
|
+
debugger = ["robotcode-debugger==2.0.1"]
|
74
|
+
languageserver = ["robotcode-language-server==2.0.1"]
|
75
|
+
runner = ["robotcode-runner==2.0.1"]
|
76
|
+
analyze = ["robotcode-analyze==2.0.1"]
|
78
77
|
yaml = ["PyYAML>=5.4"]
|
79
78
|
lint = ["robotframework-robocop>=2.0.0"]
|
80
79
|
rest = ["docutils"]
|
81
|
-
repl = ["robotcode-repl==
|
82
|
-
replserver = ["robotcode-repl-server==
|
80
|
+
repl = ["robotcode-repl==2.0.1"]
|
81
|
+
replserver = ["robotcode-repl-server==2.0.1"]
|
83
82
|
colored = ["rich"]
|
84
83
|
all = [
|
85
|
-
"robotcode-debugger==
|
86
|
-
"robotcode-language-server==
|
87
|
-
"robotcode-runner==
|
88
|
-
"robotcode-analyze==
|
89
|
-
"robotcode-repl==
|
90
|
-
"robotcode-repl-server==
|
84
|
+
"robotcode-debugger==2.0.1",
|
85
|
+
"robotcode-language-server==2.0.1",
|
86
|
+
"robotcode-runner==2.0.1",
|
87
|
+
"robotcode-analyze==2.0.1",
|
88
|
+
"robotcode-repl==2.0.1",
|
89
|
+
"robotcode-repl-server==2.0.1",
|
91
90
|
"PyYAML>=5.4",
|
92
91
|
"robotframework-robocop>=2.0.0",
|
93
92
|
"docutils",
|
@@ -262,7 +261,6 @@ module = [
|
|
262
261
|
"robot.*",
|
263
262
|
"robotremoteserver.*",
|
264
263
|
"debugpy.*",
|
265
|
-
"robotidy.*",
|
266
264
|
"robocop.*",
|
267
265
|
"pluggy",
|
268
266
|
]
|
@@ -291,7 +289,7 @@ no_implicit_reexport = false
|
|
291
289
|
[tool.pyright]
|
292
290
|
exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs", "intellij-client/build"]
|
293
291
|
typeCheckingMode = "off"
|
294
|
-
pythonVersion = "3.
|
292
|
+
pythonVersion = "3.10"
|
295
293
|
|
296
294
|
|
297
295
|
[tool.commitizen]
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "2.0.1"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.9.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
|