File tree Expand file tree Collapse file tree 3 files changed +28
-2
lines changed
Expand file tree Collapse file tree 3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 1.1.3] - 2026/02/02 - Various fixes
4+
5+ ### Fixes
6+
7+ - Fix failure to detect models when ` CachedModel ` is missing
8+ - Fix crash on SQL datafiles
9+ - Fix crash on missing python command
10+ - Fix crash on model classes outside a module
11+ - Load modules in the same order Odoo load them
12+ - Ignore invalid ` Named ` expression on incomplete AST
13+ - Handle models subscripts like ` self.search([])[:5] `
14+ - Add missing Self evaluation to ` search ` method on BaseModel
15+ - Methods ` __init_subclass__ ` and ` __class_getitem__ ` are now automatically detected as ` classmethod ` s
16+ - Allow ` M2OReference ` on ` inverse_name `
17+ - Fix index calculation in the arguments of functions
18+ - Fix crash on empty config received from client
19+ - Improve borrowing to avoid some borrow errors
20+ - ` next_ref ` will now rebuild descriptor on-the-fly if needed
21+ - Fix ` follow_ref ` sometimes dropping evaluations incorrectly
22+ - Remove wrong stop_on_type in features
23+ - Check all relational fields during domain validation
24+ - Correctly identify non-registry model classes
25+ - Update typeshed
26+ - Improve the ` env.__getitem__ ` to handle multiple evaluation
27+ - Improve the ` follow_ref ` method to handle ` typing.Self ` evaluations
28+
329## [ 1.1.2] - 2025/12/10 - CachedModel fixes
430
531### Server
Original file line number Diff line number Diff line change 11[package ]
22name = " odoo_ls_server"
3- version = " 1.1.2 "
3+ version = " 1.1.3 "
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.2 " ;
6+ pub const EXTENSION_VERSION : & str = "1.1.3 " ;
77
88pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART : u32 = 10 ;
99
You can’t perform that action at this time.
0 commit comments