Skip to content

Commit 5d6b973

Browse files
committed
1.1.3
1 parent b7cdea3 commit 5d6b973

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

changelog.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
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

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.1.2"
3+
version = "1.1.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.1.2";
6+
pub const EXTENSION_VERSION: &str = "1.1.3";
77

88
pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART: u32 = 10;
99

0 commit comments

Comments
 (0)