File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 1.1.1] - 2025/11/24 - Untitled files and Encoding
4+
5+ ### Server
6+
7+ - Support for encoding UTF-8, UTF-16 and UTF-32.
8+ - Support for "untitled" files for VsCode.
9+ - Add tests for diagnostics
10+
11+ ### Fixs
12+
13+ - Fix crash when a file is importing a .pyd with the same name (avoid self referencing)
14+ - Fix OLS01002 not emitted on valued variables
15+ - FIX OLS01004 that should not be emitted on ` classmethod `
16+ - FIX OLS01007 and OLS01010 on evaluation of function calls when keyword-only arguments are used.
17+ - XML Syntax error is now OLS05000
18+ - Fix range for diagnostic OLS05009
19+ - Fix OLS01009 that could be emitted on valid cases.
20+ - Fix detection of ` search ` and ` inverse ` keyword on fields declaration
21+ - Fix detection of ` inverse_name ` on One2Many if the keyword was missing
22+ - Fix deprecation warning OLS03301 that was not emitted
23+ - Fix crash on data not being string in ` __manifest__.py `
24+ - Fix validation of ` __manifest__.py ` files even if the folder does not contain any ` __init__.py `
25+ - Functions will not expose their internal function in an autocompletion anymore
26+
27+
328## [ 1.1.0] - 2025/11/06 - Workspace Symbols / WSL support
429
530This Beta update improves the QoL on various IDEs and brings some new features:
Original file line number Diff line number Diff line change 11[package ]
22name = " odoo_ls_server"
3- version = " 1.1.0 "
3+ version = " 1.1.1 "
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.0 " ;
6+ pub const EXTENSION_VERSION : & str = "1.1.1 " ;
77
88pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART : u32 = 10 ;
99
You can’t perform that action at this time.
0 commit comments