robotcode 2.6.0__tar.gz → 2.6.2__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.6.0 → robotcode-2.6.2}/CHANGELOG.md +90 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/PKG-INFO +16 -16
- {robotcode-2.6.0 → robotcode-2.6.2}/pyproject.toml +13 -13
- robotcode-2.6.2/src/robotcode/cli/__version__.py +1 -0
- robotcode-2.6.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-2.6.0 → robotcode-2.6.2}/.gitignore +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/LICENSE.txt +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/README.md +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/hatch.toml +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-2.6.0 → robotcode-2.6.2}/src/robotcode/cli/py.typed +0 -0
|
@@ -2,6 +2,96 @@
|
|
|
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.6.2](https://github.com/robotcodedev/robotcode/compare/v2.6.1..v2.6.2) - 2026-06-15
|
|
6
|
+
|
|
7
|
+
### <!-- 1 -->Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **vscode:** Refresh the Test Explorer after a language server restart ([0098190](https://github.com/robotcodedev/robotcode/commit/00981905c0d192eba07c7227d2dc80ef7cd00c16))
|
|
10
|
+
|
|
11
|
+
- test items and run buttons no longer vanish until a window reload after a restart
|
|
12
|
+
- a folder's tests are re-discovered when its language server restarts
|
|
13
|
+
- run profiles are rebuilt once per restart instead of on every state change
|
|
14
|
+
- a test run no longer hangs when a debug session fails to start
|
|
15
|
+
- cancelling a run stops only that run, and works while it is still starting
|
|
16
|
+
- a fixed error clears its decoration; stale diagnostics are cleared on an invalid environment
|
|
17
|
+
- per-folder refresh, so one folder no longer interferes with another
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### <!-- 2 -->Documentation
|
|
22
|
+
|
|
23
|
+
- **news:** Cover v2.6.2 alongside v2.6.1 in the release notes ([5beabad](https://github.com/robotcodedev/robotcode/commit/5beabad67d847e5929f3d1fdccb6c74329d488cb))
|
|
24
|
+
- **news:** Add v2.6.1 release notes ([3e1be81](https://github.com/robotcodedev/robotcode/commit/3e1be81d9b43d77a623acb3be5763c1a517e8381))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## [2.6.1](https://github.com/robotcodedev/robotcode/compare/v2.6.0..v2.6.1) - 2026-06-14
|
|
28
|
+
|
|
29
|
+
### <!-- 1 -->Bug Fixes
|
|
30
|
+
|
|
31
|
+
- **langserver:** Prevent inconsistent Robocop formatting ([e31ed32](https://github.com/robotcodedev/robotcode/commit/e31ed32fcf6c51b10aa76c56b1bea64d5f1f2ea0))
|
|
32
|
+
|
|
33
|
+
Formatting a file with Robocop repeatedly no longer oscillates between states (for example a blank line being added and removed before a section header on every other format). The formatter mutated the shared, cached document model in place; it now works on a fresh, uncached model so repeated formatting stays idempotent.
|
|
34
|
+
|
|
35
|
+
- **robot:** Recover automatically from a corrupt cache database ([2ec7a9c](https://github.com/robotcodedev/robotcode/commit/2ec7a9c149eb1771ecf02832bafe409c252cbce3))
|
|
36
|
+
|
|
37
|
+
The workspace cache database could become corrupt ("database disk image
|
|
38
|
+
is malformed"). Once that happened nothing recovered: restarting the
|
|
39
|
+
language server kept failing while opening the cache, and "Clear Cache
|
|
40
|
+
and Restart Language Servers" failed too because it cleared entries
|
|
41
|
+
through the already-damaged database.
|
|
42
|
+
|
|
43
|
+
RobotCode now detects a corrupt cache database, discards it (including
|
|
44
|
+
its -wal/-shm sidecars) and rebuilds it from scratch, so the keyword
|
|
45
|
+
view, test discovery and the clear-cache command keep working without
|
|
46
|
+
any manual cleanup. If the file cannot be removed or reopened (for
|
|
47
|
+
example while another editor window holds it open), it falls back to a
|
|
48
|
+
temporary in-memory cache for the session instead of failing to start.
|
|
49
|
+
|
|
50
|
+
Access to the cache is now serialized so it stays consistent under the
|
|
51
|
+
language server's concurrent requests, and memory-mapped reads are
|
|
52
|
+
disabled on macOS, where they could leave a corrupt page behind.
|
|
53
|
+
|
|
54
|
+
- **vscode:** Drop selected profiles that no longer exist in the config ([e3bad18](https://github.com/robotcodedev/robotcode/commit/e3bad18f24aaba6b4a71a696a390361ba1c5ce0e))
|
|
55
|
+
|
|
56
|
+
When a profile was selected and then removed from robot.toml — for
|
|
57
|
+
example after switching git branches — the selection stayed active.
|
|
58
|
+
This produced a "profile not found" error on every test run, and the
|
|
59
|
+
profile could not be deselected because the selection menu refused to
|
|
60
|
+
open when no profiles were left to choose from.
|
|
61
|
+
|
|
62
|
+
Now opening "Select Configuration Profiles" removes any selected
|
|
63
|
+
profile that is no longer defined in the configuration and shows a
|
|
64
|
+
message listing which profiles were removed. If the available profiles
|
|
65
|
+
cannot be determined (e.g. an invalid environment), the current
|
|
66
|
+
selection is left untouched.
|
|
67
|
+
|
|
68
|
+
- Don't pull html-to-markdown into the 'all' extra ([6bf2a6d](https://github.com/robotcodedev/robotcode/commit/6bf2a6d1b41976683f50a36e21fac3ddf26ec12a))
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
Since version 2.0 html-to-markdown ships as a Rust extension with prebuilt wheels only for a limited set of platforms (manylinux x86_64/aarch64, macOS, win_amd64). On other targets such as 32-bit Raspberry Pi OS (armv7l) or Alpine/musllinux, pip falls back to a source build that needs a Rust toolchain and fails, which broke 'pip install robotcode[all]'.
|
|
72
|
+
|
|
73
|
+
html-to-markdown only improves HTML log conversion in the 'results' command and has a built-in stdlib fallback, so it is now opt-in via 'pip install robotcode-runner[html]'.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### <!-- 2 -->Documentation
|
|
77
|
+
|
|
78
|
+
- **ai-agents:** Foreground the debugger over the REPL ([0c40394](https://github.com/robotcodedev/robotcode/commit/0c40394d97b503ba05f7bb72d1a988c837ccb61f))
|
|
79
|
+
|
|
80
|
+
Make robot-debug the primary tool for working with a real test and
|
|
81
|
+
the REPL the narrower fallback for exploring when no test exists yet.
|
|
82
|
+
Add debugger examples, a debugger-first core-habit entry, a
|
|
83
|
+
troubleshooting item for chasing a failing test instead of debugging
|
|
84
|
+
it, and note that agent output capture and the plain backend apply to
|
|
85
|
+
robot-debug too.
|
|
86
|
+
|
|
87
|
+
- Add reference page for excluding files with .robotignore ([d8990ec](https://github.com/robotcodedev/robotcode/commit/d8990ec5a4c8d1e8ec97b41548eeb9114b396007))
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
Documents the .robotignore file: gitignore-style syntax, how it relates to .gitignore (it replaces it rather than merging), nested files, what RobotCode skips by default, where it applies (discovery, analysis, and the language server), how to verify the result with `robotcode discover files`, and how to use it to speed up analysis on large projects.
|
|
91
|
+
|
|
92
|
+
Also links the new page from the discover `files` reference.
|
|
93
|
+
|
|
94
|
+
|
|
5
95
|
## [2.6.0](https://github.com/robotcodedev/robotcode/compare/v2.5.1..v2.6.0) - 2026-06-09
|
|
6
96
|
|
|
7
97
|
### <!-- 0 -->Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.2
|
|
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
|
|
@@ -33,35 +33,35 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
|
33
33
|
Classifier: Topic :: Utilities
|
|
34
34
|
Classifier: Typing :: Typed
|
|
35
35
|
Requires-Python: >=3.10
|
|
36
|
-
Requires-Dist: robotcode-core==2.6.
|
|
37
|
-
Requires-Dist: robotcode-plugin==2.6.
|
|
38
|
-
Requires-Dist: robotcode-robot==2.6.
|
|
36
|
+
Requires-Dist: robotcode-core==2.6.2
|
|
37
|
+
Requires-Dist: robotcode-plugin==2.6.2
|
|
38
|
+
Requires-Dist: robotcode-robot==2.6.2
|
|
39
39
|
Provides-Extra: all
|
|
40
40
|
Requires-Dist: docutils; extra == 'all'
|
|
41
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
|
42
|
-
Requires-Dist: robotcode-analyze==2.6.
|
|
43
|
-
Requires-Dist: robotcode-debugger==2.6.
|
|
44
|
-
Requires-Dist: robotcode-language-server==2.6.
|
|
45
|
-
Requires-Dist: robotcode-repl-server==2.6.
|
|
46
|
-
Requires-Dist: robotcode-repl==2.6.
|
|
47
|
-
Requires-Dist: robotcode-runner
|
|
42
|
+
Requires-Dist: robotcode-analyze==2.6.2; extra == 'all'
|
|
43
|
+
Requires-Dist: robotcode-debugger==2.6.2; extra == 'all'
|
|
44
|
+
Requires-Dist: robotcode-language-server==2.6.2; extra == 'all'
|
|
45
|
+
Requires-Dist: robotcode-repl-server==2.6.2; extra == 'all'
|
|
46
|
+
Requires-Dist: robotcode-repl==2.6.2; extra == 'all'
|
|
47
|
+
Requires-Dist: robotcode-runner==2.6.2; extra == 'all'
|
|
48
48
|
Requires-Dist: robotframework-robocop>=6.0.0; extra == 'all'
|
|
49
49
|
Provides-Extra: analyze
|
|
50
|
-
Requires-Dist: robotcode-analyze==2.6.
|
|
50
|
+
Requires-Dist: robotcode-analyze==2.6.2; extra == 'analyze'
|
|
51
51
|
Provides-Extra: debugger
|
|
52
|
-
Requires-Dist: robotcode-debugger==2.6.
|
|
52
|
+
Requires-Dist: robotcode-debugger==2.6.2; extra == 'debugger'
|
|
53
53
|
Provides-Extra: languageserver
|
|
54
|
-
Requires-Dist: robotcode-language-server==2.6.
|
|
54
|
+
Requires-Dist: robotcode-language-server==2.6.2; extra == 'languageserver'
|
|
55
55
|
Provides-Extra: lint
|
|
56
56
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
|
57
57
|
Provides-Extra: repl
|
|
58
|
-
Requires-Dist: robotcode-repl==2.6.
|
|
58
|
+
Requires-Dist: robotcode-repl==2.6.2; extra == 'repl'
|
|
59
59
|
Provides-Extra: replserver
|
|
60
|
-
Requires-Dist: robotcode-repl-server==2.6.
|
|
60
|
+
Requires-Dist: robotcode-repl-server==2.6.2; extra == 'replserver'
|
|
61
61
|
Provides-Extra: rest
|
|
62
62
|
Requires-Dist: docutils; extra == 'rest'
|
|
63
63
|
Provides-Extra: runner
|
|
64
|
-
Requires-Dist: robotcode-runner==2.6.
|
|
64
|
+
Requires-Dist: robotcode-runner==2.6.2; extra == 'runner'
|
|
65
65
|
Provides-Extra: yaml
|
|
66
66
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
|
67
67
|
Description-Content-Type: text/markdown
|
|
@@ -48,26 +48,26 @@ classifiers = [
|
|
|
48
48
|
"Framework :: Robot Framework :: Tool",
|
|
49
49
|
]
|
|
50
50
|
requires-python = ">=3.10"
|
|
51
|
-
dependencies = ["robotcode-core==2.6.
|
|
51
|
+
dependencies = ["robotcode-core==2.6.2", "robotcode-plugin==2.6.2", "robotcode-robot==2.6.2"]
|
|
52
52
|
dynamic = ["version"]
|
|
53
53
|
|
|
54
54
|
[project.optional-dependencies]
|
|
55
|
-
debugger = ["robotcode-debugger==2.6.
|
|
56
|
-
languageserver = ["robotcode-language-server==2.6.
|
|
57
|
-
runner = ["robotcode-runner==2.6.
|
|
58
|
-
analyze = ["robotcode-analyze==2.6.
|
|
55
|
+
debugger = ["robotcode-debugger==2.6.2"]
|
|
56
|
+
languageserver = ["robotcode-language-server==2.6.2"]
|
|
57
|
+
runner = ["robotcode-runner==2.6.2"]
|
|
58
|
+
analyze = ["robotcode-analyze==2.6.2"]
|
|
59
59
|
yaml = ["PyYAML>=5.4"]
|
|
60
60
|
lint = ["robotframework-robocop>=2.0.0"]
|
|
61
61
|
rest = ["docutils"]
|
|
62
|
-
repl = ["robotcode-repl==2.6.
|
|
63
|
-
replserver = ["robotcode-repl-server==2.6.
|
|
62
|
+
repl = ["robotcode-repl==2.6.2"]
|
|
63
|
+
replserver = ["robotcode-repl-server==2.6.2"]
|
|
64
64
|
all = [
|
|
65
|
-
"robotcode-debugger==2.6.
|
|
66
|
-
"robotcode-language-server==2.6.
|
|
67
|
-
"robotcode-runner
|
|
68
|
-
"robotcode-analyze==2.6.
|
|
69
|
-
"robotcode-repl==2.6.
|
|
70
|
-
"robotcode-repl-server==2.6.
|
|
65
|
+
"robotcode-debugger==2.6.2",
|
|
66
|
+
"robotcode-language-server==2.6.2",
|
|
67
|
+
"robotcode-runner==2.6.2",
|
|
68
|
+
"robotcode-analyze==2.6.2",
|
|
69
|
+
"robotcode-repl==2.6.2",
|
|
70
|
+
"robotcode-repl-server==2.6.2",
|
|
71
71
|
"PyYAML>=5.4",
|
|
72
72
|
"robotframework-robocop>=6.0.0",
|
|
73
73
|
"docutils"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.6.2"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.6.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
|
|
File without changes
|