robotcode 0.101.0__tar.gz → 0.103.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-0.101.0 → robotcode-0.103.0}/CHANGELOG.md +27 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/PKG-INFO +18 -17
- {robotcode-0.101.0 → robotcode-0.103.0}/hatch.toml +10 -4
- {robotcode-0.101.0 → robotcode-0.103.0}/pyproject.toml +15 -15
- robotcode-0.103.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.101.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.101.0 → robotcode-0.103.0}/.gitignore +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/LICENSE.txt +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/README.md +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.101.0 → robotcode-0.103.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,33 @@
|
|
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
|
+
## [0.103.0](https://github.com/robotcodedev/robotcode/compare/v0.102.0..v0.103.0) - 2024-12-19
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **core:** Handle json from_dict correctly for optinal types ([6820cc8](https://github.com/robotcodedev/robotcode/commit/6820cc8c83cd50111a1bcfc3f0241ff503153516))
|
10
|
+
- **langserver:** Increase spaces in FOR snippet ([8adad45](https://github.com/robotcodedev/robotcode/commit/8adad455bb95fc4b5a6bd25fdf7e2e7b38c47492))
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
- **langserver:** Implemented `window/logMessage` to log output directly to the language server protocol client ([98c96f9](https://github.com/robotcodedev/robotcode/commit/98c96f9001a532a6139b0d5758e9886a32ad65a9))
|
16
|
+
- **langserver:** Added support for GROUP block in RF 7.2 ([6495d59](https://github.com/robotcodedev/robotcode/commit/6495d59fc89152adec8282bf99cef6f476ee0367))
|
17
|
+
- **notebook:** Implemented interupt execution and restart kernel ([2f2f629](https://github.com/robotcodedev/robotcode/commit/2f2f629fbccf37b4ed1f4f110953a7b04bf76dc1))
|
18
|
+
|
19
|
+
|
20
|
+
## [0.102.0](https://github.com/robotcodedev/robotcode/compare/v0.101.0..v0.102.0) - 2024-12-15
|
21
|
+
|
22
|
+
### Bug Fixes
|
23
|
+
|
24
|
+
- **debugger:** Corrected order of sequences and values in variables view ([b0bf5c7](https://github.com/robotcodedev/robotcode/commit/b0bf5c76560714ceff3f484874efa5b74c3bb651))
|
25
|
+
|
26
|
+
|
27
|
+
### Features
|
28
|
+
|
29
|
+
- **debugger:** Increase the portion of the variable’s value displayed in the debug view ([0b0b80e](https://github.com/robotcodedev/robotcode/commit/0b0b80e3f506ac1a8d560464c08c7c2f3359f1a0))
|
30
|
+
|
31
|
+
|
5
32
|
## [0.101.0](https://github.com/robotcodedev/robotcode/compare/v0.100.2..v0.101.0) - 2024-12-11
|
6
33
|
|
7
34
|
### Bug Fixes
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.103.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
|
@@ -10,6 +10,7 @@ Project-URL: Issues, https://github.com/robotcodedev/robotcode/issues
|
|
10
10
|
Project-URL: Source, https://github.com/robotcodedev/robotcode
|
11
11
|
Author-email: Daniel Biehl <dbiehl@live.de>
|
12
12
|
License: Apache-2.0
|
13
|
+
License-File: LICENSE.txt
|
13
14
|
Keywords: Acceptance Test Driven Development,Acceptance Testing,BDD,BDT,Behavior Driven Testing,Data Driven,Debug Adapter Protocol,Keyword Driven,Language Server Protocol,RPA,RobotFramework,Robotic Process Automation,Test,Testing,Visual Studio Code
|
14
15
|
Classifier: Development Status :: 5 - Production/Stable
|
15
16
|
Classifier: Framework :: Robot Framework
|
@@ -33,39 +34,39 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
33
34
|
Classifier: Topic :: Utilities
|
34
35
|
Classifier: Typing :: Typed
|
35
36
|
Requires-Python: >=3.8
|
36
|
-
Requires-Dist: robotcode-core==0.
|
37
|
-
Requires-Dist: robotcode-plugin==0.
|
38
|
-
Requires-Dist: robotcode-robot==0.
|
37
|
+
Requires-Dist: robotcode-core==0.103.0
|
38
|
+
Requires-Dist: robotcode-plugin==0.103.0
|
39
|
+
Requires-Dist: robotcode-robot==0.103.0
|
39
40
|
Provides-Extra: all
|
40
41
|
Requires-Dist: docutils; extra == 'all'
|
41
42
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
42
43
|
Requires-Dist: rich; extra == 'all'
|
43
|
-
Requires-Dist: robotcode-analyze==0.
|
44
|
-
Requires-Dist: robotcode-debugger==0.
|
45
|
-
Requires-Dist: robotcode-language-server==0.
|
46
|
-
Requires-Dist: robotcode-repl-server==0.
|
47
|
-
Requires-Dist: robotcode-repl==0.
|
48
|
-
Requires-Dist: robotcode-runner==0.
|
44
|
+
Requires-Dist: robotcode-analyze==0.103.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==0.103.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==0.103.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==0.103.0; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==0.103.0; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==0.103.0; extra == 'all'
|
49
50
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
50
51
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
51
52
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==0.
|
53
|
+
Requires-Dist: robotcode-analyze==0.103.0; extra == 'analyze'
|
53
54
|
Provides-Extra: colored
|
54
55
|
Requires-Dist: rich; extra == 'colored'
|
55
56
|
Provides-Extra: debugger
|
56
|
-
Requires-Dist: robotcode-debugger==0.
|
57
|
+
Requires-Dist: robotcode-debugger==0.103.0; extra == 'debugger'
|
57
58
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==0.
|
59
|
+
Requires-Dist: robotcode-language-server==0.103.0; extra == 'languageserver'
|
59
60
|
Provides-Extra: lint
|
60
61
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
61
62
|
Provides-Extra: repl
|
62
|
-
Requires-Dist: robotcode-repl==0.
|
63
|
+
Requires-Dist: robotcode-repl==0.103.0; extra == 'repl'
|
63
64
|
Provides-Extra: replserver
|
64
|
-
Requires-Dist: robotcode-repl-server==0.
|
65
|
+
Requires-Dist: robotcode-repl-server==0.103.0; extra == 'replserver'
|
65
66
|
Provides-Extra: rest
|
66
67
|
Requires-Dist: docutils; extra == 'rest'
|
67
68
|
Provides-Extra: runner
|
68
|
-
Requires-Dist: robotcode-runner==0.
|
69
|
+
Requires-Dist: robotcode-runner==0.103.0; extra == 'runner'
|
69
70
|
Provides-Extra: tidy
|
70
71
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
71
72
|
Provides-Extra: yaml
|
@@ -43,9 +43,9 @@ create-json-schema = "python ./scripts/create_robot_toml_json_schema.py"
|
|
43
43
|
generate-rf-options = "python ./scripts/generate_rf_options.py"
|
44
44
|
install-packages = "python ./scripts/install_packages.py"
|
45
45
|
|
46
|
-
[envs.
|
46
|
+
[envs.rfbeta]
|
47
47
|
python = "3.13"
|
48
|
-
extra-dependencies = ["robotframework==7.
|
48
|
+
extra-dependencies = ["robotframework==7.2b1"]
|
49
49
|
|
50
50
|
[envs.rfmaster313]
|
51
51
|
python = "3.13"
|
@@ -76,7 +76,7 @@ python = "3.8"
|
|
76
76
|
|
77
77
|
[[envs.devel.matrix]]
|
78
78
|
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
|
79
|
-
rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71"]
|
79
|
+
rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"]
|
80
80
|
|
81
81
|
[envs.devel.overrides]
|
82
82
|
matrix.rf.dependencies = [
|
@@ -98,6 +98,9 @@ matrix.rf.dependencies = [
|
|
98
98
|
{ value = "robotframework>=7.1, <7.2", if = [
|
99
99
|
"rf71",
|
100
100
|
] },
|
101
|
+
{ value = "robotframework>=7.2, <7.3", if = [
|
102
|
+
"rf72b1",
|
103
|
+
] },
|
101
104
|
]
|
102
105
|
|
103
106
|
[envs.hatch-test]
|
@@ -105,7 +108,7 @@ dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"]
|
|
105
108
|
pre-install-commands = ["python ./scripts/install_packages.py"]
|
106
109
|
|
107
110
|
[[envs.test.matrix]]
|
108
|
-
rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71"]
|
111
|
+
rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"]
|
109
112
|
|
110
113
|
[envs.test.overrides]
|
111
114
|
matrix.rf.dependencies = [
|
@@ -127,6 +130,9 @@ matrix.rf.dependencies = [
|
|
127
130
|
{ value = "robotframework>=7.1, <7.2", if = [
|
128
131
|
"rf71",
|
129
132
|
] },
|
133
|
+
{ value = "robotframework>=7.2, <7.3", if = [
|
134
|
+
"rf72b1",
|
135
|
+
] },
|
130
136
|
]
|
131
137
|
|
132
138
|
[envs.lint]
|
@@ -51,9 +51,9 @@ classifiers = [
|
|
51
51
|
]
|
52
52
|
requires-python = ">=3.8"
|
53
53
|
dependencies = [
|
54
|
-
"robotcode-core==0.
|
55
|
-
"robotcode-plugin==0.
|
56
|
-
"robotcode-robot==0.
|
54
|
+
"robotcode-core==0.103.0",
|
55
|
+
"robotcode-plugin==0.103.0",
|
56
|
+
"robotcode-robot==0.103.0",
|
57
57
|
]
|
58
58
|
dynamic = ["version"]
|
59
59
|
|
@@ -71,24 +71,24 @@ robotcode = "robotcode.cli.__main__:main"
|
|
71
71
|
|
72
72
|
|
73
73
|
[project.optional-dependencies]
|
74
|
-
debugger = ["robotcode-debugger==0.
|
75
|
-
languageserver = ["robotcode-language-server==0.
|
76
|
-
runner = ["robotcode-runner==0.
|
77
|
-
analyze = ["robotcode-analyze==0.
|
74
|
+
debugger = ["robotcode-debugger==0.103.0"]
|
75
|
+
languageserver = ["robotcode-language-server==0.103.0"]
|
76
|
+
runner = ["robotcode-runner==0.103.0"]
|
77
|
+
analyze = ["robotcode-analyze==0.103.0"]
|
78
78
|
yaml = ["PyYAML>=5.4"]
|
79
79
|
lint = ["robotframework-robocop>=2.0.0"]
|
80
80
|
tidy = ["robotframework-tidy>=2.0.0"]
|
81
81
|
rest = ["docutils"]
|
82
|
-
repl = ["robotcode-repl==0.
|
83
|
-
replserver = ["robotcode-repl-server==0.
|
82
|
+
repl = ["robotcode-repl==0.103.0"]
|
83
|
+
replserver = ["robotcode-repl-server==0.103.0"]
|
84
84
|
colored = ["rich"]
|
85
85
|
all = [
|
86
|
-
"robotcode-debugger==0.
|
87
|
-
"robotcode-language-server==0.
|
88
|
-
"robotcode-runner==0.
|
89
|
-
"robotcode-analyze==0.
|
90
|
-
"robotcode-repl==0.
|
91
|
-
"robotcode-repl-server==0.
|
86
|
+
"robotcode-debugger==0.103.0",
|
87
|
+
"robotcode-language-server==0.103.0",
|
88
|
+
"robotcode-runner==0.103.0",
|
89
|
+
"robotcode-analyze==0.103.0",
|
90
|
+
"robotcode-repl==0.103.0",
|
91
|
+
"robotcode-repl-server==0.103.0",
|
92
92
|
"PyYAML>=5.4",
|
93
93
|
"robotframework-robocop>=2.0.0",
|
94
94
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.103.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.101.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
|