robotcode 1.5.0__tar.gz → 1.7.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,63 @@
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.7.0](https://github.com/robotcodedev/robotcode/compare/v1.6.0..v1.7.0) - 2025-07-31
6
+
7
+ ### Bug Fixes
8
+
9
+ - **diagnostics:** Correct overriding of imported variables in suite variables ([afed6db](https://github.com/robotcodedev/robotcode/commit/afed6db7cf9d5293b62a01eaaeba621517894ebd))
10
+
11
+
12
+ ### Features
13
+
14
+ - **docs:** Add generated llms.txt and llms-full.txt to website ([1f23559](https://github.com/robotcodedev/robotcode/commit/1f23559ff9f26cb2dd9977c001b883493f1f32b4))
15
+
16
+
17
+ ### Refactor
18
+
19
+ - **jsonrpc:** Fix some spellings and split up some methods ([3c71ce6](https://github.com/robotcodedev/robotcode/commit/3c71ce64f8a797a4f0db925c2379800a3e48a987))
20
+
21
+
22
+ ## [1.6.0](https://github.com/robotcodedev/robotcode/compare/v1.5.0..v1.6.0) - 2025-07-30
23
+
24
+ ### Bug Fixes
25
+
26
+ - **core:** Remove unnecessary socket option for address reuse in find_free_port ([1ee754a](https://github.com/robotcodedev/robotcode/commit/1ee754abc7b27a8d2d70e15f39dad8ec0febc4da))
27
+ - **debugger:** Enhance error handling in DAPClient and simplify port allocation for new testrun sessions ([43f242d](https://github.com/robotcodedev/robotcode/commit/43f242d61dc0e249e1912ac0d7be8df63478d802))
28
+
29
+ - every new test run gets it's own tcp port
30
+
31
+ - **debugger:** Only sync when not in CallKeyword state ([709798a](https://github.com/robotcodedev/robotcode/commit/709798ac5cfbdf84ede7282d396bcae03a7e33f7))
32
+
33
+
34
+ ### Documentation
35
+
36
+ - Remove robotframework-tidy from docs ([c259a0f](https://github.com/robotcodedev/robotcode/commit/c259a0f42819e25603ff333afdf6fc9c00b6b279))
37
+
38
+
39
+ ### Features
40
+
41
+ - **debug:** Better synchronization between test view and execution in intellij-client, part 2 ([4ce87a2](https://github.com/robotcodedev/robotcode/commit/4ce87a2a86c72c944fab5de1288d08ecc33928e7))
42
+ - **debugger:** Better synchronization between test view and execution in vscode, part 1 ([63c895f](https://github.com/robotcodedev/robotcode/commit/63c895f8d78ba0db64c32c4100ab09bf42941232))
43
+ - **robotcode:** Remove robotframework-tidy from optional-dependencies ([205cfd1](https://github.com/robotcodedev/robotcode/commit/205cfd1a93aae3bfc4e062d1d16b0dd3ad2e4f98))
44
+
45
+
46
+ ### Refactor
47
+
48
+ - **debugger:** Split get_variables method and splitup version specific behavior for exception handling ([c828202](https://github.com/robotcodedev/robotcode/commit/c828202021d8b0eb0e4862fec0e96713977cfe62))
49
+ - **debugger:** Break down complex evaluate() method ([4c6b9af](https://github.com/robotcodedev/robotcode/commit/4c6b9afc988a0b4838e16bd9f57b4d57db278721))
50
+ - **debugger:** Optimize cache management and improve regex matching performance ([2edfeea](https://github.com/robotcodedev/robotcode/commit/2edfeea3d884b486b19d3c6ab4b6e76e03572b57))
51
+ - **debugger:** Enhance type safety by introducing protocols and type definitions for log messages and attributes ([a65b9b9](https://github.com/robotcodedev/robotcode/commit/a65b9b95cf66d3b513da2c50d1409a56887c9963))
52
+ - **debugger:** Replace magic numbers with named constants for better readability ([65b0912](https://github.com/robotcodedev/robotcode/commit/65b091218e2ed5552e6d2a84ab61600ecbdc75a3))
53
+ - **debugger:** Replace instance method calls with property access for consistency ([8ea82e4](https://github.com/robotcodedev/robotcode/commit/8ea82e45f4d343431aa42dfd525ed5ccb09d4df7))
54
+ - **instructions:** Clarify implementation guidelines and communication flow ([b37be1c](https://github.com/robotcodedev/robotcode/commit/b37be1c683467ba4f3557127cb6337d5baad19c3))
55
+ - **langserver:** Improve performance and memory consumption for semantic tokens ([e8297ff](https://github.com/robotcodedev/robotcode/commit/e8297ffc2f093cbab7eeff0bbecc7fba3dd5f330))
56
+ - **langserver:** Remove unused semantic token types and update regression tests ([6b262b5](https://github.com/robotcodedev/robotcode/commit/6b262b54d3aa53e55f4661b289f7959baf1f260a))
57
+ - **langserver:** Remove unused methods to simplify code ([96ba516](https://github.com/robotcodedev/robotcode/commit/96ba5162238fe04ca9b2473dcc512b94efc8cf7f))
58
+ - **langserver:** Optimize memory consumption and perfomance in semantic token highlighter ([7e5e8e3](https://github.com/robotcodedev/robotcode/commit/7e5e8e3b9ebc0a3a1ce0a0dccee4cdf160d7bdb5))
59
+ - **langserver:** Remove some unneeded casts ([c82a604](https://github.com/robotcodedev/robotcode/commit/c82a6040ea9b6d786e0af9cf5078780e2aaf7437))
60
+
61
+
5
62
  ## [1.5.0](https://github.com/robotcodedev/robotcode/compare/v1.4.0..v1.5.0) - 2025-07-07
6
63
 
7
64
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode
3
- Version: 1.5.0
3
+ Version: 1.7.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,41 +34,38 @@ 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.5.0
38
- Requires-Dist: robotcode-plugin==1.5.0
39
- Requires-Dist: robotcode-robot==1.5.0
37
+ Requires-Dist: robotcode-core==1.7.0
38
+ Requires-Dist: robotcode-plugin==1.7.0
39
+ Requires-Dist: robotcode-robot==1.7.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.5.0; extra == 'all'
45
- Requires-Dist: robotcode-debugger==1.5.0; extra == 'all'
46
- Requires-Dist: robotcode-language-server==1.5.0; extra == 'all'
47
- Requires-Dist: robotcode-repl-server==1.5.0; extra == 'all'
48
- Requires-Dist: robotcode-repl==1.5.0; extra == 'all'
49
- Requires-Dist: robotcode-runner==1.5.0; extra == 'all'
44
+ Requires-Dist: robotcode-analyze==1.7.0; extra == 'all'
45
+ Requires-Dist: robotcode-debugger==1.7.0; extra == 'all'
46
+ Requires-Dist: robotcode-language-server==1.7.0; extra == 'all'
47
+ Requires-Dist: robotcode-repl-server==1.7.0; extra == 'all'
48
+ Requires-Dist: robotcode-repl==1.7.0; extra == 'all'
49
+ Requires-Dist: robotcode-runner==1.7.0; extra == 'all'
50
50
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
51
- Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
52
51
  Provides-Extra: analyze
53
- Requires-Dist: robotcode-analyze==1.5.0; extra == 'analyze'
52
+ Requires-Dist: robotcode-analyze==1.7.0; extra == 'analyze'
54
53
  Provides-Extra: colored
55
54
  Requires-Dist: rich; extra == 'colored'
56
55
  Provides-Extra: debugger
57
- Requires-Dist: robotcode-debugger==1.5.0; extra == 'debugger'
56
+ Requires-Dist: robotcode-debugger==1.7.0; extra == 'debugger'
58
57
  Provides-Extra: languageserver
59
- Requires-Dist: robotcode-language-server==1.5.0; extra == 'languageserver'
58
+ Requires-Dist: robotcode-language-server==1.7.0; extra == 'languageserver'
60
59
  Provides-Extra: lint
61
60
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
62
61
  Provides-Extra: repl
63
- Requires-Dist: robotcode-repl==1.5.0; extra == 'repl'
62
+ Requires-Dist: robotcode-repl==1.7.0; extra == 'repl'
64
63
  Provides-Extra: replserver
65
- Requires-Dist: robotcode-repl-server==1.5.0; extra == 'replserver'
64
+ Requires-Dist: robotcode-repl-server==1.7.0; extra == 'replserver'
66
65
  Provides-Extra: rest
67
66
  Requires-Dist: docutils; extra == 'rest'
68
67
  Provides-Extra: runner
69
- Requires-Dist: robotcode-runner==1.5.0; extra == 'runner'
70
- Provides-Extra: tidy
71
- Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
68
+ Requires-Dist: robotcode-runner==1.7.0; extra == 'runner'
72
69
  Provides-Extra: yaml
73
70
  Requires-Dist: pyyaml>=5.4; extra == 'yaml'
74
71
  Description-Content-Type: text/markdown
@@ -65,13 +65,10 @@ python = "3.10"
65
65
 
66
66
  [[envs.devel.matrix]]
67
67
  python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
68
- rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
68
+ rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
69
69
 
70
70
  [envs.devel.overrides]
71
71
  matrix.rf.dependencies = [
72
- { value = "robotframework~=4.1.0", if = [
73
- "rf41",
74
- ] },
75
72
  { value = "robotframework~=5.0.0", if = [
76
73
  "rf50",
77
74
  ] },
@@ -100,13 +97,10 @@ dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"]
100
97
  pre-install-commands = ["python ./scripts/install_packages.py"]
101
98
 
102
99
  [[envs.test.matrix]]
103
- rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
100
+ rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
104
101
 
105
102
  [envs.test.overrides]
106
103
  matrix.rf.dependencies = [
107
- { value = "robotframework~=4.1.0", if = [
108
- "rf41",
109
- ] },
110
104
  { value = "robotframework~=5.0.0", if = [
111
105
  "rf50",
112
106
  ] },
@@ -148,6 +142,7 @@ features = ["all"]
148
142
  typing = "mypy --no-incremental --cache-dir /dev/null {args:.}"
149
143
  style = ["ruff check .", "ruff format --diff ."]
150
144
  all = ["style", "typing"]
145
+ fix = ["ruff check --fix .", "ruff format ."]
151
146
 
152
147
  [envs.lint.overrides]
153
148
  platform.windows.scripts = [
@@ -51,9 +51,9 @@ classifiers = [
51
51
  ]
52
52
  requires-python = ">=3.8"
53
53
  dependencies = [
54
- "robotcode-core==1.5.0",
55
- "robotcode-plugin==1.5.0",
56
- "robotcode-robot==1.5.0",
54
+ "robotcode-core==1.7.0",
55
+ "robotcode-plugin==1.7.0",
56
+ "robotcode-robot==1.7.0",
57
57
  ]
58
58
  dynamic = ["version"]
59
59
 
@@ -71,27 +71,25 @@ robotcode = "robotcode.cli.__main__:main"
71
71
 
72
72
 
73
73
  [project.optional-dependencies]
74
- debugger = ["robotcode-debugger==1.5.0"]
75
- languageserver = ["robotcode-language-server==1.5.0"]
76
- runner = ["robotcode-runner==1.5.0"]
77
- analyze = ["robotcode-analyze==1.5.0"]
74
+ debugger = ["robotcode-debugger==1.7.0"]
75
+ languageserver = ["robotcode-language-server==1.7.0"]
76
+ runner = ["robotcode-runner==1.7.0"]
77
+ analyze = ["robotcode-analyze==1.7.0"]
78
78
  yaml = ["PyYAML>=5.4"]
79
79
  lint = ["robotframework-robocop>=2.0.0"]
80
- tidy = ["robotframework-tidy>=2.0.0"]
81
80
  rest = ["docutils"]
82
- repl = ["robotcode-repl==1.5.0"]
83
- replserver = ["robotcode-repl-server==1.5.0"]
81
+ repl = ["robotcode-repl==1.7.0"]
82
+ replserver = ["robotcode-repl-server==1.7.0"]
84
83
  colored = ["rich"]
85
84
  all = [
86
- "robotcode-debugger==1.5.0",
87
- "robotcode-language-server==1.5.0",
88
- "robotcode-runner==1.5.0",
89
- "robotcode-analyze==1.5.0",
90
- "robotcode-repl==1.5.0",
91
- "robotcode-repl-server==1.5.0",
85
+ "robotcode-debugger==1.7.0",
86
+ "robotcode-language-server==1.7.0",
87
+ "robotcode-runner==1.7.0",
88
+ "robotcode-analyze==1.7.0",
89
+ "robotcode-repl==1.7.0",
90
+ "robotcode-repl-server==1.7.0",
92
91
  "PyYAML>=5.4",
93
92
  "robotframework-robocop>=2.0.0",
94
- "robotframework-tidy>=2.0.0",
95
93
  "docutils",
96
94
  "rich",
97
95
  ]
@@ -291,7 +289,7 @@ no_implicit_reexport = false
291
289
  #include_runtime_files = false
292
290
 
293
291
  [tool.pyright]
294
- exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs"]
292
+ exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs", "intellij-client/build"]
295
293
  typeCheckingMode = "off"
296
294
  pythonVersion = "3.8"
297
295
 
@@ -0,0 +1 @@
1
+ __version__ = "1.7.0"
@@ -1 +0,0 @@
1
- __version__ = "1.5.0"
File without changes
File without changes
File without changes