Skip to content

Commit 697db11

Browse files
committed
1.1.2
1 parent 9724aee commit 697db11

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

changelog.md

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

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

88
pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART: u32 = 10;
99

0 commit comments

Comments
 (0)