Skip to content

Commit 8c16351

Browse files
committed
1.0.3
1 parent 114d852 commit 8c16351

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [1.0.3] - 2025/10/26 - Fix out-of-sync issues
4+
5+
We rewrote the thread pool of OdooLS to get rid most of the last known crashes, as they are nearly all linked to out-of-sync issues and the way the thread pool was greedily delaying important tasks.
6+
It should result in a different feeling when using OdooLS, but it should be way more accurate and stable than before, and consistent.
7+
It was not possible to test this new core in all possible situations, so do not hesitate to give any feedback on differences you can see with this new version.
8+
Thank you very much to everyone for your crash reports, they were really helpful (and yes, we read all of them!)
9+
New features will come soon in the pre-release channel, stay tuned!
10+
11+
### Fixes
12+
13+
- New delayed thread and message flow in threads. Symbol creation (ARCH and ARCH-EVAL steps) are now always created on the fly, while validation of files are delayed to inactivity period. It results in more accurate and always in-sync results to requests.
14+
315
## [1.0.2] - 2025/10/03 - Hotfixes and github actions
416

517
### Packaging

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odoo_ls_server"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
edition = "2024"
55
authors = ["Odoo"]
66
readme = "../README.md"

server/src/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use core::fmt;
33

44

55
pub const EXTENSION_NAME: &str = "Odoo";
6-
pub const EXTENSION_VERSION: &str = "1.0.2";
6+
pub const EXTENSION_VERSION: &str = "1.0.3";
77

88
pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART: u32 = 10;
99

0 commit comments

Comments
 (0)