robotcode 2.1.0__tar.gz → 2.2.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-2.1.0 → robotcode-2.2.0}/CHANGELOG.md +44 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/PKG-INFO +7 -7
- {robotcode-2.1.0 → robotcode-2.2.0}/hatch.toml +8 -2
- {robotcode-2.1.0 → robotcode-2.2.0}/pyproject.toml +6 -6
- robotcode-2.2.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-2.1.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-2.1.0 → robotcode-2.2.0}/.gitignore +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/LICENSE.txt +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/README.md +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-2.1.0 → robotcode-2.2.0}/src/robotcode/cli/py.typed +0 -0
|
@@ -2,6 +2,50 @@
|
|
|
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.2.0](https://github.com/robotcodedev/robotcode/compare/v2.1.0..v2.2.0) - 2026-01-02
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **intellij:** Add missing language method in RobotCodeCodeStyleSettingsProvider ([90673bf](https://github.com/robotcodedev/robotcode/commit/90673bf16393ff317079059c870c97340229f0e7))
|
|
10
|
+
- **langserver:** Default to folding ranges to character-based ([6cbefe2](https://github.com/robotcodedev/robotcode/commit/6cbefe2901890930a89ce7e53bcd1a26b51ba4e1))
|
|
11
|
+
|
|
12
|
+
Use character-based folding ranges by default when client capabilities are unknown.
|
|
13
|
+
|
|
14
|
+
- **robocop:** Update robocop documentation urls ([c15bdfa](https://github.com/robotcodedev/robotcode/commit/c15bdfa27713ed68959a8ccbf5a2d61469a8fa06))
|
|
15
|
+
- **robot:** Use explicit class reference for super() in VariablesDoc to allow slots ([8af05a9](https://github.com/robotcodedev/robotcode/commit/8af05a9756bd957c7cba03c0ca9ac91a691ab598))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Documentation
|
|
19
|
+
|
|
20
|
+
- Add some funny random hero images ([f62e1bd](https://github.com/robotcodedev/robotcode/commit/f62e1bd8cfe621414c1a45f318f687407731a401))
|
|
21
|
+
- Back to normal hero image ([57633b5](https://github.com/robotcodedev/robotcode/commit/57633b5a1271c5383a548234108ece0aa86be88d))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
- Add support for Robot Framework 7.4 ([3e140c9](https://github.com/robotcodedev/robotcode/commit/3e140c9a18fbe563f0f4c7a7fdee306fdcf97225))
|
|
27
|
+
- Enhance diagnostics and analysis features with progress indicators in verbose mode and performance improvements ([1ac9247](https://github.com/robotcodedev/robotcode/commit/1ac9247fa820605e66d6dc61f24732edab662f12))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Performance
|
|
31
|
+
|
|
32
|
+
- **lsp:** Use dataclass slots for protocol types ([82012e8](https://github.com/robotcodedev/robotcode/commit/82012e8c478b75e1781b3eb3ac9f9c3a4ce0c29a))
|
|
33
|
+
|
|
34
|
+
use @dataclass(slots=True) for LSP model classes to reduce per-instance memory overhead and speed up attribute access in LSP hot paths
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Refactor
|
|
39
|
+
|
|
40
|
+
- **core:** Simplify casing caches and add support for PEP 604 unions ([428226a](https://github.com/robotcodedev/robotcode/commit/428226a8d393e7f650e5b7caa43feb090587490c))
|
|
41
|
+
- Reduce lru_cache maxsize for performance optimization across multiple modules ([f715d32](https://github.com/robotcodedev/robotcode/commit/f715d3239ba19b6eaa9f8a346ab61bf524aa5dc8))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Testing
|
|
45
|
+
|
|
46
|
+
- Real pyproject file for test project ([c3e17b2](https://github.com/robotcodedev/robotcode/commit/c3e17b2203e1a23d7b7373d4b618f7039063a5cc))
|
|
47
|
+
|
|
48
|
+
|
|
5
49
|
## [2.1.0](https://github.com/robotcodedev/robotcode/compare/v2.0.4..v2.1.0) - 2025-12-02
|
|
6
50
|
|
|
7
51
|
### Documentation
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.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
|
|
@@ -48,23 +48,23 @@ Requires-Dist: robotcode-repl-server; extra == 'all'
|
|
|
48
48
|
Requires-Dist: robotcode-runner; extra == 'all'
|
|
49
49
|
Requires-Dist: robotframework-robocop>=6.0.0; extra == 'all'
|
|
50
50
|
Provides-Extra: analyze
|
|
51
|
-
Requires-Dist: robotcode-analyze==2.
|
|
51
|
+
Requires-Dist: robotcode-analyze==2.2.0; extra == 'analyze'
|
|
52
52
|
Provides-Extra: colored
|
|
53
53
|
Requires-Dist: rich; extra == 'colored'
|
|
54
54
|
Provides-Extra: debugger
|
|
55
|
-
Requires-Dist: robotcode-debugger==2.
|
|
55
|
+
Requires-Dist: robotcode-debugger==2.2.0; extra == 'debugger'
|
|
56
56
|
Provides-Extra: languageserver
|
|
57
|
-
Requires-Dist: robotcode-language-server==2.
|
|
57
|
+
Requires-Dist: robotcode-language-server==2.2.0; extra == 'languageserver'
|
|
58
58
|
Provides-Extra: lint
|
|
59
59
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
|
60
60
|
Provides-Extra: repl
|
|
61
|
-
Requires-Dist: robotcode-repl==2.
|
|
61
|
+
Requires-Dist: robotcode-repl==2.2.0; extra == 'repl'
|
|
62
62
|
Provides-Extra: replserver
|
|
63
|
-
Requires-Dist: robotcode-repl-server==2.
|
|
63
|
+
Requires-Dist: robotcode-repl-server==2.2.0; extra == 'replserver'
|
|
64
64
|
Provides-Extra: rest
|
|
65
65
|
Requires-Dist: docutils; extra == 'rest'
|
|
66
66
|
Provides-Extra: runner
|
|
67
|
-
Requires-Dist: robotcode-runner==2.
|
|
67
|
+
Requires-Dist: robotcode-runner==2.2.0; extra == 'runner'
|
|
68
68
|
Provides-Extra: yaml
|
|
69
69
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
|
70
70
|
Description-Content-Type: text/markdown
|
|
@@ -61,7 +61,7 @@ python = "3.10"
|
|
|
61
61
|
|
|
62
62
|
[[envs.devel.matrix]]
|
|
63
63
|
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
|
64
|
-
rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
|
|
64
|
+
rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73", "rf74"]
|
|
65
65
|
|
|
66
66
|
[envs.devel.overrides]
|
|
67
67
|
matrix.rf.dependencies = [
|
|
@@ -86,6 +86,9 @@ matrix.rf.dependencies = [
|
|
|
86
86
|
{ value = "robotframework~=7.3.0", if = [
|
|
87
87
|
"rf73",
|
|
88
88
|
] },
|
|
89
|
+
{ value = "robotframework~=7.4.0", if = [
|
|
90
|
+
"rf74",
|
|
91
|
+
] },
|
|
89
92
|
]
|
|
90
93
|
|
|
91
94
|
[envs.hatch-test]
|
|
@@ -93,7 +96,7 @@ dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"]
|
|
|
93
96
|
pre-install-commands = ["python ./scripts/install_packages.py"]
|
|
94
97
|
|
|
95
98
|
[[envs.test.matrix]]
|
|
96
|
-
rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
|
|
99
|
+
rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73", "rf74"]
|
|
97
100
|
|
|
98
101
|
[envs.test.overrides]
|
|
99
102
|
matrix.rf.dependencies = [
|
|
@@ -118,6 +121,9 @@ matrix.rf.dependencies = [
|
|
|
118
121
|
{ value = "robotframework~=7.3.0", if = [
|
|
119
122
|
"rf73",
|
|
120
123
|
] },
|
|
124
|
+
{ value = "robotframework~=7.4.0", if = [
|
|
125
|
+
"rf74",
|
|
126
|
+
] },
|
|
121
127
|
]
|
|
122
128
|
|
|
123
129
|
[envs.lint]
|
|
@@ -52,15 +52,15 @@ dependencies = ["robotcode-core", "robotcode-plugin", "robotcode-robot"]
|
|
|
52
52
|
dynamic = ["version"]
|
|
53
53
|
|
|
54
54
|
[project.optional-dependencies]
|
|
55
|
-
debugger = ["robotcode-debugger==2.
|
|
56
|
-
languageserver = ["robotcode-language-server==2.
|
|
57
|
-
runner = ["robotcode-runner==2.
|
|
58
|
-
analyze = ["robotcode-analyze==2.
|
|
55
|
+
debugger = ["robotcode-debugger==2.2.0"]
|
|
56
|
+
languageserver = ["robotcode-language-server==2.2.0"]
|
|
57
|
+
runner = ["robotcode-runner==2.2.0"]
|
|
58
|
+
analyze = ["robotcode-analyze==2.2.0"]
|
|
59
59
|
yaml = ["PyYAML>=5.4"]
|
|
60
60
|
lint = ["robotframework-robocop>=2.0.0"]
|
|
61
61
|
rest = ["docutils"]
|
|
62
|
-
repl = ["robotcode-repl==2.
|
|
63
|
-
replserver = ["robotcode-repl-server==2.
|
|
62
|
+
repl = ["robotcode-repl==2.2.0"]
|
|
63
|
+
replserver = ["robotcode-repl-server==2.2.0"]
|
|
64
64
|
colored = ["rich"]
|
|
65
65
|
all = [
|
|
66
66
|
"robotcode-debugger",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.2.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.1.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
|