File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed
Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 1.1.2] - 2025/12/10 - CachedModel fixes
4+
5+ ### Server
6+
7+ - Various fixes
8+ - Fix and support for CachedModel introduced in 19.1
9+ - Use a deterministic job queue to avoid random errors caused by different order of symbols
10+ - For that we replace the current HashSet with a FIFO one, so symbols are processed in the queue order
11+
12+ ### Fixes
13+
14+ - Fix wiki link for configuration on welcome page
15+ - Avoid having empty paths for addons or additional stubs in cli mode
16+ - Avoid adding model dependencies in orm files to avoid rebuilding base files
17+ - Avoid loading Models defined inside functions, e.g. tests.
18+ - Avoid attempting to rebuild ` __iter__ ` on external files, as their file infos are deleted
19+ - Fix fetching symbols in inheritance tree by early stopping when one is found
20+
21+
322## [ 1.1.1] - 2025/11/24 - Untitled files and Encoding
423
524### Server
Original file line number Diff line number Diff line change 11[package ]
22name = " odoo_ls_server"
3- version = " 1.1.1 "
3+ version = " 1.1.2 "
44edition = " 2024"
55authors = [" Odoo" ]
66readme = " ../README.md"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use core::fmt;
33
44
55pub const EXTENSION_NAME : & str = "Odoo" ;
6- pub const EXTENSION_VERSION : & str = "1.1.1 " ;
6+ pub const EXTENSION_VERSION : & str = "1.1.2 " ;
77
88pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART : u32 = 10 ;
99
You can’t perform that action at this time.
0 commit comments