Skip to content

Commit 0363453

Browse files
committed
chore(release): bump version 1.8.0 → 1.9.0
1 parent 09c33f0 commit 0363453

File tree

25 files changed

+94
-51
lines changed

25 files changed

+94
-51
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@
22

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

5+
## [1.9.0](https://github.com/robotcodedev/robotcode/compare/v1.8.0..v1.9.0) - 2025-09-12
6+
7+
### Bug Fixes
8+
9+
- **robot:** Update class inheritance from BaseOptions to RobotBaseOptions for consistency ([1f18c52](https://github.com/robotcodedev/robotcode/commit/1f18c52600e9e467c835f9ebc0586b093e201def))
10+
- **robot:** Improve timeout error messages for library and variable loading ([d698900](https://github.com/robotcodedev/robotcode/commit/d698900bad4e0df6df26c925905777b245414164))
11+
- **robot:** Use --no* for disabled RF flags (e.g. --noexitonfailure) instead of short enable flags ([a6ffcf5](https://github.com/robotcodedev/robotcode/commit/a6ffcf56fdaa76efcb2f7ec7b6cfbad6d6ea2ddb))
12+
- **tests:** Use raw string notation for regex in exception matchers ([d6ba124](https://github.com/robotcodedev/robotcode/commit/d6ba12461f9f29e680c094b1f9279206300fb322))
13+
14+
15+
### Documentation
16+
17+
- **config:** Add load-library-timeout option for library and variable loading to json schema ([d93a397](https://github.com/robotcodedev/robotcode/commit/d93a397fcb2018b46cca2b41c186e559709d09bd))
18+
- Enhance README.md's and remove redundant license files across packages ([f21f4ea](https://github.com/robotcodedev/robotcode/commit/f21f4eafc43cf6bbea60e87f15025a6c4dcfed7c))
19+
- Add comprehensive security policy and reporting guidelines ([a49027a](https://github.com/robotcodedev/robotcode/commit/a49027a2ba6c6eaa4d96a4cbb78f91cc8ded4d91))
20+
- Update links and improve wording in documentation ([409c393](https://github.com/robotcodedev/robotcode/commit/409c393b716904a66b76885400f3953083eb8a7d))
21+
- Reorganize support section in README.md for clarity ([22e56b7](https://github.com/robotcodedev/robotcode/commit/22e56b7a4e4e8ec47d62649ef83445b32aeb3742))
22+
23+
24+
### Features
25+
26+
- **analyze,robot:** Add configurable load_library_timeout with CLI flag and robot.toml support ([461212d](https://github.com/robotcodedev/robotcode/commit/461212d8c5ce8f24ce795b33ed0b6106bbba9497))
27+
28+
Add configurable library/variable load timeout. Sources (precedence):
29+
30+
analyze code: --load-library-timeout / --no-load-library-timeout
31+
VS Code setting: robotcode.analysis.robot.loadLibraryTimeout
32+
robot.toml / pyproject: [tool.robotcode-analyze] load-library-timeout
33+
Env: ROBOTCODE_LOAD_LIBRARY_TIMEOUT
34+
Default: 10
35+
Replaces previous hard-coded timeout, adds validation (>0), clearer docs, and examples.
36+
37+
- **robot:** Define more detailed error message for library load timeout ([d5848ab](https://github.com/robotcodedev/robotcode/commit/d5848ab6d9b1285a6dc2465869b2bc274693603e))
38+
- **robot:** Environment variable for load library timeout ([20c98c3](https://github.com/robotcodedev/robotcode/commit/20c98c3db7beaa9e67b8214f41976a70048305e6))
39+
40+
41+
### Refactor
42+
43+
- **tests:** Remove performance tests for argument processing ([d019a60](https://github.com/robotcodedev/robotcode/commit/d019a60fccb23e3d4a7d1269aae3379b97ce803b))
44+
45+
546
## [1.8.0](https://github.com/robotcodedev/robotcode/compare/v1.7.0..v1.8.0) - 2025-08-15
647

748
### Bug Fixes

intellij-client/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = dev.robotcode
44
pluginName = RobotCode - Robot Framework Support
55
pluginRepositoryUrl = https://github.com/robotcodedev/robotcode4ij
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.8.0
7+
pluginVersion = 1.9.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 251

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more",
55
"icon": "images/icon.png",
66
"publisher": "d-biehl",
7-
"version": "1.8.0",
7+
"version": "1.9.0",
88
"author": {
99
"name": "Daniel Biehl",
1010
"url": "https://github.com/robotcodedev/"
@@ -1029,7 +1029,10 @@
10291029
"scope": "resource"
10301030
},
10311031
"robotcode.analysis.robot.loadLibraryTimeout": {
1032-
"type": ["number", "null"],
1032+
"type": [
1033+
"number",
1034+
"null"
1035+
],
10331036
"default": null,
10341037
"minimum": 1,
10351038
"maximum": 3600,
@@ -2059,7 +2062,6 @@
20592062
"userDescription": "Gets informations about the Robot Framework Environment .",
20602063
"canBeReferencedInPrompt": true,
20612064
"tags": [
2062-
20632065
"robot",
20642066
"robotframework",
20652067
"robotcode"

packages/analyze/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"robotframework>=4.1.0",
30-
"robotcode-plugin==1.8.0",
31-
"robotcode-robot==1.8.0",
32-
"robotcode==1.8.0",
30+
"robotcode-plugin==1.9.0",
31+
"robotcode-robot==1.9.0",
32+
"robotcode==1.9.0",
3333
]
3434
dynamic = ["version"]
3535

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.8.0"
1+
__version__ = "1.9.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.8.0"
1+
__version__ = "1.9.0"

packages/debugger/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ classifiers = [
2828
dynamic = ["version"]
2929
dependencies = [
3030
"robotframework>=4.1.0",
31-
"robotcode-jsonrpc2==1.8.0",
32-
"robotcode-runner==1.8.0",
31+
"robotcode-jsonrpc2==1.9.0",
32+
"robotcode-runner==1.9.0",
3333
]
3434

3535
[project.optional-dependencies]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.8.0"
1+
__version__ = "1.9.0"

packages/jsonrpc2/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
"Framework :: Robot Framework",
2626
"Framework :: Robot Framework :: Tool",
2727
]
28-
dependencies = ["robotcode-core==1.8.0"]
28+
dependencies = ["robotcode-core==1.9.0"]
2929
dynamic = ["version"]
3030

3131
[project.urls]

0 commit comments

Comments
 (0)