robotcode 2.1.0__tar.gz → 2.3.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.
@@ -2,6 +2,66 @@
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.3.0](https://github.com/robotcodedev/robotcode/compare/v2.2.0..v2.3.0) - 2026-03-12
6
+
7
+ ### Documentation
8
+
9
+ - **tips-and-tricks:** Make LSP config OS independent ([e1abda2](https://github.com/robotcodedev/robotcode/commit/e1abda26de71f447dee3fbdc94e400a2ed1ac504))
10
+
11
+ More robust implementation of get_python_path helper function.
12
+
13
+ - **tips-and-tricks:** LSP setup guide for Neovim ([c63c125](https://github.com/robotcodedev/robotcode/commit/c63c125b39e904ceaa85bc48c78accfbd63d53e1))
14
+
15
+
16
+ ### Features
17
+
18
+ - **robocop:** Robocop 8.0 support ([f723d98](https://github.com/robotcodedev/robotcode/commit/f723d98bd3ec9ac4234ab5661681f09220c942ac))
19
+
20
+
21
+ ## [2.2.0](https://github.com/robotcodedev/robotcode/compare/v2.1.0..v2.2.0) - 2026-01-02
22
+
23
+ ### Bug Fixes
24
+
25
+ - **intellij:** Add missing language method in RobotCodeCodeStyleSettingsProvider ([90673bf](https://github.com/robotcodedev/robotcode/commit/90673bf16393ff317079059c870c97340229f0e7))
26
+ - **langserver:** Default to folding ranges to character-based ([6cbefe2](https://github.com/robotcodedev/robotcode/commit/6cbefe2901890930a89ce7e53bcd1a26b51ba4e1))
27
+
28
+ Use character-based folding ranges by default when client capabilities are unknown.
29
+
30
+ - **robocop:** Update robocop documentation urls ([c15bdfa](https://github.com/robotcodedev/robotcode/commit/c15bdfa27713ed68959a8ccbf5a2d61469a8fa06))
31
+ - **robot:** Use explicit class reference for super() in VariablesDoc to allow slots ([8af05a9](https://github.com/robotcodedev/robotcode/commit/8af05a9756bd957c7cba03c0ca9ac91a691ab598))
32
+
33
+
34
+ ### Documentation
35
+
36
+ - Add some funny random hero images ([f62e1bd](https://github.com/robotcodedev/robotcode/commit/f62e1bd8cfe621414c1a45f318f687407731a401))
37
+ - Back to normal hero image ([57633b5](https://github.com/robotcodedev/robotcode/commit/57633b5a1271c5383a548234108ece0aa86be88d))
38
+
39
+
40
+ ### Features
41
+
42
+ - Add support for Robot Framework 7.4 ([3e140c9](https://github.com/robotcodedev/robotcode/commit/3e140c9a18fbe563f0f4c7a7fdee306fdcf97225))
43
+ - Enhance diagnostics and analysis features with progress indicators in verbose mode and performance improvements ([1ac9247](https://github.com/robotcodedev/robotcode/commit/1ac9247fa820605e66d6dc61f24732edab662f12))
44
+
45
+
46
+ ### Performance
47
+
48
+ - **lsp:** Use dataclass slots for protocol types ([82012e8](https://github.com/robotcodedev/robotcode/commit/82012e8c478b75e1781b3eb3ac9f9c3a4ce0c29a))
49
+
50
+ use @dataclass(slots=True) for LSP model classes to reduce per-instance memory overhead and speed up attribute access in LSP hot paths
51
+
52
+
53
+
54
+ ### Refactor
55
+
56
+ - **core:** Simplify casing caches and add support for PEP 604 unions ([428226a](https://github.com/robotcodedev/robotcode/commit/428226a8d393e7f650e5b7caa43feb090587490c))
57
+ - Reduce lru_cache maxsize for performance optimization across multiple modules ([f715d32](https://github.com/robotcodedev/robotcode/commit/f715d3239ba19b6eaa9f8a346ab61bf524aa5dc8))
58
+
59
+
60
+ ### Testing
61
+
62
+ - Real pyproject file for test project ([c3e17b2](https://github.com/robotcodedev/robotcode/commit/c3e17b2203e1a23d7b7373d4b618f7039063a5cc))
63
+
64
+
5
65
  ## [2.1.0](https://github.com/robotcodedev/robotcode/compare/v2.0.4..v2.1.0) - 2025-12-02
6
66
 
7
67
  ### Documentation
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode
3
- Version: 2.1.0
3
+ Version: 2.3.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.1.0; extra == 'analyze'
51
+ Requires-Dist: robotcode-analyze==2.3.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.1.0; extra == 'debugger'
55
+ Requires-Dist: robotcode-debugger==2.3.0; extra == 'debugger'
56
56
  Provides-Extra: languageserver
57
- Requires-Dist: robotcode-language-server==2.1.0; extra == 'languageserver'
57
+ Requires-Dist: robotcode-language-server==2.3.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.1.0; extra == 'repl'
61
+ Requires-Dist: robotcode-repl==2.3.0; extra == 'repl'
62
62
  Provides-Extra: replserver
63
- Requires-Dist: robotcode-repl-server==2.1.0; extra == 'replserver'
63
+ Requires-Dist: robotcode-repl-server==2.3.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.1.0; extra == 'runner'
67
+ Requires-Dist: robotcode-runner==2.3.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.1.0"]
56
- languageserver = ["robotcode-language-server==2.1.0"]
57
- runner = ["robotcode-runner==2.1.0"]
58
- analyze = ["robotcode-analyze==2.1.0"]
55
+ debugger = ["robotcode-debugger==2.3.0"]
56
+ languageserver = ["robotcode-language-server==2.3.0"]
57
+ runner = ["robotcode-runner==2.3.0"]
58
+ analyze = ["robotcode-analyze==2.3.0"]
59
59
  yaml = ["PyYAML>=5.4"]
60
60
  lint = ["robotframework-robocop>=2.0.0"]
61
61
  rest = ["docutils"]
62
- repl = ["robotcode-repl==2.1.0"]
63
- replserver = ["robotcode-repl-server==2.1.0"]
62
+ repl = ["robotcode-repl==2.3.0"]
63
+ replserver = ["robotcode-repl-server==2.3.0"]
64
64
  colored = ["rich"]
65
65
  all = [
66
66
  "robotcode-debugger",
@@ -0,0 +1 @@
1
+ __version__ = "2.3.0"
@@ -1 +0,0 @@
1
- __version__ = "2.1.0"
File without changes
File without changes
File without changes